使用Aspose.Note for .NET 18.1將OneNote文檔導出為HTML格式的流
02-08
我們十分高興地宣布Aspose.Note for .NET 18.1新版本的發布。本月的發布包括將OneNote文檔保存為HTML的新功能。它還引入了支持使用Callbacks將文檔保存到HTML。有關本月發行版中包含的API更改的詳細說明,請訪問API文檔的發行說明部分。
將OneNote文檔保存為HTML流
Aspose.Note API允許您將OneNote文檔保存為HTML文件。 從此版本開始,API現在支持以HTML格式將OneNote文檔導出成MemoryStream。HtmlSaveOptions現在引入了將與文檔相關聯的資源保存為已轉換HTML的嵌入式資源的能力,或者將其明確地保存在光碟上。
以下代碼示例顯示使用此功能將OneNote文檔導出為HTML。
使用嵌入式資源保存到內存流
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();var document = new Aspose.Note.Document(dataDir + "Aspose.one");var options = new HtmlSaveOptions()
{
ExportCss = ResourceExportType.ExportEmbedded, ExportFonts = ResourceExportType.ExportEmbedded, ExportImages = ResourceExportType.ExportEmbedded, FontFaceTypes = FontFaceType.Ttf
};
var r = new MemoryStream();document.Save(r, options);
{
ExportCss = ResourceExportType.ExportEmbedded, ExportFonts = ResourceExportType.ExportEmbedded, ExportImages = ResourceExportType.ExportEmbedded, FontFaceTypes = FontFaceType.Ttf};
var r = new MemoryStream();document.Save(r, options);在單獨的文件中將資源另存為HTML
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();var document = new Aspose.Note.Document(dataDir + "Aspose.one");
var options = new HtmlSaveOptions()
{ ExportCss = ResourceExportType.ExportAsFile, ExportFonts = ResourceExportType.ExportAsFile,
ExportImages = ResourceExportType.ExportAsFile,
FontFaceTypes = FontFaceType.Ttf};document.Save(dataDir + "document_out.html", options);
var options = new HtmlSaveOptions()
{ ExportCss = ResourceExportType.ExportAsFile, ExportFonts = ResourceExportType.ExportAsFile,ExportImages = ResourceExportType.ExportAsFile,
FontFaceTypes = FontFaceType.Ttf};document.Save(dataDir + "document_out.html", options);API產品資源
你可以通過使用如下資源信息開始了解Aspose.Note for .NET。
API文檔–使用代碼示例和示例幫助開始使用API
論壇支持–發表您的問題,以獲得我們的技術支持團隊的幫助
代碼示例?–從我們的GitHub倉庫中下載試用API的現成示例
API參考指南–提供有關API的所有命名空間,類和屬性的信息
Posted in Aspose.Note產品系列 | 發表評論 | 編輯
推薦閱讀:
※OS X 10.11 打開pdf文件為什麼會說這是來自「不明開發者」?
※一些常見語言&文件格式的文檔整理
※目前存在時間最長的文件格式是哪種?存在時間最長的多媒體格式呢?
※markdown以後會成為主流文檔格式嗎?
※三維軟體之間文件格式轉換