QuickEPUB is an open-source .NET library for generating simple eBooks in the EPUB format.
EPUB is a very powerful and flexible format for publishing eBooks. Most open-source libraries for creating EPUBs are just as powerful and flexible, but often require you to really understand how EPUBs work in order to use them effectively.
QuickEPUB is for developers that want a quick and easy way to take HTML content and export simple EPUB files from their apps.
QuickEPUB is published on NuGet Gallery: https://www.nuget.org/packages/QuickEPUB
Use this command in the NuGet Package Manager console to install QuickEPUB manually:
Install-Package QuickEPUB
Using QuickEPUB is as easy as:
- Create an
Epub
instance, specifying the title and author of the book - (Optional) Specify a language and/or unique identifier (ISBN, URL, whatever)
- Add sections of HTML content, each of which will get an entry in the table of contents
- (Optional) Add any CSS/image resources that are referenced in the HTML
- Export the instance to a file
// Create an Epub instance
var doc = new Epub("Book Title", "Author Name");
// Adding sections of HTML content
doc.AddSection("Chapter 1", "<p>Lorem ipsum dolor sit amet...</p>");
// Adding sections of HTML content (that reference image files)
doc.AddSection("Chapter 2", "<p><img src=\"image.jpg\" alt=\"Image\"/></p>");
// Adding images that are referenced in any of the sections
using (var jpgStream = new FileStream("image.jpg", FileMode.Open))
{
doc.AddResource("image.jpg", EpubResourceType.JPEG, jpgStream);
}
// Adding sections of HTML content (that use a custom CSS stylesheet)
doc.AddSection("Chapter 3", "<p class=\"body-text\">Lorem ipsum dolor sit amet...</p>", "custom.css");
// Add the CSS file referenced in the HTML content
using (var cssStream = new FileStream("custom.css", FileMode.Open))
{
doc.AddResource("custom.css", EpubResourceType.CSS, cssStream);
}
// Export the result
using (var fs = new FileStream("sample.epub", FileMode.Create))
{
doc.Export(fs);
}
This sample code will create an EPUB named sample.epub
with three sections in its table of contents:
- Chapter 1
- Chapter 2
- Chapter 3
The EPUB will also contain the two specified resource files: image.jpg
and custom.css
.
Building QuickEPUB requires:
- A PC with the .NET 8 SDK installed
- The QuickEPUB source
Then you should be able to run the following command to build QuickEPUB from within its source folder:
dotnet build ./src/QuickEPUB.sln
With the above setup, you should be able to run the following command to test QuickEPUB from within its source folder:
dotnet test ./src/QuickEPUB.sln
QuickEPUB is open-source under the MIT license.
Copyright (c) 2016-2024 Jon Thysell.