Convert EPUB to PDF – C# code and Online Converter

EPUB is an e-book file format that provides a standard digital publication format. It is created by International Digital Publishing Forum ( IDPF), and now it is supported by many e-readers and software applications. EPUB to PDF conversion is often required to take advantage of PDF format. PDF file format has full capability to contain information like text, images, hyperlinks, form-fields, rich media, metadata, etc. PDF files can be opened in Adobe Acrobat Reader/Writer and most modern browsers like Chrome, Safari, Firefox. They are optimized for printing, and they are ideal for creating physical copies of your documents; you can also configure the security settings for PDF.

In this article, you find information about converting EPUB to PDF and using PdfSaveOptions and ICreateStreamProvider parameters.

Online EPUB Converter

You can check the Aspose.HTML API functionality and convert EPUB in real-time. Please load an EPUB file from the local file system, select the output format and run the example. In the example, the save options are set by default. You will immediately receive the result as a separate file.

                
            

If you want to convert EPUB to PDF programmatically, please see the following C# code examples.

EPUB to PDF by two lines of code

The static methods of the Converter class are primarily used as the easiest way to convert an EPUB file into various formats. You can convert EPUB to PDF in your C# application literally with two lines of code!

1using System.IO;
2using Aspose.Html.Converters;
3using Aspose.Html.Saving;
4...
5     // Open an existing EPUB file for reading
6     using var stream = File.OpenRead(DataDir + "input.epub");
7
8     // Invoke the ConvertEPUB() method to convert EPUB to PDF
9     Converter.ConvertEPUB(stream, new PdfSaveOptions(), Path.Combine(OutputDir, "convert-by-two-lines.pdf"));

Convert EPUB to PDF

Using Converter.ConvertEPUB() methods is the most common way to convert EPUB files into various formats. To convert EPUB to PDF, you should follow a few steps:

  1. Open an existing EPUB file. In the example, we use the OpenRead() method of System.IO.FileStream class to open and read an EPUB file from the file system at the specified path.
  2. Create an instance of PdfSaveOptions.
  3. Use the ConvertEPUB() method of the Converter class to save EPUB as a PDF file. You need to pass the EPUB file stream, PdfSaveOptions, and output file path to the ConvertEPUB() method to convert EPUB to PDF.

The following C# code snippet shows how to convert EPUB to PDF using Aspose.HTML for .NET:

 1using System.IO;
 2using Aspose.Html.Converters;
 3using Aspose.Html.Saving;
 4...
 5     // Open an existing EPUB file for reading
 6     using var stream = File.OpenRead(DataDir + "input.epub");
 7
 8     // Prepare a path to save the converted file 
 9     string savePath = Path.Combine(OutputDir, "input-output1.pdf");
10
11     // Create an instance of PdfSaveOptions
12     var options = new PdfSaveOptions();
13
14     // Call the ConvertEPUB() method to convert EPUB to PDF
15     Converter.ConvertEPUB(stream, options, savePath);

You can download the complete examples and data files from GitHub.

Save Options

With Aspose.HTML, you can convert EPUB to PDF format programmatically with full control over a wide range of conversion parameters. PdfSaveOptions usage enables you to tune the rendering process; you can specify the page size, margins, file permissions, CSS media-type, etc.

PropertyDescription
JpegQualitySpecifies the quality of JPEG compression for images. The default value is 95.
CssGets a CssOptions object which is used for configuration of CSS properties processing.
DocumentInfoThis property contains information about the output PDF document.
BackgroundColorThis property sets the color that will fill the background of every page. By default, this property is Transparent.
PageSetupThis property gets a page setup object and uses it for configuration output page-set.
HorizontalResolutionSets horizontal resolution for output images in pixels per inch. The default value is 300 dpi.
VerticalResolutionSets vertical resolution for output images in pixels per inch. The default value is 300 dpi.
EncryptionThis property gets or sets encryption details. If it is not set, then no encryption will be performed.

To learn more about PdfSaveOptions please read Fine-Tuning Converters article.

Convert EPUB to PDF using PdfSaveOptions

Aspose.HTML allows converting EPUB to PDF using default or custom save options. You should follow a few steps:

  1. Open an existing EPUB file.
  2. Create a new PdfSaveOptions object and specify the required save options.
  3. Use the ConvertEPUB() method to save EPUB as a PDF file. You need to pass the EPUB file stream, PdfSaveOptions, and output file path to the ConvertEPUB () method for EPUB to PDF conversion.

The following example shows how to use PdfSaveOptions and create a PDF file with custom save options:

 1using System.IO;
 2using Aspose.Html;
 3using Aspose.Html.Converters;
 4using Aspose.Html.Saving;
 5using System.Drawing;
 6using Aspose.Html.Drawing;
 7...
 8    // Open an existing EPUB file for reading
 9    using var stream = File.OpenRead(DataDir + "input.epub");
10
11    // Prepare a path to save the converted file 
12    string savePath = Path.Combine(OutputDir, "input-options.pdf");
13
14    // Create an instance of PdfSaveOptions. Set up the page-size and change the background color to AliceBlue 
15    var options = new PdfSaveOptions()
16    {
17        PageSetup =
18            {
19                AnyPage = new Page()
20                {
21                    Size = new Aspose.Html.Drawing.Size(Length.FromPixels(1000), Length.FromPixels(1000))
22                }
23            },
24        BackgroundColor = System.Drawing.Color.AliceBlue
25    };
26
27    // Call the ConvertEPUB() method to convert EPUB to PDF
28    Converter.ConvertEPUB(stream, options, savePath);

In the example, we use the OpenRead() method of System.IO.FileStream class to open and read source files from the file system at the specified path. The PdfSaveOptions() constructor initializes an instance of the PdfSaveOptions class that is passed to ConvertEPUB() method. The ConvertEPUB() method takes the stream, options, output file path savePath and performs the conversion operation. The PdfSaveOptions class provides numerous properties that give you full control over a wide range of parameters and improve the process of EPUB to PDF conversion.

In the above example, we use:

Aspose.HTML for .NET provides various types of output formats for rendering operations. Some of these formats produce a single output file (for instance PDF, XPS), others create multiple files (Image formats JPG, PNG, etc.).

Output Stream Providers

If it is required to save files in the remote storage (e.g., cloud, database, etc.) you can implement ICreateStreamProvider interface to have manual control over the file creating process. This interface is designed as a callback object to create a stream at the beginning of the document/page (depending on the output format) and release the early created stream after rendering the document/page.

The example below shows how to implement and use your own MemoryStreamProvider in the application:

 1using System.IO;
 2using System.Collections.Generic;
 3...
 4    class MemoryStreamProvider : Aspose.Html.IO.ICreateStreamProvider
 5    {
 6        // List of MemoryStream objects created during the document rendering
 7        public List<MemoryStream> Streams { get; } = new List<MemoryStream>();
 8
 9        public Stream GetStream(string name, string extension)
10        {
11            // This method is called when only one output stream is required, for instance for XPS, PDF or TIFF formats.
12            MemoryStream result = new MemoryStream();
13            Streams.Add(result);
14            return result;
15        }
16
17        public Stream GetStream(string name, string extension, int page)
18        {
19            // This method is called when the creation of multiple output streams are required. For instance, during the rendering HTML to list of image files (JPG, PNG, etc.)
20            MemoryStream result = new MemoryStream();
21            Streams.Add(result);
22            return result;
23        }
24
25        public void ReleaseStream(Stream stream)
26        {
27            //  Here you can release the stream filled with data and, for instance, flush it to the hard-drive
28        }
29
30        public void Dispose()
31        {
32            // Releasing resources
33            foreach (var stream in Streams)
34                stream.Dispose();
35        }
36    }
 1using System.IO;
 2using Aspose.Html;
 3using System.Linq;
 4using Aspose.Html.Converters;
 5using Aspose.Html.Saving;
 6...
 7    // Create an instance of MemoryStreamProvider
 8    using var streamProvider = new MemoryStreamProvider();
 9
10    // Open an existing EPUB file for reading
11    using var stream = File.OpenRead(DataDir + "input.epub");
12
13    // Prepare a path to save the converted file 
14    string savePath = Path.Combine(OutputDir, "stream-provider.pdf");
15
16    // Convert EPUB to PDF by using the MemoryStreamProvider class
17    Converter.ConvertEPUB(stream, new PdfSaveOptions(), streamProvider);
18
19    // Get access to the memory stream that contains the result data
20    var memory = streamProvider.Streams.First();
21    memory.Seek(0, SeekOrigin.Begin);
22
23    // Flush the result data to the output file
24    using (FileStream fs = File.Create(savePath))
25    {
26        memory.CopyTo(fs);
27    }

The ConvertEPUB(Stream, PdfSaveOptions, ICreateStreamProvider) method takes the conversion source, options, instance of MemoryStreamProvider, which will be used to get an output stream, and performs the conversion operation.

You can download the complete examples and data files from GitHub.

Download our Aspose.HTMLfor .NET library allows you to successfully, quickly, and easily convert your HTML, MHTML, EPUB, SVG, and Markdown documents to the most popular formats.

Aspose.HTML offers a free online EPUB to PDF Converter that converts EPUB to PDF with high quality, easy and fast. Just upload, convert your files and get results in a few seconds!

Text “Banner EPUB to PDF Converter”

Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.