是否可以在没有安装PowerPoint的情况下将PPT转换为具有Interop服务的视频文件?

时间:2013-10-11 20:50:01

标签: c# asp.net visual-studio-2010 powerpoint office-interop

我在这件事上看到的一切都说明在使用C#脚本中的Interop服务将PPT转换为视频文件时,必须安装PowerPoint并准备启动。显然,我更倾向于PowerPoint不需要此脚本才能成功实现其转换。以下是我的代码。非常感谢任何建议:

Microsoft.Office.Interop.PowerPoint.Application ppApp = new Microsoft.Office.Interop.PowerPoint.Application();
ppApp.Visible = MsoTriState.msoTrue;
ppApp.WindowState = Microsoft.Office.Interop.PowerPoint.PpWindowState.ppWindowMinimized;
Microsoft.Office.Interop.PowerPoint.Presentations oPresSet = ppApp.Presentations;
Microsoft.Office.Interop.PowerPoint._Presentation oPres = oPresSet.Open(fileName,
    MsoTriState.msoFalse, MsoTriState.msoFalse,
    MsoTriState.msoFalse);
try
{
    oPres.CreateVideo(exportPath);
}

0 个答案:

没有答案