Aspose.Pdf.Examples.CSharp.AsposePDF.DocumentConversion.PDFToEPUB.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // ExStart:PDFToEPUB
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_AsposePdf_DocumentConversion();

            // Load PDF document
            Document pdfDocument = new Document(dataDir + "PDFToEPUB.pdf");

            // Instantiate Epub Save options
            EpubSaveOptions options = new EpubSaveOptions();
            
            // Specify the layout for contents
            options.ContentRecognitionMode = EpubSaveOptions.RecognitionMode.Flow;
            
            // Save the ePUB document
            pdfDocument.Save(dataDir + "PDFToEPUB_out.epub", options);
            // ExEnd:PDFToEPUB
        }
    }
PDFToEPUB