IronPdf 2022.5.5596
Prefix ReservedSee the version list below for details.
dotnet add package IronPdf --version 2022.5.5596
NuGet\Install-Package IronPdf -Version 2022.5.5596
<PackageReference Include="IronPdf" Version="2022.5.5596" />
paket add IronPdf --version 2022.5.5596
#r "nuget: IronPdf, 2022.5.5596"
// Install IronPdf as a Cake Addin #addin nuget:?package=IronPdf&version=2022.5.5596 // Install IronPdf as a Cake Tool #tool nuget:?package=IronPdf&version=2022.5.5596
IronPDF helps C# Software Engineers to create, edit and extract PDF content in .NET projects.
- C# HTML to PDF for .NET 5, Core, Standard, and Framework
- Work with PDFs in C# using HTML, MVC, ASPX, and images
- Generate, Edit, Read and Secure PDF Documents
Generate PDFs with Pixel Perfect Chrome HTML to PDF Rendering
The Iron PDF library takes the frustration out of generating PDF documents by not relying on proprietary APIs. “Html-To-Pdf” renders pixel-perfect PDFs from open standard document types: HTML, JS, CSS, JPG, PNG, GIF, and SVG. In short, it uses the skills that developers already possess.
Fully Supports:
Windows, MacOS, Linux, Azure, Docker and AWS
Licensing & Support available
For code examples, tutorials and documentation visit https://ironpdf.com/ Email: developers@ironsoftware.com
Get Started Code Example
using IronPdf;
var Renderer = new IronPdf.ChromePdfRenderer();
Renderer.RenderHtmlAsPdf("<h1>Html with CSS and Images</h1>").SaveAs("pixel-perfect.pdf");
/****** Advanced ******/
// Load external html assets: images, css and javascript.
// An optional BasePath 'C:\site\assets\' is set as the file location to load assets from
var PDF = Renderer.RenderHtmlAsPdf("<img src='icons/iron.png'>", @"C:\site\assets\");
PDF.SaveAs("html-with-assets.pdf");
Documentation Links
Code Samples : https://ironpdf.com/examples/
MSDN Class Reference : https://ironpdf.com/object-reference/api/
Tutorials : https://ironpdf.com/tutorials/
Licensing : https://ironpdf.com/licensing/
Support : developers@ironsoftware.com
Compatibility
Welcome to the cutting edge of .NET PDF rendering and manipulation technology with IronPDF 2021 now featuring Chrome identical HTML rendering with full support for:
C#, F#, and VB.NET
.Net 5, Core 2x & 3x, Standard 2, and Framework 4x
Console, Web, & Desktop Apps
Windows, Linux (Debian, CentOS, Ubuntu), MacOs, Docker, and Azure
Microsoft Visual Studio or Jetbrains ReSharper & Rider
Generating PDFs
Generate PDFs in C# with HTML, MVC, ASPX, & images.
HTML to PDF using HTML Files, Strings, URLs, ASPX, Razor and MVC Views
Image to PDF and PDF to Image
Supports Base 64 Encoding, Base URLs, and Custom File Paths
Website & System Logins, Custom User Agents, Proxies, Cookies, HTTP Headers, Async & Multithreading
Formatting PDFs
Supports HTML, JS and CSS Standards using modern Chrome Rendering
HTML (5 and below), CSS (Screen & Print), Images (jpg, png, gif, tiff, svg, bmp), JavaScript (+ Render Delays), Fonts (Web & Icon)
Use Responsive Layouts, Set Virtual Viewports and Zoom
Apply Headers & Footers, Page Numbers, and Page Breaks
Page Settings for Custom Paper Size, Orientation & Rotation, Margins (mm, inch, & zero), Color & Grayscale, Resolution & JPEG Quality
International Language Support with UTF-8 HTML Encoding
Manipulating PDFs
Edit, Read and Secure PDF Documents
Merge & Split PDFs. Add / Duplicate / Delete Pages
Add New HTML Content, Headers & Footers, Stamp & Watermark, Backgrounds & Foregrounds, Annotations, Outlines & Bookmarks
Create, Edit, and Fill PDF Forms
Apply PDF Metadata, Permissions & Passwords, Digital Signatures
Print PDFs to Physical Printers
Read Text and Images from PDFs
You can email us at developers@ironsoftware.com for support directly from our code team. We offer licensing and extensive support for commercial deployment projects.
Installing IronPDF 2021
=============================================================
To Install:
PM> Install-Package IronPdf
Upgrade Guide for Existing Users
IronPdf updates all usages of your existing HtmlToPdf and AspToPdf code to use our new Chrome Rendering Engine.
Remove any reference to IronPdf.Threading which is now legacy software. The IronPdf main package is threading and async compatible!
Try out the new 2021 API
We haven’t broken the IronPDF API you are using, it will remain!
However, the old style is being superseded by a better one to give you more control. For examples you now have Print options and Http Login controls specific to your renderer
using IronPdf;
//...
ChromePdfRenderer Renderer = new ChromePdfRenderer();
Renderer.RenderingOptions.FitToPaper = true;
Renderer.RenderingOptions.CssMediaType = IronPdf.Rendering.PdfCssMediaType.Screen;
Renderer.RenderingOptions.PrintHtmlBackgrounds = true;
Renderer.RenderingOptions.CreatePdfFormsFromHtml = true;
var doc = Renderer.RenderHtmlAsPdf(“<h1>Hello world!</h1>“);
//var doc = Renderer.RenderUrlAsPdf(“https://www.google.com/”);
//var doc = Renderer.RenderHtmlFileAsPdf(“example.html”);
doc.SaveAs(“google_chrome.pdf”);
Pixel perfect Chrome rendering!
This example will give you PDFs which are pixel perfect to the latest chrome desktop browser’s “print to pdf” functionality:
ChromePdfRenderer Renderer = new ChromePdfRenderer();
Renderer.RenderingOptions.CssMediaType = IronPdf.Rendering.PdfCssMediaType.Print;
Renderer.RenderingOptions.PrintHtmlBackgrounds = false;
Renderer.RenderingOptions.CreatePdfFormsFromHtml = false;
var doc = Renderer.RenderUrlAsPdf(“https://www.google.com/”);
However...we would recommend using improved features such as:
Using screen stylesheets to print PDFs which are less fiddly to develop and more true to existing web assets.
Responsive layout support
Creating PDF Forms from your HTML form elements.
ChromePdfRenderer Renderer = new ChromePdfRenderer();
Renderer.RenderingOptions.CssMediaType = IronPdf.Rendering.PdfCssMediaType.Screen;
Renderer.RenderingOptions.PrintHtmlBackgrounds = true;
Renderer.RenderingOptions.CreatePdfFormsFromHtml = true;
Renderer.RenderingOptions.ViewportWidth = 1080 ; //px
var doc = Renderer.RenderUrlAsPdf(“https://www.google.com/”);
Comparing Chrome and WebKit
You can use the IronPdf.Rendering.AdaptivePdfRenderer to switch between the ‘Chrome’ and ‘WebKit’ rendering at an instance level if you preferred the old rendering style for some of your application, or dont want to break unit tests.
using IronPdf;
//...
IronPdf.Rendering.AdaptivePdfRenderer Renderer = new IronPdf.Rendering.AdaptivePdfRenderer();
Renderer.RenderingOptions.RenderingEngine = IronPdf.Rendering.PdfRenderingEngine.Chrome; //switch between Chrome and WebKit here
var doc = Renderer.RenderHtmlAsPdf(“<h1>Hello world!</h1>“);
Use every CPU core available!
Multithreading and Async support for our Chrome rendering engine is in a different league to previous build.
For enterprise grade multi-threading use our Chrome in your existing threads and it will work. For web applications this also takes zero setup.
For batch processing for HtmlToPdf we suggest using the built in .NETParallel.ForEach
We love async and have provided Async variants of methods such as ChromePdfRenderer.RenderHtmlAsPdf
MSDN Style Class Reference
Explore the IronPDF API in the left navigation of this page.
Popular Links include:
IronPdf Namespace Index of all IronPdf Classes
IronPdf.ChromePdfRenderer Html to PDF generator
IronPdf.ChromePdfRenderOptions Html to PDF generation settings
IronPdf.AspxToPdf ASPX to PDF generator
IronPdf.ImageToPdfConverter Image to PDF generator
IronPdf.PdfDocument A class to open, manipulate, extract data and save PDF files
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.0
- IronPdf.Native.Chrome.Windows (>= 2022.5.5590)
- IronPdf.Slim (>= 2022.5.5596)
-
.NETStandard 2.0
- IronPdf.Native.Chrome.Windows (>= 2022.5.5590)
- IronPdf.Slim (>= 2022.5.5596)
NuGet packages (22)
Showing the top 5 NuGet packages that depend on IronPdf:
Package | Downloads |
---|---|
PDF.Core
IronPDF for .Net Core 2.x and 3.x allows developers to create, edit and extract PDF content within .Net Core Applications & Websites. The Iron PDF Core library takes the frustration out of generating PDF documents by not relying on proprietary APIs. "Html-To-Pdf" renders pixel-perfect PDFs from open standard document types: HTML, JS, CSS, JPG, PNG, GIF, and SVG. In short, it uses skills that developers already posses. Key features include: * "Html-To-Pdf" creates PDF files from HTML, CSS, JavaScript, and Images. * "Url-To-Pdf" generates PDFs from existing html pages by simply providing their URL. * "Image-To-PDF" creates PDF documents from image files. * PDF to Image functionality can render PDF documents to image files. * Extract text and images from existing PDFs. * Create, Fill and read data from PDF forms. * Merge, Split and Manipulate PDFs to edit PDF structure and content. * Add Page Numbers, Headers, Footers, Watermarks, Tables, Text and Image Assets. * Edit, Stamp and Watermark PDF files with text, images and HTML * Apply HTML or PDF backgrounds to PDF pages * Sign PDF files with digital certificates IronPDF can be used within ASP.NET projects, MVC, Web Services, Console & Desktop Applications. Requires .Net Core 2.x, 3.x or higher. Supports Windows, Ubuntu, Debian, CentOS, BSD, MacOS and Azure platforms. Licensing & Support available for commercial deployments. For code examples, documentation & more visit http://ironpdf.com For support please email us at developers@ironsoftware.com |
|
BopsGeneralUtilities
All implementations for Bops features |
|
Bastion.Recipients.Api
Package Description |
|
IronPdf.Threading
Multithreading Plugin Assets for the IronPDF Nuget Package. Allows IronPDF to render PDF documents from HTML using all available system cores. https://ironpdf.com/ |
|
Goldfield.HtmlToPdf.IronPdf
Package Description |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on IronPdf:
Repository | Stars |
---|---|
denys-olleik/accounting
Implementation of a forward-only double-entry accounting method with a relational database.
|
|
devmentors/Cine
Modular monolith in .NET Core
|
Version | Downloads | Last updated |
---|---|---|
2024.11.4 | 1,223 | 11/6/2024 |
2024.10.8 | 28,814 | 10/11/2024 |
2024.9.3 | 45,649 | 9/9/2024 |
2024.8.3 | 69,134 | 7/30/2024 |
2024.7.8 | 57,763 | 7/5/2024 |
2024.6.1 | 67,114 | 6/4/2024 |
2024.5.2 | 85,415 | 4/29/2024 |
2024.4.2 | 54,627 | 4/5/2024 |
2024.3.4 | 75,134 | 3/11/2024 |
2024.2.2 | 110,637 | 1/29/2024 |
2024.1.20 | 48,356 | 1/9/2024 |
2023.12.6 | 154,596 | 11/27/2023 |
2023.11.8 | 83,488 | 11/13/2023 |
2023.11.7 | 51,699 | 11/1/2023 |
2023.10.3 | 114,260 | 10/3/2023 |
2023.9.8 | 68,400 | 9/13/2023 |
2023.8.6 | 153,890 | 7/31/2023 |
2023.7.4 | 94,357 | 7/3/2023 |
2023.6.10 | 137,913 | 6/2/2023 |
2023.5.8 | 167,785 | 5/1/2023 |
2023.4.4 | 736,082 | 3/30/2023 |
2023.3.2 | 97,938 | 3/9/2023 |
2023.2.4 | 77,065 | 2/28/2023 |
2023.1.11416 | 211,848 | 1/9/2023 |
2022.12.11113 | 86,154 | 12/23/2022 |
2022.11.10347 | 353,014 | 11/9/2022 |
2022.9.9056 | 262,023 | 9/14/2022 |
2022.8.8138 | 100,884 | 8/16/2022 |
2022.8.7894 | 63,830 | 7/28/2022 |
2022.7.6986 | 142,295 | 6/30/2022 |
2022.6.6115 | 146,266 | 6/6/2022 |
2022.5.5596 | 65,396 | 5/2/2022 |
2022.4.5575 | 34,915 | 4/25/2022 |
2022.4.5455 | 46,466 | 4/12/2022 |
2022.3.5084 | 146,466 | 3/8/2022 |
2022.2.4887 | 116,248 | 2/17/2022 |
2022.1.4599 | 198,964 | 1/11/2022 |
2021.12.4495 | 153,622 | 12/7/2021 |
2021.12.4401 | 31,903 | 12/1/2021 |
2021.11.4257 | 54,980 | 11/15/2021 |
2021.9.3737 | 208,037 | 9/20/2021 |
2021.9.3689 | 48,571 | 9/7/2021 |
2021.9.3678 | 33,542 | 8/26/2021 |
2021.3.1 | 1,110,149 | 3/8/2021 |
2021.1.29 | 116,270 | 1/29/2021 |
2020.12.3 | 191,726 | 12/18/2020 |
2020.12.2 | 238,785 | 12/7/2020 |
2020.10.3.3 | 572,516 | 10/14/2020 |
2020.10.2 | 84,221 | 10/7/2020 |
2020.9.0 | 401,059 | 9/1/2020 |
2020.8.1 | 55,690 | 8/14/2020 |
2020.8.0 | 71,809 | 8/1/2020 |
2020.7.1 | 66,745 | 7/15/2020 |
2020.6.0 | 281,214 | 6/1/2020 |
2020.3.2 | 361,419 | 3/25/2020 |
2020.3.1.1 | 54,501 | 3/11/2020 |
2020.3.0 | 38,736 | 3/2/2020 |
2020.1.0 | 426,253 | 1/9/2020 |
2019.8.9 | 117,015 | 12/3/2019 |
2019.7.0 | 118,527 | 10/2/2019 |
2019.6.5.41 | 88,674 | 8/28/2019 |
5.2.0.1 | 236,262 | 3/22/2019 |
5.0.5.2 | 28,579 | 2/14/2019 |
4.4.9 | 699,656 | 6/15/2018 |
4.4.8 | 25,641 | 5/25/2018 |
4.4.6.2 | 43,195 | 1/22/2018 |
4.4.5 | 54,217 | 9/6/2017 |
4.4.1.2 | 34,553 | 6/6/2017 |
4.4.0.6 | 7,692 | 1/18/2017 |
4.4.0 | 4,201 | 12/5/2016 |
4.2.2 | 21,598 | 2/22/2016 |
4.1.0 | 3,623 | 10/31/2015 |
4.0.0 | 28,734 | 9/3/2015 |
* Fixes bug where HtmlStamp positioning was not working
* Fixes bug where AddBackground was incorrectly adding to foreground
* Fixes bug where EnableCookies was not working as intended
* Fixes bug causing an ArgumentNullException during the editing of a PDF document
* Implements handling of ChromePdfRenderer exceptions without the need to restart
* Improves documentation (IntelliSense)