メディアファイルをHTMLファイルにエクスポートする
Contents
[
Hide
]
メディアファイルをHTMLにエクスポートするには、以下の手順に従ってください:
- Presentationクラスのインスタンスを作成する
- スライドの参照を取得する
- トランジション効果を設定する
- プレゼンテーションをPPTXファイルとして保存する
以下の例では、メディアファイルをHTMLにエクスポートしました。
例
//プレゼンテーションの読み込み
using (Presentation pres = new Presentation("example.pptx"))
{
const string path = "path";
const string fileName = "video.html";
const string baseUri = "http://www.example.com/";
VideoPlayerHtmlController controller = new VideoPlayerHtmlController(path: path, fileName: fileName, baseUri: baseUri);
//HTMLオプションの設定
HtmlOptions htmlOptions = new HtmlOptions(controller);
SVGOptions svgOptions = new SVGOptions(controller);
htmlOptions.HtmlFormatter = HtmlFormatter.CreateCustomFormatter(controller);
htmlOptions.SlideImageFormat = SlideImageFormat.Svg(svgOptions);
//ファイルの保存
pres.Save(path + fileName, SaveFormat.Html, htmlOptions);
}
実行例のダウンロード
- [CodePlex](https://asposeslidesvsto.codeplex.com/SourceControl/latest#Aspose.Slides Features missing in VSTO/Export media files into html/)
- Github
- Code.MSDN