QuestPDF 2022.12.7

QuestPDF Homepage Getting started tutorial API reference Patterns and Practices GitHub Repo stars Nuget version Nuget download

QuestPDF is a modern open-source .NET library for PDF document generation. Offering comprehensive layout engine powered by concise and discoverable C# Fluent API. Easily generate PDF documents, reports, invoices, exports etc.

Usage animation of the PDF library

👨‍💻 Design PDF documents using C# and employ a code-only approach. Utilize your version control system to its fullest potential.

🧱 Compose PDF document with a range of powerful and predictable structural elements, such as text, image, border, table, and many more.

⚙️ Utilize a comprehensive layout engine, specifically designed for PDF document generation and paging support.

📖 Write code using concise and easy-to-understand C# Fluent API. Utilize IntelliSense to quickly discover available options.

🔗 Don't be limited to any proprietary scripting language or format. Follow your experience and leverage all modern C# features.

⌛ Save time thanks to a hot-reload capability, allowing real-time PDF document preview without code recompilation.

Simplicity is the key

How easy it is to start and prototype with QuestPDF? Really easy thanks to its minimal API! Please analyse the code below that generates basic PDF document:

using QuestPDF.Fluent;
using QuestPDF.Helpers;
using QuestPDF.Infrastructure;

// code in your main method
Document.Create(container =>
{
    container.Page(page =>
    {
        page.Size(PageSizes.A4);
        page.Margin(2, Unit.Centimetre);
        page.Background(Colors.White);
        page.DefaultTextStyle(x => x.FontSize(20));
        
        page.Header()
            .Text("Hello PDF!")
            .SemiBold().FontSize(36).FontColor(Colors.Blue.Medium);
        
        page.Content()
            .PaddingVertical(1, Unit.Centimetre)
            .Column(x =>
            {
                x.Spacing(20);
                
                x.Item().Text(Placeholders.LoremIpsum());
                x.Item().Image(Placeholders.Image(200, 100));
            });
        
        page.Footer()
            .AlignCenter()
            .Text(x =>
            {
                x.Span("Page ");
                x.CurrentPageNumber();
            });
    });
})
.GeneratePdf("hello.pdf");

Minimal PDF example

Let's get started

Begin exploring the QuestPDF library today. You are 250 lines of C# code away from creating a fully functional PDF invoice implementation.

Read the Getting Started tutorial to familiarize yourself with general library architecture, important layout structures as well as to better understand helpful patterns and practices.

Easily start designing your PDF documents, reports, invoices, exports and even more.

Getting started tutorial

Example invoice

No packages depend on QuestPDF.

Version 2022.12.0: Feature: implemented LetterSpacing property for the Text element Improvement: the Text element API accepts now only string values, objects are not automatically converted anymore Fix: the Alignment element incorrectly limits size of its child when only one axis is set (horizontal or vertical) Maintenance: Updated SkiaSharp dependency to 2.88.3 This release was possible thanks to enormous help of AntonyCorbett, thank you! Version 2022.12.1: Fixed: loading fonts from embedded resource via the FontManager.RegisterFontFromEmbeddedResource method Fixed: better layout calculation stability for the Column element Improvement: exposed missing API method for the Dynamic component, enabling applying more advanced optimizations Improvement: better API documentation for the Settings.DocumentLayoutExceptionThreshold property Version 2022.12.2: Performance improvements in various areas Text rendering stability improvements Fixed: the Settings.CheckIfAllTextGlyphsAreAvailable setting does not work correctly Version 2022.12.3: Fix: inconsistent text height when using multiple lines with different TextStyles Improvement: added validation for color arguments Fix: the inlined element is shown only once in the header but should be repeated on each page Version 2022.12.4: Fix: the TextStyle.Fallback property incorrectly inherits parent's and global properties Improvement: updated the CreateNotMatchingFontException message to mention that the glyph checking operation can be disabled with the Settings.CheckIfAllTextGlyphsAreAvailable setting Version 2022.12.6: Fix: fixed the rendering order of table cells in certain scenarios Version 2022.12.7: - Text rendering enhancement: a fake underline is drawn when the font typeface lacks an underline effect configuration or it is unavailable on runtime operating system - Text rendering enhancement: a fake strikethrough is drawn when the font typeface lacks a strikethrough effect configuration or it is unavailable on runtime operating system - Text rendering enhancement: a fake skew operation is applied to mimic an italic effect when the provided font lacks an italic variant - Text rendering enhancement: a fake bold effect is applied when the font doesn't offer variants of higher weight

.NET Framework 4.6.2

.NET Core 2.0

.NET Core 3.0

.NET 6.0

.NET Standard 2.0

Version Downloads Last updated
2025.5.1 0 06/05/2025
2025.5.0 2 05/30/2025
2025.4.4 1 06/04/2025
2025.4.3 1 06/04/2025
2025.4.2 1 06/04/2025
2025.4.1 1 06/05/2025
2025.4.0 1 06/04/2025
2025.1.7 1 06/05/2025
2025.1.6 1 06/05/2025
2025.1.5 2 06/04/2025
2025.1.4 1 06/05/2025
2025.1.3 1 06/04/2025
2025.1.2 1 06/04/2025
2025.1.1 1 06/04/2025
2025.1.0 1 06/04/2025
2025.1.0-rc0 0 01/24/2025
2025.1.0-alpha0 0 12/04/2024
2024.12.3 1 06/04/2025
2024.12.2 1 06/04/2025
2024.12.1 1 06/04/2025
2024.12.0 1 06/04/2025
2024.12.0-rc3 1 06/07/2025
2024.12.0-rc2 1 06/06/2025
2024.12.0-rc1 1 06/07/2025
2024.12.0-rc0 1 06/06/2025
2024.10.4 1 06/04/2025
2024.10.3 1 06/04/2025
2024.10.2 1 06/04/2025
2024.10.1 1 06/04/2025
2024.10.0 1 06/04/2025
2024.10.0-rc4 1 06/07/2025
2024.10.0-rc3 1 06/07/2025
2024.10.0-rc2 1 06/06/2025
2024.10.0-rc1 1 06/07/2025
2024.10.0-rc0 1 06/04/2025
2024.7.3 1 06/04/2025
2024.7.2 1 06/04/2025
2024.7.1 1 06/05/2025
2024.7.0 1 06/04/2025
2024.7.0-rc0 0 07/04/2024
2024.6.4 1 06/04/2025
2024.6.3 1 06/04/2025
2024.6.2 1 06/04/2025
2024.6.1 1 06/05/2025
2024.6.0 1 06/04/2025
2024.3.10 1 06/04/2025
2024.3.9 1 06/04/2025
2024.3.8 1 06/04/2025
2024.3.7 1 06/04/2025
2024.3.6 2 06/04/2025
2024.3.5 1 06/04/2025
2024.3.4 1 06/04/2025
2024.3.3 1 06/04/2025
2024.3.2 1 06/04/2025
2024.3.1 1 06/04/2025
2024.3.0 2 06/04/2025
2024.3.0-rc2 0 03/30/2024
2024.3.0-rc1 0 03/29/2024
2024.3.0-rc 1 06/07/2025
2024.3.0-beta1 0 03/18/2024
2024.3.0-beta 0 02/29/2024
2024.3.0-alpha 0 02/15/2024
2023.12.6 1 06/04/2025
2023.12.5 1 06/04/2025
2023.12.4 1 06/04/2025
2023.12.3 1 06/04/2025
2023.12.2 1 06/04/2025
2023.12.1 1 06/04/2025
2023.12.0 1 06/04/2025
2023.10.2 1 06/04/2025
2023.10.1 1 06/04/2025
2023.10.0 1 06/04/2025
2023.10.0-alpha0 0 10/13/2023
2023.9.1 1 06/04/2025
2023.9.0 1 06/04/2025
2023.6.3 1 06/04/2025
2023.6.2 1 06/04/2025
2023.6.1 1 06/04/2025
2023.6.0 1 06/04/2025
2023.5.3 1 06/04/2025
2023.5.2 1 06/04/2025
2023.5.1 1 06/04/2025
2023.5.0 1 06/04/2025
2023.4.2 1 06/04/2025
2023.4.1 1 06/04/2025
2023.4.0 1 06/04/2025
2022.12.15 1 06/04/2025
2022.12.14 1 06/04/2025
2022.12.13 1 06/04/2025
2022.12.12 1 06/04/2025
2022.12.11 1 06/04/2025
2022.12.10 1 06/04/2025
2022.12.9 1 06/04/2025
2022.12.8 1 06/04/2025
2022.12.7 1 06/04/2025
2022.12.6 1 06/04/2025
2022.12.5 1 06/04/2025
2022.12.4 1 06/04/2025
2022.12.3 1 06/04/2025
2022.12.2 1 06/04/2025
2022.12.1 1 06/04/2025
2022.12.0 1 06/04/2025
2022.11.0 1 06/04/2025
2022.11.0-alpha1 0 11/01/2022
2022.11.0-alpha0 0 10/28/2022
2022.9.1 1 06/04/2025
2022.9.0 1 06/04/2025
2022.9.0-alpha1 0 09/16/2022
2022.8.2 1 06/04/2025
2022.8.1 1 06/04/2025
2022.8.0 1 06/04/2025
2022.6.3 1 06/04/2025
2022.6.2 1 06/04/2025
2022.6.1 1 06/04/2025
2022.6.0 1 06/04/2025
2022.6.0-prerelease 0 05/30/2022
2022.5.0 1 06/04/2025
2022.4.1 1 06/04/2025
2022.4.0 1 06/04/2025
2022.4.0-alpha1 0 03/27/2022
2022.4.0-alpha0 0 03/27/2022
2022.3.1 1 06/04/2025
2022.3.0 1 06/04/2025
2022.2.7 1 06/04/2025
2022.2.6 1 06/04/2025
2022.2.5 1 06/04/2025
2022.2.4 1 06/04/2025
2022.2.3 1 06/04/2025
2022.2.2 1 06/04/2025
2022.2.1 1 06/04/2025
2022.2.0 1 06/04/2025
2022.2.0-beta1 0 01/24/2022
2022.1.0 1 06/04/2025
2022.1.0-beta5 0 01/07/2022
2022.1.0-beta4 0 01/06/2022
2022.1.0-beta3 0 01/05/2022
2022.1.0-beta2 0 01/05/2022
2022.1.0-beta1 0 01/03/2022
2022.1.0-beta0 0 12/30/2021
2022.1.0-alpha0 0 12/30/2021
2021.12.0 1 06/04/2025
2021.12.0-alpha1 0 11/29/2021
2021.12.0-alpha0 0 11/18/2021
2021.11.4 1 06/04/2025
2021.11.3 1 06/04/2025
2021.11.0-beta3 0 11/03/2021
2021.11.0-beta2 0 10/28/2021
2021.11.0-beta 0 10/23/2021
2021.10.1 1 06/04/2025
2021.10.0 1 06/04/2025
2021.10.0-beta.2 0 09/14/2021
2021.10.0-beta 0 09/13/2021
2021.9.3 1 06/04/2025
2021.9.2 1 06/04/2025
2021.9.1 1 06/04/2025
2021.9.0 1 06/04/2025
2021.8.0 1 06/04/2025
2021.5.2 1 06/04/2025
2021.4.0 1 06/04/2025
2021.3.1 1 06/04/2025
2021.3.0 1 06/04/2025
2021.2.0 1 06/04/2025
2021.1.0 1 06/04/2025
2020.11.0 1 06/04/2025