QuickEPUB 1.1.0

dotnet add package QuickEPUB --version 1.1.0
NuGet\Install-Package QuickEPUB -Version 1.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="QuickEPUB" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add QuickEPUB --version 1.1.0
#r "nuget: QuickEPUB, 1.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install QuickEPUB as a Cake Addin
#addin nuget:?package=QuickEPUB&version=1.1.0

// Install QuickEPUB as a Cake Tool
#tool nuget:?package=QuickEPUB&version=1.1.0

QuickEPUB

License NuGet CI Build

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.

Install

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

Usage

Using QuickEPUB is as easy as:

  1. Create an Epub instance, specifying the title and author of the book
  2. (Optional) Specify a language and/or unique identifier (ISBN, URL, whatever)
  3. Add sections of HTML content, each of which will get an entry in the table of contents
  4. (Optional) Add any CSS/image resources that are referenced in the HTML
  5. Export the instance to a file

Sample Code

// Create an Epub instance
Epub 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 (FileStream 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 (FileStream cssStream = new FileStream("custom.css", FileMode.Open))
{
    doc.AddResource("custom.css", EpubResourceType.CSS, cssStream);
}

// Export the result
using (FileStream 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:

  1. Chapter 1
  2. Chapter 2
  3. Chapter 3

The EPUB will also contain the two specified resource files: image.jpg and custom.css.

Build

Building QuickEPUB requires:

  1. A PC with the .NET 6 SDK installed
  2. 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

Test

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

Errata

QuickEPUB is open-source under the MIT license.

Copyright (c) 2016-2023 Jon Thysell.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 249 4/23/2023
1.0.1 427 6/16/2022
1.0.0 380 6/15/2022
0.9.0 414 4/11/2022