QuestPDF 2023.9.0
dotnet add package QuestPDF --version 2023.9.0
NuGet\Install-Package QuestPDF -Version 2023.9.0
<PackageReference Include="QuestPDF" Version="2023.9.0" />
paket add QuestPDF --version 2023.9.0
#r "nuget: QuestPDF, 2023.9.0"
// Install QuestPDF as a Cake Addin
#addin nuget:?package=QuestPDF&version=2023.9.0
// Install QuestPDF as a Cake Tool
#tool nuget:?package=QuestPDF&version=2023.9.0
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.
👨💻 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");
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.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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. |
.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. |
-
.NETCoreApp 2.0
- SkiaSharp (>= 2.88.3)
- SkiaSharp.HarfBuzz (>= 2.88.3)
-
.NETCoreApp 3.0
- SkiaSharp (>= 2.88.3)
- SkiaSharp.HarfBuzz (>= 2.88.3)
-
.NETFramework 4.6.2
- SkiaSharp (>= 2.88.3)
- SkiaSharp.HarfBuzz (>= 2.88.3)
-
.NETStandard 2.0
- SkiaSharp (>= 2.88.3)
- SkiaSharp.HarfBuzz (>= 2.88.3)
-
net6.0
- SkiaSharp (>= 2.88.3)
- SkiaSharp.HarfBuzz (>= 2.88.3)
NuGet packages (14)
Showing the top 5 NuGet packages that depend on QuestPDF:
Package | Downloads |
---|---|
AgentHub.Service.Financial.Domain.Shared
Package Description |
|
DH.QuestPDF
DH框架的Pdf处理库。基于https://github.com/QuestPDF/QuestPDF |
|
HTMLToQPDF
Relorer.QuestPDF.HTML is an extension for QuestPDF that allows to generate PDF from HTML |
|
A2v10.Pdf.Report
A2v10 Platform PDF report |
|
Verify.QuestPDF
Extends Verify (https://github.com/VerifyTests/Verify) to allow verification via QuestPDF. |
GitHub repositories (7)
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.
|
|
NickvisionApps/Denaro
Manage your personal finances
|
|
neozhu/CleanArchitectureWithBlazorServer
This is a repository for creating a Blazor Server dashboard application following the principles of Clean Architecture
|
|
axzxs2001/Asp.NetCoreExperiment
原来所有项目都移动到**OleVersion**目录下进行保留。新的案例装以.net 5.0为主,一部分对以前案例进行升级,一部分将以前的工作经验总结出来,以供大家参考!
|
Version | Downloads | Last updated | |
---|---|---|---|
2023.9.0 | 49 | 9/25/2023 | |
2023.6.3 | 17,681 | 8/27/2023 | |
2023.6.2 | 235 | 8/26/2023 | |
2023.6.1 | 33,883 | 7/20/2023 | |
2023.6.0 | 30,622 | 6/28/2023 | |
2023.5.3 | 26,737 | 6/12/2023 | |
2023.5.2 | 24,050 | 5/31/2023 | |
2023.5.1 | 14,977 | 5/22/2023 | |
2023.5.0 | 9,081 | 5/15/2023 | |
2023.4.2 | 8,983 | 5/9/2023 | |
2023.4.1 | 2,891 | 5/4/2023 | |
2023.4.0 | 244 | 5/4/2023 | |
2022.12.6 | 122,531 | 5/9/2023 | |
2022.12.5 | 58,497 | 4/27/2023 | |
2022.12.4 | 13,002 | 4/22/2023 | |
2022.12.3 | 31,732 | 4/16/2023 | |
2022.12.2 | 156,443 | 3/12/2023 | |
2022.12.1 | 296,277 | 1/13/2023 | |
2022.12.0 | 101,093 | 12/14/2022 | |
2022.11.0 | 225,714 | 11/5/2022 | |
2022.11.0-alpha1 | 130 | 11/1/2022 | |
2022.11.0-alpha0 | 105 | 10/28/2022 | |
2022.9.1 | 52,232 | 10/15/2022 | |
2022.9.0 | 90,615 | 9/18/2022 | |
2022.9.0-alpha1 | 121 | 9/16/2022 | |
2022.8.2 | 121,020 | 8/21/2022 | |
2022.8.1 | 14,763 | 8/19/2022 | |
2022.8.0 | 41,006 | 8/15/2022 | |
2022.6.3 | 42,779 | 7/18/2022 | |
2022.6.2 | 97,997 | 6/22/2022 | |
2022.6.1 | 19,669 | 6/12/2022 | |
2022.6.0 | 101,172 | 6/12/2022 | |
2022.6.0-prerelease | 1,520 | 5/30/2022 | |
2022.5.0 | 214,312 | 5/9/2022 | |
2022.4.1 | 61,373 | 4/8/2022 | |
2022.4.0 | 43,560 | 4/4/2022 | |
2022.4.0-alpha1 | 149 | 3/27/2022 | |
2022.4.0-alpha0 | 121 | 3/27/2022 | |
2022.3.1 | 90,793 | 3/15/2022 | |
2022.3.0 | 1,968 | 3/14/2022 | |
2022.2.7 | 1,490 | 3/12/2022 | |
2022.2.6 | 6,080 | 3/8/2022 | |
2022.2.5 | 16,498 | 2/18/2022 | |
2022.2.4 | 479 | 2/18/2022 | |
2022.2.3 | 9,504 | 2/7/2022 | |
2022.2.2 | 1,705 | 2/1/2022 | |
2022.2.1 | 1,272 | 1/30/2022 | |
2022.2.0 | 1,121 | 1/29/2022 | |
2022.2.0-beta1 | 133 | 1/24/2022 | |
2022.1.0 | 18,965 | 1/10/2022 | |
2022.1.0-beta5 | 781 | 1/7/2022 | |
2022.1.0-beta4 | 150 | 1/6/2022 | |
2022.1.0-beta3 | 138 | 1/5/2022 | |
2022.1.0-beta2 | 135 | 1/5/2022 | |
2022.1.0-beta1 | 134 | 1/3/2022 | |
2022.1.0-beta0 | 139 | 12/30/2021 | |
2022.1.0-alpha0 | 168 | 12/30/2021 | |
2021.12.0 | 23,485 | 12/6/2021 | |
2021.12.0-alpha1 | 965 | 11/29/2021 | |
2021.12.0-alpha0 | 198 | 11/18/2021 | |
2021.11.4 | 20,068 | 11/14/2021 | |
2021.11.3 | 4,217 | 11/7/2021 | |
2021.11.0-beta3 | 200 | 11/3/2021 | |
2021.11.0-beta2 | 242 | 10/28/2021 | |
2021.11.0-beta | 299 | 10/23/2021 | |
2021.10.1 | 8,752 | 9/30/2021 | |
2021.10.0 | 402 | 9/30/2021 | |
2021.10.0-beta.2 | 207 | 9/14/2021 | |
2021.10.0-beta | 233 | 9/13/2021 | |
2021.9.3 | 3,908 | 9/12/2021 | |
2021.9.2 | 479 | 9/1/2021 | |
2021.9.1 | 338 | 9/1/2021 | |
2021.9.0 | 334 | 8/30/2021 | |
2021.8.0 | 2,207 | 8/2/2021 | |
2021.5.2 | 2,169 | 5/5/2021 | |
2021.4.0 | 555 | 4/2/2021 | |
2021.3.1 | 6,901 | 3/1/2021 | |
2021.3.0 | 366 | 3/1/2021 | |
2021.2.0 | 421 | 2/8/2021 | |
2021.1.0 | 442 | 1/4/2021 | |
2020.11.0 | 7,215 | 11/1/2020 |
Version 2023.9.0
- In-code IntelliSense documentation for all public APIs,
- Improvement: the Row element respects now available vertical space, which is closer to expected behavior