Syncfusion.Pdf.AspNet.Mvc5 19.3.0.55

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.Pdf.AspNet.Mvc5 --version 19.3.0.55
                    
NuGet\Install-Package Syncfusion.Pdf.AspNet.Mvc5 -Version 19.3.0.55
                    
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.AspNet.Mvc5" Version="19.3.0.55" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.Pdf.AspNet.Mvc5" Version="19.3.0.55" />
                    
Directory.Packages.props
<PackageReference Include="Syncfusion.Pdf.AspNet.Mvc5" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Syncfusion.Pdf.AspNet.Mvc5 --version 19.3.0.55
                    
#r "nuget: Syncfusion.Pdf.AspNet.Mvc5, 19.3.0.55"
                    
#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.
#:package Syncfusion.Pdf.AspNet.Mvc5@19.3.0.55
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Syncfusion.Pdf.AspNet.Mvc5&version=19.3.0.55
                    
Install as a Cake Addin
#tool nuget:?package=Syncfusion.Pdf.AspNet.Mvc5&version=19.3.0.55
                    
Install as a Cake Tool

The Syncfusion .NET PDF library is a feature-rich and high-performance .NET 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 MVC PDF library NuGet by simply running Install-Package Syncfusion.Pdf.AspNet.Mvc5 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));
  
//Save the document into file  
document.Save("sample.pdf");

//Close the document
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
PdfLoadedDocument document = new PdfLoadedDocument("input.pdf");

//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));

//Save the document into file
document.Save("sample.pdf");

//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 licnense 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, 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 Framework net45 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (11)

Showing the top 5 NuGet packages that depend on Syncfusion.Pdf.AspNet.Mvc5:

Package Downloads
Syncfusion.AspNet.Mvc5

Syncfusion UI components for ASP.NET MVC (Essential JS 1) contain the runtime MVC #MVCVersion# assemblies for building line-of-business applications. They contain more than 70 HTML helpers, including popular controls such as data grid, chart, Gantt, diagram, spreadsheet, schedule, and pivot grid to build server-side dynamic websites based on Microsoft's ASP.NET MVC Framework. Key features: • Support for all the major browsers: IE8+, Microsoft Edge, Chrome 17+, Firefox 22+, Safari 5+, and Opera 12+. • Support for globalization and localization. • Seventeen built-in themes including Material, Office 365, Bootstrap, and High contrast themes. • Built-in compliance with the WAI-ARIA specification, which ensures the components work properly in assistive technologies. • User-interactive widget mode sustainable in a browser’s local storage, which helps to maintain the state for each component. • Support for strongly-typed HTML helpers that use lambda expressions to refer to models. • Seamless cooperation with jQuery validation to perform validation on form controls like numeric, masked text box, check box, RTE, and drop-down list. • Support for RequireJS in all its components, which implements AMD specifications. So users can load the users-specified scripts and modules into a page. Learn more: https://www.syncfusion.com/jquery/aspnet-mvc-ui-controls?utm_source=nuget&utm_medium=listing Documentation: https://help.syncfusion.com/aspnetmvc/?utm_source=nuget&utm_medium=listing Support: Incident: https://www.syncfusion.com/support/directtrac/incidents/newincident?utm_source=nuget&utm_medium=listing Forum: https://www.syncfusion.com/forums/general?utm_source=nuget&utm_medium=listing 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/?utm_source=nuget&utm_medium=listing). To acquire a license, you can purchase one at https://www.syncfusion.com/sales/products?utm_source=nuget&utm_medium=listing or start a free 30-day trial here (https://www.syncfusion.com/account/manage-trials/start-trials?utm_source=nuget&utm_medium=listing).

Syncfusion.DocToPdfConverter.AspNet.Mvc5

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).

Syncfusion.HtmlToPdfConverter.AspNet.Mvc5

The Syncfusion® Essential HTML to PDF conversion using the advanced Blink rendering engine. This converter can be easily integrated into any .NET application to convert URLs, HTML string, SVG and MHTML to PDF, and convert other formats like HTML to MHTML, HTML to SVG, and HTML to image.

Syncfusion.ExcelToPdfConverter.AspNet.Mvc5

Syncfusion® Excel-to-PDF converter is a .NET library that is used to convert Excel documents into PDF in any ASP.NET MVC application without Microsoft Office dependencies.

Syncfusion.Pdf.OCR.AspNet.Mvc5

The Syncfusion® Essential PDF OCR is a .NET character recognition library that recognizes characters from both images and PDF in any ASP.NET MVC application. Syncfusion® OCRProcessor uses tesseract, one of most accurate OCR engines. Key features: • Converts scanned PDF to searchable PDF. • Converts various image formats such as TIFF, JPEG, PNG, BMP to searchable PDF. • Converts image or PDF to text with location. • Process OCR for the specified region in both PDF and image. • Supports 60+ languages. • Recognize text from rotated images and PDF documents. • Works both in 32-bit and 64-bit environments. Learn more: https://www.syncfusion.com/pdf-framework/net?utm_source=nuget&utm_medium=listing Documentation: https://help.syncfusion.com/file-formats/pdf/working-with-ocr?utm_source=nuget&utm_medium=listing Support: Incident: https://www.syncfusion.com/support/directtrac/incidents/newincident?utm_source=nuget&utm_medium=listing Forum: https://www.syncfusion.com/forums/aspnetmvc?utm_source=nuget&utm_medium=listing

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
31.2.18 251 12/8/2025
31.2.16 1,224 12/1/2025
31.2.15 665 11/25/2025
31.2.12 913 11/18/2025
31.2.10 831 11/12/2025
31.2.5 1,163 11/3/2025
31.2.4 685 10/28/2025
31.2.3 606 10/21/2025
31.2.2 719 10/15/2025
31.1.23 917 10/6/2025
31.1.22 497 9/30/2025
31.1.21 671 9/22/2025
31.1.20 686 9/16/2025
31.1.19 1,778 9/11/2025
31.1.18 442 9/10/2025
31.1.17 418 9/5/2025
30.2.7 1,146 8/25/2025
30.2.6 667 8/18/2025
30.2.5 1,371 8/13/2025
30.2.4 3,163 8/7/2025
30.1.42 1,071 7/28/2025
30.1.41 907 7/22/2025
30.1.40 659 7/14/2025
30.1.39 436 7/8/2025
30.1.38 768 7/1/2025
30.1.37 900 6/25/2025
29.2.11 7,169 6/16/2025
29.2.10 4,584 6/9/2025
29.2.9 2,597 6/5/2025
29.2.8 1,338 6/3/2025
29.2.7 1,496 5/26/2025
29.2.5 794 5/21/2025
29.2.4 849 5/14/2025
29.1.41 980 5/5/2025
29.1.40 970 4/28/2025
29.1.39 3,245 4/21/2025
29.1.38 1,289 4/14/2025
29.1.37 1,034 4/8/2025
29.1.35 5,708 4/1/2025
29.1.33 10,135 3/25/2025
28.2.12 904 3/19/2025
28.2.11 1,365 3/10/2025
28.2.9 799 3/4/2025
28.2.7 837 2/25/2025
28.2.6 2,251 2/17/2025
28.2.5 1,143 2/11/2025
28.2.4 2,754 2/4/2025
28.2.3 20,933 1/29/2025
28.1.41 3,595 1/20/2025
28.1.39 589 1/13/2025
28.1.38 2,320 1/7/2025
28.1.37 522 12/31/2024
28.1.36 948 12/23/2024
28.1.35 546 12/18/2024
28.1.33 1,559 12/12/2024
27.2.5 1,506 12/2/2024
27.2.4 540 11/26/2024
27.2.3 482 11/22/2024
27.2.2 1,052 11/15/2024
27.1.58 973 11/4/2024
27.1.57 1,234 10/28/2024
27.1.56 6,678 10/23/2024
27.1.55 953 10/21/2024
27.1.53 1,125 10/14/2024
27.1.52 3,686 10/7/2024
27.1.51 4,246 9/30/2024
27.1.50 4,733 9/23/2024
27.1.48 1,093 9/18/2024
26.2.14 9,913 9/9/2024
26.2.13 917 9/5/2024
26.2.12 3,009 9/2/2024
26.2.11 660 8/27/2024
26.2.10 1,466 8/19/2024
26.2.9 1,027 8/12/2024
26.2.8 2,587 8/5/2024
26.2.7 2,227 7/29/2024
26.2.5 450 7/26/2024
26.2.4 642 7/24/2024
26.1.42 13,195 7/15/2024
26.1.41 13,667 7/8/2024
26.1.40 2,471 7/1/2024
26.1.39 1,563 6/24/2024
26.1.38 835 6/18/2024
26.1.35 4,037 6/11/2024
25.2.7 6,157 6/3/2024
25.2.6 2,383 5/28/2024
25.2.5 4,290 5/21/2024
25.2.4 3,715 5/14/2024
25.2.3 6,421 5/8/2024
25.1.42 1,051 4/29/2024
25.1.41 1,242 4/23/2024
25.1.40 1,479 4/15/2024
25.1.39 7,135 4/8/2024
25.1.38 3,887 4/1/2024
25.1.37 786 3/26/2024
25.1.35 1,951 3/15/2024
24.2.9 3,281 3/4/2024
24.2.8 1,215 2/26/2024
24.2.7 1,584 2/19/2024
24.2.6 1,444 2/14/2024
24.2.5 1,357 2/12/2024
24.2.4 1,745 2/5/2024
24.2.3 3,244 1/31/2024
24.1.47 2,743 1/22/2024
24.1.46 2,696 1/16/2024
24.1.45 2,493 1/8/2024
24.1.44 3,043 1/2/2024
24.1.43 2,202 12/27/2023
24.1.41 8,749 12/18/2023
23.2.7 3,215 12/6/2023
23.2.6 2,801 11/28/2023
23.2.5 2,383 11/23/2023
23.2.4 4,002 11/20/2023
23.1.44 8,307 11/6/2023
23.1.43 2,529 10/30/2023
23.1.42 2,635 10/23/2023
23.1.41 2,771 10/16/2023
23.1.40 2,676 10/10/2023
23.1.39 3,724 10/4/2023
23.1.38 8,968 9/26/2023
23.1.36 4,028 9/15/2023
22.2.12 3,670 9/5/2023
22.2.11 4,249 8/28/2023
22.2.10 3,189 8/22/2023
22.2.9 3,320 8/14/2023
22.2.8 3,958 8/7/2023
22.2.7 3,351 8/2/2023
22.2.5 3,743 7/27/2023
22.1.39 71,615 7/18/2023
22.1.38 3,508 7/11/2023
22.1.37 9,780 7/3/2023
22.1.36 3,925 6/28/2023
22.1.34 6,376 6/21/2023
21.2.10 4,624 6/12/2023
21.2.9 4,380 6/6/2023
21.2.8 5,817 5/30/2023
21.2.6 3,648 5/22/2023
21.2.5 34,056 5/15/2023
21.2.4 10,289 5/9/2023
21.2.3 4,085 5/3/2023
21.1.41 6,872 4/19/2023
21.1.39 4,667 4/10/2023
21.1.38 6,838 4/3/2023
21.1.37 8,566 3/29/2023
21.1.35 6,493 3/23/2023
20.4.0.54 12,224 3/13/2023
20.4.0.53 5,233 3/7/2023
20.4.0.52 6,815 2/28/2023
20.4.0.51 4,783 2/21/2023
20.4.0.50 5,755 2/14/2023
20.4.0.49 6,790 2/7/2023
20.4.0.48 5,879 2/1/2023
20.4.0.44 13,766 1/18/2023
20.4.0.43 7,109 1/10/2023
20.4.0.42 7,413 1/4/2023
20.4.0.41 7,491 12/29/2022
20.4.0.40 6,704 12/28/2022
20.4.0.38 8,220 12/21/2022
20.3.0.61 8,836 12/12/2022
20.3.0.60 9,441 12/6/2022
20.3.0.59 11,883 11/29/2022
20.3.0.58 7,606 11/22/2022
20.3.0.57 7,330 11/15/2022
20.3.0.56 8,938 11/8/2022
20.3.0.52 7,647 10/27/2022
20.3.0.50 12,699 10/18/2022
20.3.0.49 12,291 10/11/2022
20.3.0.48 18,465 10/5/2022
20.3.0.47 10,575 9/29/2022
20.2.0.50 8,769 9/20/2022
20.2.0.49 9,801 9/13/2022
20.2.0.48 8,602 9/6/2022
20.2.0.46 7,452 8/30/2022
20.2.0.45 10,690 8/23/2022
20.2.0.44 14,311 8/16/2022
20.2.0.43 19,085 8/8/2022
20.2.0.40 11,085 7/26/2022
20.2.0.39 7,562 7/19/2022
20.2.0.38 12,786 7/12/2022
20.2.0.36 8,910 6/30/2022
20.1.0.61 8,818 6/20/2022
20.1.0.60 7,558 6/14/2022
20.1.0.59 8,614 6/6/2022
20.1.0.58 7,718 5/31/2022
20.1.0.57 7,912 5/23/2022
20.1.0.56 7,888 5/17/2022
20.1.0.55 8,941 5/12/2022
20.1.0.52 7,770 5/3/2022
20.1.0.51 9,088 4/26/2022
20.1.0.50 7,876 4/19/2022
20.1.0.48 14,797 4/12/2022
20.1.0.47 10,214 4/4/2022
19.4.0.56 17,117 3/14/2022
19.4.0.55 7,580 3/8/2022
19.4.0.54 8,750 2/28/2022
19.4.0.53 11,758 2/22/2022
19.4.0.52 6,865 2/15/2022
19.4.0.50 9,179 2/8/2022
19.4.0.48 9,209 1/31/2022
19.4.0.47 6,790 1/25/2022
19.4.0.43 7,676 1/18/2022
19.4.0.42 9,506 1/11/2022
19.4.0.41 13,352 1/4/2022
19.4.0.40 6,127 12/28/2021
19.4.0.38 6,468 12/17/2021
19.3.0.59 6,402 12/14/2021
19.3.0.57 6,455 12/7/2021
19.3.0.56 8,124 11/29/2021
19.3.0.55 6,976 11/23/2021
19.3.0.54 6,147 11/17/2021
19.3.0.53 6,122 11/12/2021
19.3.0.48 6,978 11/3/2021
19.3.0.47 8,333 10/26/2021
19.3.0.46 5,078 10/19/2021
19.3.0.45 17,408 10/12/2021
19.3.0.44 7,407 10/5/2021
19.3.0.43 9,005 9/30/2021
19.2.0.62 8,599 9/13/2021
19.2.0.60 7,158 9/7/2021
19.2.0.59 14,034 8/30/2021
19.2.0.57 6,789 8/24/2021
19.2.0.56 7,490 8/17/2021
19.2.0.55 7,767 8/11/2021
19.2.0.51 10,772 8/2/2021
19.2.0.49 9,130 7/26/2021
19.2.0.48 6,445 7/19/2021
19.2.0.47 8,441 7/13/2021
19.2.0.46 17,954 7/6/2021
19.2.0.44 7,500 6/30/2021
19.1.0.69 8,558 6/14/2021
19.1.0.67 6,683 6/7/2021
19.1.0.66 7,967 5/31/2021
19.1.0.65 9,998 5/24/2021
19.1.0.64 8,863 5/19/2021
19.1.0.63 11,463 5/13/2021
19.1.0.59 7,379 5/3/2021
19.1.0.58 8,857 4/26/2021
19.1.0.57 6,496 4/20/2021
19.1.0.56 6,473 4/13/2021
19.1.0.55 7,335 4/6/2021
19.1.0.54 6,979 3/30/2021
18.4.0.49 7,270 3/22/2021
18.4.0.48 14,850 3/16/2021
18.4.0.47 7,243 3/9/2021
18.4.0.46 8,838 3/2/2021
18.4.0.44 8,215 2/23/2021
18.4.0.43 25,036 2/15/2021
18.4.0.42 15,563 2/9/2021
18.4.0.41 19,755 2/2/2021
18.4.0.39 6,811 1/28/2021
18.4.0.35 8,085 1/19/2021
18.4.0.34 6,532 1/12/2021
18.4.0.33 15,320 1/4/2021
18.4.0.32 6,596 12/30/2020
18.4.0.31 9,059 12/22/2020
18.4.0.30 6,992 12/17/2020
18.3.0.53 13,886 12/8/2020
18.3.0.52 6,525 11/30/2020
18.3.0.51 6,639 11/23/2020
18.3.0.50 9,221 11/17/2020
18.3.0.48 8,401 11/10/2020
18.3.0.47 7,492 11/5/2020
18.3.0.44 7,118 10/27/2020
18.3.0.42 6,714 10/20/2020
18.3.0.40 8,342 10/12/2020
18.3.0.38 7,166 10/7/2020
18.3.0.35 21,595 10/1/2020
18.2.0.59 10,884 9/22/2020
18.2.0.58 11,583 9/15/2020
18.2.0.57 6,684 9/8/2020
18.2.0.56 6,865 9/1/2020
18.2.0.55 9,460 8/25/2020
18.2.0.54 6,922 8/18/2020
18.2.0.48 7,465 8/4/2020
18.2.0.47 15,558 7/28/2020
18.2.0.46 6,858 7/21/2020
18.2.0.45 7,794 7/14/2020
18.2.0.44 9,607 7/6/2020
18.1.0.59 11,579 6/23/2020
18.1.0.57 7,376 6/16/2020
18.1.0.56 7,521 6/9/2020
18.1.0.55 10,553 6/2/2020
18.1.0.54 7,271 5/27/2020
18.1.0.53 6,945 5/19/2020
18.1.0.52 7,057 5/13/2020
18.1.0.48 7,222 5/5/2020
18.1.0.46 7,206 4/28/2020
18.1.0.45 8,579 4/21/2020
18.1.0.44 7,782 4/14/2020
18.1.0.43 10,299 4/7/2020
18.1.0.42 10,354 4/1/2020
18.1.0.36-beta 5,668 3/19/2020
17.4.0.55 15,906 3/10/2020
17.4.0.53 11,228 3/3/2020
17.4.0.51 7,425 2/25/2020
17.4.0.50 7,124 2/18/2020
17.4.0.49 7,176 2/11/2020
17.4.0.47 21,851 2/5/2020
17.4.0.46 7,873 1/30/2020
17.4.0.44 7,355 1/21/2020
17.4.0.43 8,300 1/14/2020
17.4.0.41 7,099 1/7/2020
17.4.0.40 8,890 12/24/2019
17.4.0.39 9,535 12/17/2019
17.3.0.34 7,581 12/10/2019
17.3.0.33 7,087 12/4/2019
17.3.0.30 7,360 12/3/2019
17.3.0.29 7,071 11/26/2019
17.3.0.28 8,511 11/19/2019
17.3.0.27 7,254 11/12/2019
17.3.0.26 13,794 11/5/2019
17.3.0.21 6,960 10/29/2019
17.3.0.19 8,736 10/22/2019
17.3.0.17 13,459 10/15/2019
17.3.0.14 11,030 10/3/2019
17.3.0.9-beta 5,723 9/20/2019
17.2.0.51 17,574 9/10/2019
17.2.0.49 6,923 9/3/2019
17.2.0.47 7,010 8/27/2019
17.2.0.46 8,198 8/22/2019
17.2.0.41 14,250 8/13/2019
17.2.0.40 6,939 8/6/2019
17.2.0.39 10,037 7/30/2019
17.2.0.36 9,410 7/23/2019
17.2.0.35 7,111 7/17/2019
17.2.0.34 7,350 7/11/2019
17.2.0.28-beta 5,950 6/27/2019
17.1.0.53 10,246 6/25/2019
17.1.0.52 7,768 6/18/2019
17.1.0.51 9,050 6/11/2019
17.1.0.50 7,672 6/4/2019
17.1.0.49 7,243 5/28/2019
17.1.0.48 7,762 5/21/2019
17.1.0.47 7,745 5/14/2019
17.1.0.44 6,989 5/7/2019
17.1.0.43 7,796 4/30/2019
17.1.0.42 7,286 4/23/2019
17.1.0.41 9,034 4/16/2019
17.1.0.40 7,284 4/9/2019
17.1.0.38 9,326 3/29/2019
17.1.0.32-beta 7,546 3/13/2019
16.4.0.54 13,684 2/19/2019
16.4.0.53 7,198 2/13/2019
16.4.0.52 13,042 2/5/2019
16.4.0.48 10,252 1/22/2019
16.4.0.47 9,280 1/16/2019
16.4.0.46 7,949 1/8/2019
16.4.0.44 7,433 12/24/2018
16.4.0.42 9,801 12/17/2018
16.4.0.40-beta 5,841 12/10/2018
16.3.0.36 8,226 11/27/2018
16.3.0.35-beta 5,688 11/23/2018
16.3.0.29 15,135 10/30/2018
16.3.0.21 12,460 9/21/2018