QuestPDF 2022.2.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package QuestPDF --version 2022.2.4
NuGet\Install-Package QuestPDF -Version 2022.2.4
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="QuestPDF" Version="2022.2.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add QuestPDF --version 2022.2.4
#r "nuget: QuestPDF, 2022.2.4"
#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 QuestPDF as a Cake Addin
#addin nuget:?package=QuestPDF&version=2022.2.4

// Install QuestPDF as a Cake Tool
#tool nuget:?package=QuestPDF&version=2022.2.4

QuestPDF Overview

QuestPDF presents a new approach to PDF document generation. Unlike other libraries, it does not rely on the HTML-to-PDF conversion which in many cases is not reliable. Instead, it implements its own layouting engine that is optimized to cover all paging-related requirements. Then, everything is rendered using the SkiaSharp library (a Skia port for .NET, used in Chrome, Android, MAUI, etc.).

I have designed this layouting engine with full paging support in mind. The document consists of many simple elements (e.g. border, background, image, text, padding, table, grid etc.) that are composed together to create more complex structures. This way, as a developer, you can understand the behaviour of every element and use them with full confidence. Additionally, the document and all its elements support paging functionality. For example, an element can be moved to the next page (if there is not enough space) or even be split between pages like table's rows.

Features

Rely on solid fundamentals - This library is created specifically for designing and arranging document layouts, with full paging support. Alternative solutions, such as HTML-based converters, are not designed for this purpose and therefore are often unpredictable and do not produce desired results.

Work with organized self-explanatory code - The entire process of implementing PDF document, takes place in your code. Free yourself from slow visual designers and strange technological limitations. Follow simple yet highly effective approaches to create maintainable, high-quality code.

Compose simple components into complex documents - Do you remember the feeling when your code just works? When your ideas are becoming real without any effort? Working with simple, easy to understand, self-explanatory and highly composable layout elements is the key here!

Create and reuse components - Feel no fear of complex documents! Create custom, reusable components and divide the document's layout into easy to maintain pieces. Inject data to customize content and use slots to enhance composability. Decide how complex approaches your solution needs and follow the best path.

Prototype with ease - We understand that document generation is often tricky and require multiple iterations. The library offers additional prototyping tools such as random text generator or image placeholder element. By following best practices, you can develop a document without having data.

Enjoy fast PDF generation - QuestPDF is created upon SkiaSharp, a well-known graphical library, and converts your data into PDF documents. It offers a highly optimized layouting engine capable of generating over 1000 PDF files per minute per core. The entire process is thread-safe.

Learning resources

Release notes and roadmap - everything that is planned for future library iterations, description of new features and information about potential breaking changes.

Getting started tutorial - a short and easy to follow tutorial showing how to design an invoice document under 200 lines of code.

API Reference - a detailed description of behavior of all available components and how to use them with C# Fluent API.

Patterns and practices - everything that may help you designing great reports and reusable code that is easy to maintain.

Example invoice

Do you believe that creating a complete invoice document can take less than 200 lines of code? We have prepared for you a step-by-step instruction that shows every detail of this implementation and describes the best patterns and practices.

For tutorial, documentation and API reference, please visit the QuestPDF documentation.

invoice

Here you can find an example code showing how easy is to write and understand the fluent API.

General document structure with header, content and footer:

public void Compose(IDocumentContainer container)
{
    container
        .Page(page =>
        {
            page.Margin(50);
            
            page.Header().Element(ComposeHeader);
            page.Content().Element(ComposeContent);
            
            page.Footer().AlignCenter().Text(x =>
            {
                x.CurrentPageNumber();
                x.Span(" / ");
                x.TotalPages();
            });
        });
}

The header area consists of basic invoice information along with a logo placeholder.

void ComposeHeader(IContainer container)
{
    var titleTextStyle = TextStyle.Default.Size(20).SemiBold().Color(Colors.Blue.Medium);
    
    container.Row(row =>
    {
        {
            stack.Item().Text($"Invoice #{Model.InvoiceNumber}", titleStyle);

            stack.Item().Text(text =>
            {
                text.Span("Issue date: ", TextStyle.Default.SemiBold());
                text.Span($"{Model.IssueDate:d}");
            });

            stack.Item().Text(text =>
            {
                text.Span("Due date: ", TextStyle.Default.SemiBold());
                text.Span($"{Model.DueDate:d}");
            });
        });
        
        row.ConstantColumn(100).Height(50).Placeholder();
    });
}

Implementation of the content area that contains seller and customer details, then listing of all bought products, then a comments section.

void ComposeContent(IContainer container)
{
    container.PaddingVertical(40).Stack(column => 
    {
        column.Spacing(20);
        
        column.Item().Row(row =>
        {
            row.RelativeColumn().Component(new AddressComponent("From", Model.SellerAddress));
            row.ConstantColumn(50);
            row.RelativeColumn().Component(new AddressComponent("For", Model.CustomerAddress));
        });

        column.Item().Element(ComposeTable);

        var totalPrice = Model.Items.Sum(x => x.Price * x.Quantity);
        
        column
            .Item()
            .PaddingRight(5)
            .AlignRight()
            .Text($"Grand total: {totalPrice}$", TextStyle.Default.SemiBold());

        if (!string.IsNullOrWhiteSpace(Model.Comments))
            column.Item().PaddingTop(25).Element(ComposeComments);
    });
}

The table and comments codes are extracted into separate methods to increase clarity:

void ComposeTable(IContainer container)
{
    var headerStyle = TextStyle.Default.SemiBold();
    
    container.Table(table =>
    {
        table.ColumnsDefinition(columns =>
        {
            columns.ConstantColumn(25);
            columns.RelativeColumn(3);
            columns.RelativeColumn();
            columns.RelativeColumn();
            columns.RelativeColumn();
        });
        
        table.Header(header =>
        {
            header.Cell().Text("#", headerStyle);
            header.Cell().Text("Product", headerStyle);
            header.Cell().AlignRight().Text("Unit price", headerStyle);
            header.Cell().AlignRight().Text("Quantity", headerStyle);
            header.Cell().AlignRight().Text("Total", headerStyle);
            
            header.Cell().ColumnSpan(5)
                  .PaddingVertical(5).BorderBottom(1).BorderColor(Colors.Black);
        });
        
        foreach (var item in Model.Items)
        {
            table.Cell().Element(CellStyle).Text(Model.Items.IndexOf(item) + 1);
            table.Cell().Element(CellStyle).Text(item.Name);
            table.Cell().Element(CellStyle).AlignRight().Text($"{item.Price}$");
            table.Cell().Element(CellStyle).AlignRight().Text(item.Quantity);
            table.Cell().Element(CellStyle).AlignRight().Text($"{item.Price * item.Quantity}$");
            
            static IContainer CellStyle(IContainer container)
            {
                container.BorderBottom(1).BorderColor(Colors.Grey.Lighten2).PaddingVertical(5);
            }
        }
    });
}
void ComposeComments(IContainer container)
{
    container.ShowEntire().Background(Colors.Grey.Lighten3).Padding(10).Stack(message => 
    {
        message.Spacing(5);
        message.Item().Text("Comments", TextStyle.Default.Size(14).SemiBold());
        message.Item().Text(Model.Comments);
    });
}

The address details section is implemented using components. This way the code can be easily reused for both seller and customer:

public class AddressComponent : IComponent
{
    private string Title { get; }
    private Address Address { get; }

    public AddressComponent(string title, Address address)
    {
        Title = title;
        Address = address;
    }
    
    public void Compose(IContainer container)
    {
        container.ShowEntire().Stack(column =>
        {
            column.Spacing(5);

            column
                .Item()
                .BorderBottom(1)
                .PaddingBottom(5)
                .Text(Title, TextStyle.Default.SemiBold());
            
            column.Item().Text(Address.CompanyName);
            column.Item().Text(Address.Street);
            column.Item().Text($"{Address.City}, {Address.State}");
            column.Item().Text(Address.Email);
            column.Item().Text(Address.Phone);
        });
    }
}
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 is compatible.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 is compatible.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  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.

NuGet packages (20)

Showing the top 5 NuGet packages that depend on QuestPDF:

Package Downloads
AgentHub.Service.Financial.Domain.Shared

Package Description

HTMLToQPDF

Relorer.QuestPDF.HTML is an extension for QuestPDF that allows to generate PDF from HTML

DH.QuestPDF

DH框架的Pdf处理库。基于https://github.com/QuestPDF/QuestPDF

Verify.QuestPDF The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Extends Verify (https://github.com/VerifyTests/Verify) to allow verification via QuestPDF.

A2v10.Pdf.Report

A2v10 Platform PDF report

GitHub repositories (8)

Showing the top 5 popular GitHub repositories that depend on QuestPDF:

Repository Stars
nopSolutions/nopCommerce
ASP.NET Core eCommerce software. nopCommerce is a free and open-source shopping cart.
beto-rodriguez/LiveCharts2
Simple, flexible, interactive & powerful charts, maps and gauges for .Net, LiveCharts2 can now practically run everywhere Maui, Uno Platform, Blazor-wasm, WPF, WinForms, Xamarin, Avalonia, WinUI, UWP.
neozhu/CleanArchitectureWithBlazorServer
This is a repository for creating a Blazor Server dashboard application following the principles of Clean Architecture
NickvisionApps/Denaro
Manage your personal finances
axzxs2001/Asp.NetCoreExperiment
原来所有项目都移动到**OleVersion**目录下进行保留。新的案例装以.net 5.0为主,一部分对以前案例进行升级,一部分将以前的工作经验总结出来,以供大家参考!
Version Downloads Last updated
2024.3.0 5,678 4/12/2024
2024.3.0-rc2 1,787 3/30/2024
2024.3.0-rc1 192 3/29/2024
2024.3.0-rc 536 3/27/2024
2024.3.0-beta1 906 3/18/2024
2024.3.0-beta 2,160 2/29/2024
2024.3.0-alpha 1,257 2/15/2024
2023.12.6 93,079 2/21/2024
2023.12.5 36,098 2/7/2024
2023.12.4 63,199 1/15/2024
2023.12.3 7,516 1/12/2024
2023.12.2 29,758 1/1/2024
2023.12.1 34,776 12/15/2023
2023.12.0 34,301 12/3/2023
2023.10.2 54,867 11/13/2023
2023.10.1 29,263 10/31/2023
2023.10.0 25,143 10/23/2023
2023.10.0-alpha0 333 10/13/2023
2023.9.1 31,203 10/6/2023
2023.9.0 26,608 9/25/2023
2023.6.3 83,952 8/27/2023
2023.6.2 478 8/26/2023
2023.6.1 72,490 7/20/2023
2023.6.0 44,199 6/28/2023
2023.5.3 55,620 6/12/2023
2023.5.2 46,345 5/31/2023
2023.5.1 21,492 5/22/2023
2023.5.0 11,598 5/15/2023
2023.4.2 11,550 5/9/2023
2023.4.1 3,579 5/4/2023
2023.4.0 589 5/4/2023
2022.12.15 19,730 2/7/2024
2022.12.14 11,143 1/12/2024
2022.12.13 4,840 1/1/2024
2022.12.12 11,092 12/15/2023
2022.12.11 8,093 12/3/2023
2022.12.10 6,249 11/13/2023
2022.12.9 2,146 10/31/2023
2022.12.8 3,933 10/23/2023
2022.12.7 55,617 10/6/2023
2022.12.6 342,732 5/9/2023
2022.12.5 124,993 4/27/2023
2022.12.4 23,379 4/22/2023
2022.12.3 66,502 4/16/2023
2022.12.2 238,181 3/12/2023
2022.12.1 470,532 1/13/2023
2022.12.0 132,665 12/14/2022
2022.11.0 328,987 11/5/2022
2022.11.0-alpha1 302 11/1/2022
2022.11.0-alpha0 277 10/28/2022
2022.9.1 77,810 10/15/2022
2022.9.0 120,736 9/18/2022
2022.9.0-alpha1 265 9/16/2022
2022.8.2 147,105 8/21/2022
2022.8.1 20,466 8/19/2022
2022.8.0 76,559 8/15/2022
2022.6.3 48,159 7/18/2022
2022.6.2 117,785 6/22/2022
2022.6.1 21,591 6/12/2022
2022.6.0 137,286 6/12/2022
2022.6.0-prerelease 1,716 5/30/2022
2022.5.0 257,337 5/9/2022
2022.4.1 87,102 4/8/2022
2022.4.0 59,562 4/4/2022
2022.4.0-alpha1 306 3/27/2022
2022.4.0-alpha0 271 3/27/2022
2022.3.1 94,681 3/15/2022
2022.3.0 2,340 3/14/2022
2022.2.7 1,717 3/12/2022
2022.2.6 6,348 3/8/2022
2022.2.5 19,116 2/18/2022
2022.2.4 662 2/18/2022
2022.2.3 10,316 2/7/2022
2022.2.2 1,989 2/1/2022
2022.2.1 1,551 1/30/2022
2022.2.0 1,747 1/29/2022
2022.2.0-beta1 296 1/24/2022
2022.1.0 21,420 1/10/2022
2022.1.0-beta5 941 1/7/2022
2022.1.0-beta4 303 1/6/2022
2022.1.0-beta3 275 1/5/2022
2022.1.0-beta2 292 1/5/2022
2022.1.0-beta1 300 1/3/2022
2022.1.0-beta0 280 12/30/2021
2022.1.0-alpha0 326 12/30/2021
2021.12.0 29,427 12/6/2021
2021.12.0-alpha1 1,127 11/29/2021
2021.12.0-alpha0 352 11/18/2021
2021.11.4 21,513 11/14/2021
2021.11.3 4,708 11/7/2021
2021.11.0-beta3 359 11/3/2021
2021.11.0-beta2 375 10/28/2021
2021.11.0-beta 427 10/23/2021
2021.10.1 9,778 9/30/2021
2021.10.0 572 9/30/2021
2021.10.0-beta.2 248 9/14/2021
2021.10.0-beta 375 9/13/2021
2021.9.3 5,018 9/12/2021
2021.9.2 670 9/1/2021
2021.9.1 515 9/1/2021
2021.9.0 485 8/30/2021
2021.8.0 2,437 8/2/2021
2021.5.2 2,680 5/5/2021
2021.4.0 724 4/2/2021
2021.3.1 7,071 3/1/2021
2021.3.0 538 3/1/2021
2021.2.0 591 2/8/2021
2021.1.0 648 1/4/2021
2020.11.0 9,302 11/1/2020

- Added a `ScaleToFit` element - scales its child down so it fits in the provided space,
- Added a `StopPaging` element - when its child requires more than one page to fully render, only the first page is shown,
- Added a 'LineVertical' and a 'LineHorizontal' elements - those will simplify your code a lot, there is no need to use the `Border` element anymore!
- Renaming: the `Stack` element was renamed to the `Column` element,
- Renaming: children of the `Row` element are now called `items` instead of `columns`, e.g. `RelativeItem` instead of `RelativeColumn`,
- Added support of the `AutoItem` to the `Row` element - those items take as little width as possible,
- Improved default Fluent configuration behavior for elements: Scale, Padding, Translate,
- Improved integration support with the HttpContext.Response.Body. This improvement was introduced by schulz3000, thank you!