PPT文档主要用于展示,有时候我们需要将PPT文档转换为HTML格式方便查看。本文将介绍如何使用C#和VB.NET将PPT文档转换为HTML格式。该方案使用了.NET PowerPoint 组件Spire.Presentation, 组件下载安装后,需要引用相应的dll文件到Visual Studio项目中。
以下是用来转换的示例文档:
代码如下:
[C#]
using Spire.Presentation; namespace Convert_PowerPoint_To_Html{ class Program { static voidMain(string[] args) { //实例化一个Presentation对象 Presentation ppt= new Presentation(); //载入PowerPoint文档 ppt.LoadFromFile("PPT模板.pptx"); //保存文档到HTML格式 ppt.SaveToFile(@"E:\ProgramFiles\PPT2Html.html", FileFormat.Html); } }}
[VB.NET]
Imports Spire.Presentation Namespace Convert_PowerPoint_To_Html Class Program Private Shared Sub Main(args As String()) '实例化一个Presentation对象 Dim ppt As New Presentation() '载入PowerPoint文档 ppt.LoadFromFile("PPT模板.pptx") '保存文档到HTML格式 ppt.SaveToFile("E:\Program Files\PPT2Html.html", FileFormat.Html) End Sub End ClassEnd Namespace
转换到HTML的效果:
转自:https://blog.csdn.net/Eiceblue/article/details/78257670