HTMLへの変換

HTMLは、データを交換するために広く使用されている形式の一つです。Aspose.Slides for .NETは、プレゼンテーションをHTMLに変換するサポートを提供します。以下は、その方法を示すコードスニペットです。


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

string srcFileName = FilePath + "Conversion.pptx";

string destFileName = FilePath + "HTMLへの変換.html";

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

Presentation pres = new Presentation(srcFileName);

HtmlOptions htmlOpt = new HtmlOptions();

htmlOpt.HtmlFormatter = HtmlFormatter.CreateDocumentFormatter("", false);

//プレゼンテーションをHTMLとして保存

pres.Save(destFileName, Aspose.Slides.Export.SaveFormat.Html, htmlOpt);

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