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

Nop*_*det 5 .net c# powerpoint

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

Moh*_*bet 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);
}
Run Code Online (Sandbox Code Playgroud)