Syncfusion.Pdf.Net.Core 19.4.0.47

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.Pdf.Net.Core --version 19.4.0.47
NuGet\Install-Package Syncfusion.Pdf.Net.Core -Version 19.4.0.47
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="Syncfusion.Pdf.Net.Core" Version="19.4.0.47" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Syncfusion.Pdf.Net.Core --version 19.4.0.47
#r "nuget: Syncfusion.Pdf.Net.Core, 19.4.0.47"
#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 Syncfusion.Pdf.Net.Core as a Cake Addin
#addin nuget:?package=Syncfusion.Pdf.Net.Core&version=19.4.0.47

// Install Syncfusion.Pdf.Net.Core as a Cake Tool
#tool nuget:?package=Syncfusion.Pdf.Net.Core&version=19.4.0.47

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

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 netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.2 is compatible.  netstandard1.3 was computed.  netstandard1.4 is compatible.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net451 was computed.  net452 was computed.  net46 was computed.  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 tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wpa81 was computed. 
Windows Store netcore451 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 (29)

Showing the top 5 NuGet packages that depend on Syncfusion.Pdf.Net.Core:

Package Downloads
Syncfusion.EJ2.PdfViewer.AspNet.Core.Windows The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Syncfusion Pdf Viewer for Essential JS 2 Asp.Net Core Windows is a .NET class library for converting PDF document into images and extracting PDF documents for Windows platform.

Syncfusion.DocIORenderer.Net.Core The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Syncfusion Word library is feature-rich and high-performance .NET Word library that allows you to create, manipulate and convert Word documents (DOC, DOT, DOCM, DOTM, DOCX, DOTX, RTF, and WordML), TXT, and HTML files.

Syncfusion.HtmlToPdfConverter.QtWebKit.Net.Core The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

The Syncfusion HTML to PDF converter is a .NET Standard library that converts URLs, HTML string, SVG, and MHTML to PDF in .NET Core applications. This converter uses the advanced WebKit rendering engine, thus generating pixel-perfect PDF from HTML or URL.

Syncfusion.XlsIORenderer.Net.Core The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

The Syncfusion XlsIO renderer is a .NET Standard library that allows you to convert Excel documents to Images/PDFs in .NET applications without any Microsoft Office dependencies.

Syncfusion.Pdf.Imaging.Net.Core The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Syncfusion Essential PDF Imaging is a .NET standard PDF library used to draw the image files to PDF in any .NET Core applications. Key features: • Supports drawing JPEG, PNG, GIF, BMP, and TIFF images to PDF document. Learn more: https://www.syncfusion.com/pdf-framework/net-core Documentation: http://help.syncfusion.com/file-formats/pdf/ Support: Incident: https://www.syncfusion.com/support/directtrac/incidents/newincident Forums: https://www.syncfusion.com/forums/windowsforms 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 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
25.1.40 333 4/15/2024
25.1.39 4,848 4/8/2024
25.1.38 9,839 4/1/2024
25.1.37 7,291 3/26/2024
25.1.35 24,317 3/15/2024
24.2.9 35,460 3/4/2024
24.2.8 18,631 2/26/2024
24.2.7 22,499 2/19/2024
24.2.6 18,449 2/14/2024
24.2.5 5,580 2/12/2024
24.2.4 19,735 2/6/2024
24.2.3 27,392 1/31/2024
24.1.47 20,539 1/23/2024
24.1.46 25,160 1/17/2024
24.1.45 33,751 1/9/2024
24.1.44 20,634 1/3/2024
24.1.43 10,240 12/27/2023
24.1.41 60,999 12/18/2023
23.2.7 63,000 12/6/2023
23.2.6 28,636 11/28/2023
23.2.5 14,625 11/23/2023
23.2.4 21,304 11/20/2023
23.1.44 40,503 11/6/2023
23.1.43 36,323 10/30/2023
23.1.42 18,766 10/23/2023
23.1.41 30,563 10/16/2023
23.1.40 61,405 10/10/2023
23.1.39 16,631 10/4/2023
23.1.38 29,254 9/26/2023
23.1.36 60,276 9/15/2023
22.2.12 46,255 9/5/2023
22.2.11 22,848 8/28/2023
22.2.10 29,215 8/22/2023
22.2.9 36,833 8/14/2023
22.2.8 24,927 8/7/2023
22.2.7 17,462 8/2/2023
22.2.5 30,973 7/27/2023
22.1.39 57,109 7/18/2023
22.1.38 24,735 7/11/2023
22.1.37 22,154 7/3/2023
22.1.36 25,655 6/28/2023
22.1.34 42,781 6/21/2023
21.2.10 36,343 6/13/2023
21.2.9 45,675 6/6/2023
21.2.8 33,445 5/30/2023
21.2.6 40,124 5/22/2023
21.2.5 27,549 5/15/2023
21.2.4 25,577 5/9/2023
21.2.3 34,455 5/3/2023
21.1.41 56,801 4/19/2023
21.1.39 43,268 4/10/2023
21.1.38 32,902 4/3/2023
21.1.37 32,890 3/29/2023
21.1.35 42,942 3/23/2023
20.4.0.54 216,928 3/13/2023
20.4.0.53 40,249 3/7/2023
20.4.0.52 42,521 2/28/2023
20.4.0.51 35,977 2/21/2023
20.4.0.50 24,762 2/14/2023
20.4.0.49 26,994 2/7/2023
20.4.0.48 74,912 2/1/2023
20.4.0.44 105,966 1/18/2023
20.4.0.43 72,519 1/10/2023
20.4.0.42 28,586 1/4/2023
20.4.0.41 37,211 12/29/2022
20.4.0.40 13,261 12/28/2022
20.4.0.38 68,857 12/21/2022
20.3.0.61 65,388 12/13/2022
20.3.0.60 41,566 12/6/2022
20.3.0.59 34,104 11/29/2022
20.3.0.58 26,572 11/22/2022
20.3.0.57 21,500 11/15/2022
20.3.0.56 55,727 11/8/2022
20.3.0.52 42,188 10/27/2022
20.3.0.50 52,812 10/18/2022
20.3.0.49 45,281 10/11/2022
20.3.0.48 73,019 10/5/2022
20.3.0.47 82,969 9/29/2022
20.2.0.50 67,939 9/20/2022
20.2.0.49 92,193 9/13/2022
20.2.0.48 39,578 9/6/2022
20.2.0.46 15,477 8/30/2022
20.2.0.45 36,281 8/23/2022
20.2.0.44 22,196 8/16/2022
20.2.0.43 57,331 8/8/2022
20.2.0.40 41,015 7/26/2022
20.2.0.39 29,995 7/19/2022
20.2.0.38 34,451 7/12/2022
20.2.0.36 325,374 6/30/2022
20.1.0.61 58,313 6/21/2022
20.1.0.60 44,922 6/14/2022
20.1.0.59 92,483 6/7/2022
20.1.0.58 62,600 5/31/2022
20.1.0.57 40,608 5/24/2022
20.1.0.56 529,337 5/17/2022
20.1.0.55 19,386 5/12/2022
20.1.0.52 36,446 5/3/2022
20.1.0.51 30,290 4/26/2022
20.1.0.50 30,995 4/19/2022
20.1.0.48 36,589 4/12/2022
20.1.0.47 52,702 4/4/2022
19.4.0.56 147,918 3/15/2022
19.4.0.55 102,361 3/8/2022
19.4.0.54 28,428 3/1/2022
19.4.0.53 52,050 2/22/2022
19.4.0.52 46,721 2/15/2022
19.4.0.50 64,725 2/8/2022
19.4.0.48 47,151 1/31/2022
19.4.0.47 23,987 1/25/2022
19.4.0.43 19,630 1/18/2022
19.4.0.42 69,611 1/11/2022
19.4.0.41 238,110 1/4/2022
19.4.0.40 19,353 12/28/2021
19.4.0.38 34,375 12/17/2021
19.3.0.59 47,286 12/14/2021
19.3.0.57 26,732 12/7/2021
19.3.0.56 48,804 11/30/2021
19.3.0.55 26,639 11/23/2021
19.3.0.54 16,374 11/17/2021
19.3.0.53 21,198 11/12/2021
19.3.0.48 30,668 11/3/2021
19.3.0.47 39,086 10/26/2021
19.3.0.46 22,497 10/19/2021
19.3.0.45 21,609 10/12/2021
19.3.0.44 19,829 10/5/2021
19.3.0.43 48,338 9/30/2021
19.2.0.62 56,654 9/14/2021
19.2.0.60 18,298 9/7/2021
19.2.0.59 20,807 8/31/2021
19.2.0.57 21,315 8/24/2021
19.2.0.56 18,217 8/17/2021
19.2.0.55 23,273 8/11/2021
19.2.0.51 17,028 8/2/2021
19.2.0.49 20,329 7/27/2021
19.2.0.48 22,919 7/20/2021
19.2.0.47 37,105 7/13/2021
19.2.0.46 16,188 7/6/2021
19.2.0.44 174,152 6/30/2021
19.1.0.69 113,614 6/15/2021
19.1.0.67 283,055 6/8/2021
19.1.0.66 21,680 6/1/2021
19.1.0.65 15,184 5/25/2021
19.1.0.64 13,525 5/19/2021
19.1.0.63 38,737 5/13/2021
19.1.0.59 24,927 5/4/2021
19.1.0.58 15,058 4/27/2021
19.1.0.57 27,859 4/20/2021
19.1.0.56 36,668 4/13/2021
19.1.0.55 18,636 4/6/2021
19.1.0.54 84,746 3/30/2021
18.4.0.49 42,192 3/23/2021
18.4.0.48 25,070 3/16/2021
18.4.0.47 54,450 3/9/2021
18.4.0.46 22,064 3/2/2021
18.4.0.44 31,300 2/23/2021
18.4.0.43 27,495 2/16/2021
18.4.0.42 18,271 2/9/2021
18.4.0.41 33,529 2/2/2021
18.4.0.39 38,472 1/28/2021
18.4.0.35 28,324 1/19/2021
18.4.0.34 14,861 1/12/2021
18.4.0.33 18,555 1/5/2021
18.4.0.32 14,900 12/30/2020
18.4.0.31 30,966 12/22/2020
18.4.0.30 27,295 12/17/2020
18.3.0.53 32,536 12/8/2020
18.3.0.52 28,880 11/30/2020
18.3.0.51 57,278 11/23/2020
18.3.0.50 47,302 11/17/2020
18.3.0.48 30,266 11/11/2020
18.3.0.47 68,000 11/5/2020
18.3.0.44 53,680 10/27/2020
18.3.0.42 14,881 10/20/2020
18.3.0.40 22,103 10/12/2020
18.3.0.38 14,587 10/7/2020
18.3.0.35 1,039,585 10/1/2020
18.2.0.59 18,505 9/22/2020
18.2.0.58 27,473 9/15/2020
18.2.0.57 50,120 9/8/2020
18.2.0.56 18,098 9/1/2020
18.2.0.55 17,666 8/25/2020
18.2.0.54 15,251 8/18/2020
18.2.0.48 25,200 8/4/2020
18.2.0.47 29,650 7/28/2020
18.2.0.46 19,072 7/21/2020
18.2.0.45 22,571 7/14/2020
18.2.0.44 46,976 7/7/2020
18.1.0.59 20,572 6/23/2020
18.1.0.57 23,026 6/16/2020
18.1.0.56 19,231 6/9/2020
18.1.0.55 18,898 6/2/2020
18.1.0.54 23,882 5/27/2020
18.1.0.53 36,077 5/19/2020
18.1.0.52 61,897 5/13/2020
18.1.0.48 15,947 5/5/2020
18.1.0.46 17,861 4/28/2020
18.1.0.45 15,950 4/21/2020
18.1.0.44 49,923 4/14/2020
18.1.0.43 18,943 4/7/2020
18.1.0.42 29,875 4/1/2020
18.1.0.36-beta 7,893 3/19/2020
17.4.0.55 48,703 3/10/2020
17.4.0.53 11,612 3/3/2020
17.4.0.51 14,823 2/25/2020
17.4.0.50 11,055 2/18/2020
17.4.0.49 12,989 2/11/2020
17.4.0.47 14,726 2/5/2020
17.4.0.46 21,285 1/30/2020
17.4.0.44 59,838 1/21/2020
17.4.0.43 10,750 1/14/2020
17.4.0.41 10,748 1/7/2020
17.4.0.40 28,805 12/24/2019
17.4.0.39 74,847 12/17/2019
17.3.0.34 17,591 12/10/2019
17.3.0.33 8,050 12/4/2019
17.3.0.30 11,404 12/3/2019
17.3.0.29 9,399 11/26/2019
17.3.0.28 9,910 11/19/2019
17.3.0.27 8,078 11/25/2019
17.3.0.26 23,415 11/5/2019
17.3.0.21 13,924 10/29/2019
17.3.0.19 25,650 10/22/2019
17.3.0.17 29,266 10/15/2019
17.3.0.14 35,967 10/3/2019
17.3.0.9-beta 83,448 9/20/2019
17.2.0.51 44,453 9/10/2019
17.2.0.49 10,158 9/3/2019
17.2.0.47 13,544 8/27/2019
17.2.0.46 12,181 8/22/2019
17.2.0.41 16,743 8/13/2019
17.2.0.40 9,976 8/6/2019
17.2.0.39 18,110 7/30/2019
17.2.0.36 14,412 7/23/2019
17.2.0.35 17,396 7/17/2019
17.2.0.34 21,468 7/11/2019
17.2.0.28-beta 6,914 6/27/2019
17.1.0.53 20,008 6/25/2019
17.1.0.52 7,815 6/18/2019
17.1.0.51 6,796 6/11/2019
17.1.0.50 13,461 6/4/2019
17.1.0.49 29,365 5/28/2019
17.1.0.48 9,216 5/21/2019
17.1.0.47 19,538 5/14/2019
17.1.0.44 7,847 5/7/2019
17.1.0.43 7,612 4/30/2019
17.1.0.42 12,379 4/23/2019
17.1.0.41 9,537 4/16/2019
17.1.0.40 7,203 4/9/2019
17.1.0.38 19,999 3/29/2019
17.1.0.32-beta 4,155 3/13/2019
16.4.0.54 95,165 2/19/2019
16.4.0.53 6,019 2/13/2019
16.4.0.52 10,114 2/5/2019
16.4.0.48 8,073 1/22/2019
16.4.0.47 11,542 1/16/2019
16.4.0.46 6,129 1/8/2019
16.4.0.44 6,844 12/24/2018
16.4.0.42 12,835 12/17/2018
16.4.0.40-beta 3,568 12/10/2018
16.3.0.36 13,646 11/27/2018
16.3.0.35-beta 2,945 11/23/2018
16.3.0.29 10,399 10/30/2018
16.3.0.21 15,411 9/21/2018