Syncfusion.Pdf.Net.Core 19.3.0.45

The Syncfusion .NET Core PDF library (Essential PDF) is a feature-rich and high-performance .NET Core PDF library that is used to create, read, and edit PDF documents programmatically without Adobe dependencies.

Key Features

Getting Started

You can fetch the Syncfusion .NET Core PDF library NuGet by simply running Install-Package Syncfusion.Pdf.Net.Core from the Package Manager Console in Visual Studio.

You can also try some code examples of common use cases from our GitHub Repository.

Create a PDF document programmatically using C#

The following code example illustrates how to create a PDF document.

//Create a PDF document
PdfDocument document = new PdfDocument();
  
//Add a page to the document
PdfPage page = document.Pages.Add();
  
//Create PDF graphics for the page
PdfGraphics graphics = page.Graphics;
  
//Set the standard font
PdfFont font = new PdfStandardFont(PdfFontFamily.Helvetica, 20);
  
//Draw the text
graphics.DrawString("Hello World!!!", font, PdfBrushes.Black, new PointF(0, 0));
  
//Saving the PDF to the MemoryStream
MemoryStream stream = new MemoryStream();
  
document.Save(stream);

stream.Position = 0;
  
document.Close(true);

Manipulate the PDF document programmatically using C#

The following code example illustrates how to manipulate the PDF document.

//Load the PDF document
FileStream docStream = new FileStream("input.pdf", FileMode.Open, FileAccess.Read);
PdfLoadedDocument document = new PdfLoadedDocument(docStream);

//Get first page from document
PdfLoadedPage page = document.Pages[0] as PdfLoadedPage;

//Create PDF graphics for the page
PdfGraphics graphics = page.Graphics;

//Set the standard font.
PdfFont font = new PdfStandardFont(PdfFontFamily.Helvetica, 20);

//Draw the text.
graphics.DrawString("Hello World!!!", font, PdfBrushes.Black, new Syncfusion.Drawing.PointF(0, 0));

//Creating the stream object
MemoryStream stream = new MemoryStream();

//Save the document into memory stream
document.Save(stream);

stream.Position = 0;

//Close the document.
document.Close(true);

Resources

Support and feedback

License

This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA. You can purchase a license here or start a free 30-day trial here.

About Syncfusion

Founded in 2001 and headquartered in Research Triangle Park, N.C., Syncfusion has more than 26,000+ customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1600+ components and frameworks for web (Blazor, ASP.NET Core, ASP.NET MVC, ASP.NET WebForms, JavaScript, Angular, React, Vue, and Flutter), mobile (Xamarin, Flutter, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI(Preview), Flutter and UWP). We provide ready-to-deploy enterprise software for dashboards, reports, data integration, and big data processing. Many customers have saved millions in licensing fees by deploying our software.

sales@syncfusion.com | www.syncfusion.com | Toll Free: 1-888-9 DOTNET

Showing the top 20 packages that depend on Syncfusion.Pdf.Net.Core.

Packages Downloads
Syncfusion.EJ2.PdfViewer.AspNet.Core.Linux
Syncfusion Pdf Viewer for Essential JS 2 Asp.Net Core Linux is a .NET class library for converting PDF document into images and extracting PDF documents for Linux Operating System.
4
Syncfusion.EJ2.PdfViewer.AspNet.Core.Linux
Syncfusion Pdf Viewer for Essential JS 2 Asp.Net Core Linux is a .NET class library for converting PDF document into images and extracting PDF documents for Linux Operating System.
5
Syncfusion.EJ2.PdfViewer.AspNet.Core.Linux
Syncfusion Pdf Viewer for Essential JS 2 Asp.Net Core Linux is a .NET class library for converting PDF document into images and extracting PDF documents for Linux Operating System. Learn More: https://www.syncfusion.com/products/aspnetcore/pdfviewer Documentation: https://ej2.syncfusion.com/aspnetcore/documentation/pdfviewer/getting-started-core.html Support: Incident: https://www.syncfusion.com/support/directtrac/incidents/newincident Forum: https://www.syncfusion.com/forums/aspnetcore-js2 This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA (https://www.syncfusion.com/eula/es/). To acquire a license, you can purchase one at https://www.syncfusion.com/sales/products or start a free 30-day trial here (https://www.syncfusion.com/account/manage-trials/start-trials). © Copyright 2019 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
4
Syncfusion.EJ2.PdfViewer.AspNet.Core.Linux
Syncfusion Pdf Viewer for Essential JS 2 Asp.Net Core Linux is a .NET class library for converting PDF document into images and extracting PDF documents for Linux Operating System. Learn More: https://www.syncfusion.com/products/aspnetcore/pdfviewer Documentation: https://ej2.syncfusion.com/aspnetcore/documentation/pdfviewer/getting-started-core.html Support: Incident: https://www.syncfusion.com/support/directtrac/incidents/newincident Forum: https://www.syncfusion.com/forums/aspnetcore-js2 This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA (https://www.syncfusion.com/eula/es/). To acquire a license, you can purchase one at https://www.syncfusion.com/sales/products or start a free 30-day trial here (https://www.syncfusion.com/account/manage-trials/start-trials). © Copyright 2020 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
4
Syncfusion.EJ2.PdfViewer.AspNet.Core.Linux
Syncfusion Pdf Viewer for Essential JS 2 Asp.Net Core Linux is a .NET class library for converting PDF document into images and extracting PDF documents for Linux Operating System. Learn More: https://www.syncfusion.com/products/aspnetcore/pdfviewer Documentation: https://ej2.syncfusion.com/aspnetcore/documentation/pdfviewer/getting-started-core.html Support: Incident: https://www.syncfusion.com/support/directtrac/incidents/newincident Forum: https://www.syncfusion.com/forums/aspnetcore-js2 This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA (https://www.syncfusion.com/eula/es/). To acquire a license, you can purchase one at https://www.syncfusion.com/sales/products or start a free 30-day trial here (https://www.syncfusion.com/account/manage-trials/start-trials). © Copyright 2020 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
5

https://help.syncfusion.com/aspnet-core/release-notes/v19.3.0.45?utm_source=nuget&utm_medium=listing

Version Downloads Last updated
28.1.39 1 01/19/2025
28.1.38 0 01/07/2025
28.1.37 0 12/31/2024
28.1.36 0 12/23/2024
28.1.35 0 12/18/2024
28.1.33 0 12/12/2024
27.2.5 0 12/02/2024
27.2.4 0 11/26/2024
27.2.3 0 11/22/2024
27.2.2 0 11/15/2024
27.1.58 0 11/04/2024
27.1.57 0 10/28/2024
27.1.56 0 10/23/2024
27.1.55 0 10/21/2024
27.1.53 0 10/14/2024
27.1.52 0 10/07/2024
27.1.51 0 09/30/2024
27.1.50 0 09/24/2024
27.1.48 0 09/18/2024
26.2.14 0 09/09/2024
26.2.13 0 09/05/2024
26.2.12 0 09/02/2024
26.2.11 0 08/27/2024
26.2.10 0 08/19/2024
26.2.9 0 08/12/2024
26.2.8 0 08/05/2024
26.2.7 0 07/29/2024
26.2.5 0 07/26/2024
26.2.4 0 07/24/2024
26.1.42 0 07/15/2024
26.1.41 0 07/08/2024
26.1.40 0 07/01/2024
26.1.39 0 06/24/2024
26.1.38 0 06/18/2024
26.1.35 0 06/11/2024
25.2.7 0 06/03/2024
25.2.6 0 05/28/2024
25.2.5 0 05/21/2024
25.2.4 0 05/14/2024
25.2.3 0 05/08/2024
25.1.42 0 04/29/2024
25.1.41 0 04/23/2024
25.1.40 0 04/15/2024
25.1.39 0 04/08/2024
25.1.38 0 04/01/2024
25.1.37 0 03/26/2024
25.1.35 2 03/27/2024
24.2.9 3 03/28/2024
24.2.8 2 03/04/2024
24.2.7 4 03/01/2024
24.2.6 3 03/01/2024
24.2.5 3 03/01/2024
24.2.4 2 03/16/2024
24.2.3 3 03/02/2024
24.1.47 2 03/20/2024
24.1.46 3 03/03/2024
24.1.45 3 03/01/2024
24.1.44 2 03/18/2024
24.1.43 2 03/17/2024
24.1.41 3 03/01/2024
23.2.7 2 03/02/2024
23.2.6 3 03/01/2024
23.2.5 3 03/02/2024
23.2.4 3 03/02/2024
23.1.44 3 03/01/2024
23.1.43 3 03/02/2024
23.1.42 2 03/21/2024
23.1.41 3 03/03/2024
23.1.40 3 03/02/2024
23.1.39 3 03/01/2024
23.1.38 2 03/17/2024
23.1.36 3 03/04/2024
22.2.12 3 03/02/2024
22.2.11 3 03/01/2024
22.2.10 3 03/01/2024
22.2.9 3 03/25/2024
22.2.8 3 03/02/2024
22.2.7 3 03/01/2024
22.2.5 3 03/03/2024
22.1.39 3 03/02/2024
22.1.38 2 03/02/2024
22.1.37 2 03/18/2024
22.1.36 3 03/02/2024
22.1.34 2 03/16/2024
21.2.10 2 03/03/2024
21.2.9 2 03/22/2024
21.2.8 2 03/14/2024
21.2.6 3 03/01/2024
21.2.5 3 03/02/2024
21.2.4 3 03/04/2024
21.2.3 3 03/01/2024
21.1.41 3 03/01/2024
21.1.39 2 03/22/2024
21.1.38 2 03/01/2024
21.1.37 2 03/14/2024
21.1.35 3 03/02/2024
20.4.0.54 2 03/02/2024
20.4.0.53 2 03/03/2024
20.4.0.52 1 02/29/2024
20.4.0.51 2 03/20/2024
20.4.0.50 2 03/02/2024
20.4.0.49 2 03/20/2024
20.4.0.48 2 03/20/2024
20.4.0.44 2 03/19/2024
20.4.0.43 2 03/02/2024
20.4.0.42 2 03/22/2024
20.4.0.41 2 03/19/2024
20.4.0.40 2 03/02/2024
20.4.0.38 2 03/01/2024
20.3.0.61 2 03/20/2024
20.3.0.60 2 03/21/2024
20.3.0.59 2 03/21/2024
20.3.0.58 2 03/21/2024
20.3.0.57 2 03/21/2024
20.3.0.56 2 03/21/2024
20.3.0.52 2 03/21/2024
20.3.0.50 2 03/02/2024
20.3.0.49 2 03/19/2024
20.3.0.48 2 03/21/2024
20.3.0.47 2 03/21/2024
20.2.0.50 2 03/19/2024
20.2.0.49 2 03/02/2024
20.2.0.48 2 03/19/2024
20.2.0.46 2 03/03/2024
20.2.0.45 2 03/19/2024
20.2.0.44 2 03/02/2024
20.2.0.43 2 03/17/2024
20.2.0.40 2 03/19/2024
20.2.0.39 2 03/19/2024
20.2.0.38 2 03/22/2024
20.2.0.36 2 03/22/2024
20.1.0.61 2 03/19/2024
20.1.0.60 1 03/20/2024
20.1.0.59 2 03/21/2024
20.1.0.58 2 03/18/2024
20.1.0.57 2 03/19/2024
20.1.0.56 2 03/19/2024
20.1.0.55 2 03/02/2024
20.1.0.52 2 03/21/2024
20.1.0.51 2 03/04/2024
20.1.0.50 2 03/03/2024
20.1.0.48 2 03/21/2024
20.1.0.47 2 03/21/2024
19.4.0.56 3 03/02/2024
19.4.0.55 3 03/01/2024
19.4.0.54 3 03/01/2024
19.4.0.53 3 03/02/2024
19.4.0.52 3 03/01/2024
19.4.0.50 3 03/01/2024
19.4.0.48 3 03/01/2024
19.4.0.47 3 03/01/2024
19.4.0.43 3 02/27/2024
19.4.0.42 3 03/02/2024
19.4.0.41 3 03/03/2024
19.4.0.40 3 03/02/2024
19.4.0.38 3 03/01/2024
19.3.0.59 3 03/01/2024
19.3.0.57 2 03/22/2024
19.3.0.56 3 03/01/2024
19.3.0.55 3 03/01/2024
19.3.0.54 1 08/23/2024
19.3.0.53 3 03/01/2024
19.3.0.48 2 03/02/2024
19.3.0.47 4 08/18/2023
19.3.0.46 3 03/01/2024
19.3.0.45 2 03/16/2024
19.3.0.44 2 03/16/2024
19.3.0.43 0 09/30/2021
19.2.0.62 2 03/18/2024
19.2.0.60 2 03/04/2024
19.2.0.59 2 03/03/2024
19.2.0.57 2 03/18/2024
19.2.0.56 2 03/02/2024
19.2.0.55 2 03/20/2024
19.2.0.51 2 03/20/2024
19.2.0.49 2 03/21/2024
19.2.0.48 2 03/04/2024
19.2.0.47 2 03/21/2024
19.2.0.46 2 03/19/2024
19.2.0.44 2 03/20/2024
19.1.0.69 2 03/18/2024
19.1.0.67 2 03/19/2024
19.1.0.66 2 03/03/2024
19.1.0.65 2 03/16/2024
19.1.0.64 2 03/19/2024
19.1.0.63 3 03/01/2024
19.1.0.59 2 03/02/2024
19.1.0.58 2 03/18/2024
19.1.0.57 0 04/20/2021
19.1.0.56 2 03/16/2024
19.1.0.55 2 03/01/2024
19.1.0.54 2 03/18/2024
18.4.0.49 2 02/27/2024
18.4.0.48 2 03/21/2024
18.4.0.47 2 02/28/2024
18.4.0.46 2 03/19/2024
18.4.0.44 2 03/21/2024
18.4.0.43 2 03/18/2024
18.4.0.42 2 03/20/2024
18.4.0.41 2 03/18/2024
18.4.0.39 2 03/21/2024
18.4.0.35 2 03/19/2024
18.4.0.34 2 03/20/2024
18.4.0.33 2 03/21/2024
18.4.0.32 2 03/22/2024
18.4.0.31 2 03/20/2024
18.4.0.30 2 03/02/2024
18.3.0.53 2 03/03/2024
18.3.0.52 2 03/20/2024
18.3.0.51 2 03/19/2024
18.3.0.50 2 03/20/2024
18.3.0.48 2 03/20/2024
18.3.0.47 2 03/20/2024
18.3.0.44 2 03/20/2024
18.3.0.42 2 03/19/2024
18.3.0.40 2 03/20/2024
18.3.0.38 2 03/18/2024
18.3.0.35 2 03/22/2024
18.2.0.59 1 03/22/2024
18.2.0.58 2 03/18/2024
18.2.0.57 2 03/02/2024
18.2.0.56 3 03/02/2024
18.2.0.55 2 03/18/2024
18.2.0.54 2 02/28/2024
18.2.0.48 2 03/21/2024
18.2.0.47 2 03/19/2024
18.2.0.46 2 03/18/2024
18.2.0.45 2 03/04/2024
18.2.0.44 2 03/20/2024
18.1.0.59 2 03/02/2024
18.1.0.57 2 03/17/2024
18.1.0.56 2 03/16/2024
18.1.0.55 2 03/18/2024
18.1.0.54 2 03/19/2024
18.1.0.53 2 03/02/2024
18.1.0.52 2 03/18/2024
18.1.0.48 2 03/18/2024
18.1.0.46 3 03/02/2024
18.1.0.45 2 03/02/2024
18.1.0.44 2 03/18/2024
18.1.0.43 2 03/16/2024
18.1.0.42 0 04/01/2020
18.1.0.36-beta 1 03/18/2024
17.4.0.55 2 03/03/2024
17.4.0.53 2 03/03/2024
17.4.0.51 2 03/02/2024
17.4.0.50 2 03/19/2024
17.4.0.49 2 03/18/2024
17.4.0.47 2 03/18/2024
17.4.0.46 3 03/01/2024
17.4.0.44 2 03/18/2024
17.4.0.43 2 03/16/2024
17.4.0.41 2 03/18/2024
17.4.0.40 2 03/18/2024
17.4.0.39 2 03/02/2024
17.3.0.34 3 03/17/2024
17.3.0.33 2 03/03/2024
17.3.0.30 2 03/02/2024
17.3.0.29 2 03/20/2024
17.3.0.28 2 03/18/2024
17.3.0.27 2 03/21/2024
17.3.0.26 2 03/22/2024
17.3.0.21 2 03/02/2024
17.3.0.19 2 03/17/2024
17.3.0.17 2 03/17/2024
17.3.0.14 0 10/03/2019
17.3.0.9-beta 1 03/20/2024
17.2.0.51 3 03/02/2024
17.2.0.49 2 03/02/2024
17.2.0.47 2 03/22/2024
17.2.0.46 3 03/01/2024
17.2.0.41 2 03/03/2024
17.2.0.40 2 03/17/2024
17.2.0.39 2 03/02/2024
17.2.0.36 2 03/17/2024
17.2.0.35 3 03/01/2024
17.2.0.34 3 03/01/2024
17.2.0.28-beta 2 03/20/2024
17.1.0.53 2 03/01/2024
17.1.0.52 2 03/18/2024
17.1.0.51 2 03/03/2024
17.1.0.50 2 03/18/2024
17.1.0.49 2 03/02/2024
17.1.0.48 2 03/02/2024
17.1.0.47 2 03/19/2024
17.1.0.44 2 03/02/2024
17.1.0.43 2 03/17/2024
17.1.0.42 2 03/01/2024
17.1.0.41 2 03/17/2024
17.1.0.40 2 03/19/2024
17.1.0.38 2 03/22/2024
17.1.0.32-beta 1 03/22/2024
16.4.0.54 2 03/21/2024
16.4.0.53 2 03/22/2024
16.4.0.52 2 03/02/2024
16.4.0.48 2 03/18/2024
16.4.0.47 2 03/21/2024
16.4.0.46 2 03/20/2024
16.4.0.44 2 03/22/2024
16.4.0.42 2 03/21/2024
16.4.0.40-beta 1 03/21/2024
16.3.0.36 2 03/20/2024
16.3.0.35-beta 2 03/02/2024
16.3.0.29 2 02/27/2024
16.3.0.21 2 03/20/2024