利用PowerPoint可以很方便的呈現多媒體信息,且信息形式多媒體化,表現力強。但難免在某些情況下我們會需要將PowerPoint轉換為HTML格式。因為HTML文檔能獨立於各種操作系統平臺(如Unix,Windows等)。並且它可以加入圖片、聲音、動畫、影視等內容,還能從一個文件跳轉到另一個文件 ...
利用PowerPoint可以很方便的呈現多媒體信息,且信息形式多媒體化,表現力強。但難免在某些情況下我們會需要將PowerPoint轉換為HTML格式。因為HTML文檔能獨立於各種操作系統平臺(如Unix,Windows等)。並且它可以加入圖片、聲音、動畫、影視等內容,還能從一個文件跳轉到另一個文件,與世界各地主機的文件連接。通過HTML可以表現出豐富多彩的設計風格,實現頁面之間的跳轉,展現多媒體的效果。本文就將詳細介紹如何通過C#/VB.NET代碼將PowerPoint轉換為HTML。
- 將PowerPoint演示文稿轉換為HTML
- 將特定的PowerPoint幻燈片轉換為HTML
程式環境
本次測試時,在程式中引入Free Spire.Presentation for .NET。可通過以下方法引用 Free Spire.Presentation.dll文件:
方法1:將 Free Spire.Presentation for .NET下載到本地,解壓,安裝。安裝完成後,找到安裝路徑下BIN文件夾中的 Spire.Presentation.dll。然後在Visual Studio中打開“解決方案資源管理器”,滑鼠右鍵點擊“引用”,“添加引用”,將本地路徑BIN文件夾下的dll文件添加引用至程式。
方法2:通過NuGet安裝。可通過以下2種方法安裝:
(1)可以在Visual Studio中打開“解決方案資源管理器”,滑鼠右鍵點擊“引用”,“管理NuGet包”,然後搜索“Free Spire.Presentation”,點擊“安裝”。等待程式安裝完成。
(2)將以下內容複製到PM控制台安裝。
Install-Package FreeSpire.Presentation -Version 7.8.0
將PowerPoint演示文稿轉換為HTML
Presentation.SaveToFile(String, FileFormat) 方法用於將PowerPoint演示文稿轉換為其他文件格式,如PDF、XPS和HTML。在以下步驟中,我們將向您展示如何使用Free Spire.Presentation for .NET將PowerPoint演示文稿轉換為HTML:
- 初始化Presentation類的實例。
- 使用Presentation.LoadFromFile(String) 方法載入PowerPoint演示文稿。
- 使用Presentation.SaveToFile(String, FileFormat) 方法將PowerPoint演示文稿保存為HTML格式。
完整代碼
C#
using Spire.Presentation; using System; namespace ConvertPowerPointToHtml { class Program { static void Main(string[] args) { //初始化Presentation類的實例 Presentation ppt = new Presentation(); //載入PowerPoint演示文稿 ppt.LoadFromFile("柯基.pptx"); //指定輸出HTML文件的文件路徑 String result = " D:\\.NET\\PowerPoint\\PowerPointToHtml.html"; //將PowerPoint演示文稿保存為HTML格式 ppt.SaveToFile(result, FileFormat.Html); } } }
VB.NET
Imports Spire.Presentation Namespace ConvertPowerPointToHtml Friend Class Program Private Shared Sub Main(ByVal args As String()) '初始化Presentation類的實例 Dim ppt As Presentation = New Presentation() '載入PowerPoint演示文稿 ppt.LoadFromFile("柯基.pptx") '指定輸出HTML文件的文件路徑 Dim result = " D:\\.NET\\PowerPoint\\PowerPointToHtml.html" '將PowerPoint演示文稿保存為HTML格式 ppt.SaveToFile(result, FileFormat.Html) End Sub End Class End Namespace
效果圖
將特定的PowerPoint幻燈片轉換為HTML
在某些情況下,您可能需要將特定的幻燈片而不是整個演示文稿轉換為HTML。ISlide.SaveToFile(String, FileFormat) 方法可以將PowerPoint幻燈片轉換為HTML。具體步驟如下:
- 初始化Presentation類的實例。
- 使用Presentation.LoadFromFile() 方法載入PowerPoint演示文稿。
- 通過Presentation.Slides[int] 屬性按索引獲取PowerPoint演示文稿中的特定幻燈片。
- 使用ISlide.SaveToFile(String, FileFormat) 方法將PowerPoint幻燈片保存為HTML格式。
完整代碼
C#
using Spire.Presentation; using System; namespace ConvertPowerPointSlideToHtml { class Program { static void Main(string[] args) { //初始化Presentation類的實例 Presentation presentation = new Presentation(); //載入PowerPoint演示文稿 presentation.LoadFromFile("柯基.pptx"); //獲取特定幻燈片 ISlide slide = presentation.Slides[5]; //指定輸出HTML文件的文件路徑 String result = " D:\\.NET\\PowerPoint\\SlideToHtml.html "; //將第一張幻燈片保存為HTML格式 slide.SaveToFile(result, FileFormat.Html); } } }
VB.NET
Imports Spire.Presentation Namespace ConvertPowerPointSlideToHtml Friend Class Program Private Shared Sub Main(ByVal args As String()) '初始化Presentation類的實例 Dim presentation As Presentation = New Presentation() '載入PowerPoint演示文稿 presentation.LoadFromFile("柯基.pptx") '獲取特定幻燈片 Dim slide As ISlide = presentation.Slides(5) '指定輸出HTML文件的文件路徑 Dim result = " D:\.NET\PowerPoint\SlideToHtml.html " '將第一張幻燈片保存為HTML格式 slide.SaveToFile(result, FileFormat.Html) End Sub End Class End Namespace
效果圖
—本文完—