如何将PowerPoint(.ppt,.pptx)转换为每张幻灯片的几张图片?

时间:2010-11-30 17:49:44

标签: c# .net powerpoint

你们有一些.Net库能够将PowerPoint演示文件转换成图像吗?

3 个答案:

答案 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担任开发人员传播者。