プレゼンテーションをHTMLに変換する
Contents
[
Hide
]
HTMLはデータを交換するための広く使用されている形式の1つです。 Aspose.Slides for .NETは、プレゼンテーションをHTMLに変換するサポートを提供します。以下は、その方法を示すコードスニペットです。
例
//プレゼンテーションファイルを表すPresentationオブジェクトをインスタンス化します
Presentation pres = new Presentation("Conversion.ppt");
HtmlOptions htmlOpt = new HtmlOptions();
htmlOpt.HtmlFormatter = HtmlFormatter.CreateDocumentFormatter("", false);
//プレゼンテーションをHTMLとして保存します
pres.Save("Converted.html", Aspose.Slides.Export.SaveFormat.Html, htmlOpt);
実行例のダウンロード
- [CodePlex](https://asposeslidesvsto.codeplex.com/SourceControl/latest#Aspose.Slides Features missing in VSTO/Converting to HTML/)
- GitHub
- Code.MSDN
サンプルコードのダウンロード
詳細については、プレゼンテーションをHTMLに変換するをご覧ください。