你们有一些.Net库能够将PowerPoint演示文件转换成图像吗?
答案 0 :(得分:11)
使用Microsoft.Office.Interop.PowerPoint.dll
的添加引用。要将PowerPoint幻灯片转换为PNG图像:
PowerPoint.Presentation pptPresentation = pptApplication.Presentations.Open2007(FILE);
foreach (PowerPoint.Slide pptSlide in pptPresentation.Slides)
{
pptSlide.Export(NEWNAME, "PNG", 1024, 768);
}
答案 1 :(得分:1)
答案 2 :(得分:1)
请查看Aspose.Slides for .NET是否可以在此方案中为您提供帮助。此组件允许您convert Powerpoint slides to images。它不需要在系统上安装MS Office。
披露:我在Aspose担任开发人员传播者。