在typescript / angular 2中从byteArray创建ppt或pptx blob

时间:2017-05-10 18:37:37

标签: javascript angular typescript blob

我需要将我的byteArray响应转换为ppt Blob Object以在Angular 2中创建.ppt / .pptx文件。我能够转换为图像和pdf格式。但我需要专门针对ppt和pptx格式。

var blob = new Blob(resp,{type:'application / pdf'});

如上所述,ppt或pptx转换的类型是什么?

请提及我是否需要添加更多详细信息。

1 个答案:

答案 0 :(得分:1)

您正在寻找 Microsoft PowerPoint MIME类型

  • .ppt (PowerPoint 2007之前的专有格式)

application/vnd.ms-powerpoint

  • .pptx (自PowerPoint 2007以来的开放格式)

application/vnd.openxmlformats-officedocument.presentationml.presentation