OpenDocumentプレゼンテーションにアクセス

Aspose.Slides for .NETは、プレゼンテーションファイルを表すPresentationクラスを提供します。Presentationクラスは、オブジェクトがインスタンス化されるときにPresentationコンストラクターを通じてODPにもアクセスできるようになりました。


 string FilePath = @"..\..\..\Sample Files\";

string srcFileName = FilePath + "OpenDocument Presentation.odp";

string destFileName = FilePath + "OpenDocument Presentation.pptx";

//プレゼンテーションファイルを表すPresentationオブジェクトをインスタンス化する

using (Presentation pres = new Presentation(srcFileName))

{

    //PPTX形式でPPTXプレゼンテーションを保存する

    pres.Save(destFileName, SaveFormat.Pptx);

}

サンプルコードのダウンロード

実行例のダウンロード