将powerpoint幻灯片转换为图像文件,而无需打开powerpoint窗口

时间:2016-10-14 01:39:31

标签: c# ms-office powerpoint office-interop

我的程序应该将ppt幻灯片转换为图像文件,确实如此。困扰我的唯一事情是空白的PowerPoint窗口再次打开和关闭(有声)。是否可以在不打开此窗口的情况下执行此转换?

if (Path.GetExtension(file).Contains("ppt"))
                {
                    PPT.Application pptApp = new PPT.Application();
                    pptApp.Visible = MsoTriState.msoTrue;
                    PPT.Presentation pptPr = pptApp.Presentations.Open(file, MsoTriState.msoFalse, MsoTriState.msoFalse, MsoTriState.msoFalse);
                    pptPr.Slides[1].Export(ImagePath + Path.GetFileNameWithoutExtension(file) + ".png", "png");
                    pptPr.Close();
                    pptApp.Quit();
                    Marshal.ReleaseComObject(pptPr);
                    Marshal.ReleaseComObject(pptApp);
                }

1 个答案:

答案 0 :(得分:0)

您正在将pptApp的Visible属性设置为true。这会导致你看到的问题吗?