OpenOffice文档的转换
Contents
[
Hide
]
Aspose.Slides for .NET提供了Presentation类,该类表示一个演示文稿文件。Presentation类现在也可以通过演示文稿构造函数访问ODP,当对象被实例化时。
下面是从ODP转换为PPT/PPTX的示例。
示例
//实例化一个表示演示文稿文件的Presentation对象
using(PresentationEx pres = new PresentationEx("OpenOfficePresentation.odp"))
{
//保存PPTX演示文稿为PPTX格式
pres.Save("ConvertedFromOdp",Aspose.Slides.Export.SaveFormat.Pptx);
}
下面是从PPT/PPTX转换为ODP的示例。
示例
//实例化一个表示演示文稿文件的Presentation对象
using (PresentationEx pres = new PresentationEx("ConversionFromPresentation.pptx"))
{
//保存PPTX演示文稿为PPTX格式
pres.Save("ConvertedToOdp", Aspose.Slides.Export.SaveFormat.Odp);
}
下载运行示例
- [CodePlex](https://asposeslidesvsto.codeplex.com/SourceControl/latest#Aspose.Slides Features missing in VSTO/Conversion from ODP to PPTX/Converting From and To ODP/)
- GitHub
- Code.MSDN