目前我正在使用Office Interop将ppt(或)pptx文件转换为PDF。如果文件在磁盘上,我知道如何进行转换,但是当我手中有一个byte []时,如何进行转换。请记住,我不想将这些字节保存到磁盘中。
请帮忙。
谢谢&问候, N.Murali Krishna。
答案 0 :(得分:0)
将ppt从byte []转换为pdf,
http://freeslides.codeplex.com/
Presentation pres = new Presentation();
pres.LoadFromStream(yourStream);
pres.SaveToPdf("myPdf.pdf",FileFormat.PDF);