导出媒体文件到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