Last active
November 24, 2024 14:41
Revisions
-
aspose-com-kb revised this gist
Nov 24, 2024 . No changes.There are no files selected for viewing
-
aspose-com-kb created this gist
Nov 19, 2024 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ using Aspose.Words; using Aspose.Words.Saving; class Program { static void Main(string[] args) { License lic = new License(); lic.SetLicense("license.lic"); Document doc = new Document("SampleFile.docx"); HtmlSaveOptions options = new HtmlSaveOptions { DocumentSplitCriteria = DocumentSplitCriteria.HeadingParagraph, SaveFormat = SaveFormat.Epub, ExportDocumentProperties = true }; doc.Save("EPUB/OutputEbook.epub", options); System.Console.WriteLine("DOCX to EPUB converted successfully"); } }