SelectPdf can be used as a general purpose PDF library in any .NET Core application. It offers the possibility to create or modify existing documents, add new elements (like text, html, images, shapes), change pdf document security settings, merge or split existing documents and many more. Select.Pdf also contains a state of the art html to pdf converter that supports the latest html and css versions. General Features: Generate PDF documents from scratch, Load and modify existing PDF documents, Set PDF document properties, Set PDF document viewer preferences, Set pdf page settings (size, orientation, margins), Set PDF document security settings (user password, permissions), Support for a large variety of pdf elements: text, image, html, shapes, links, bookmarks, etc, Pdf templates to repeat elements in all pages of the generated PDF document, Custom headers and footers for the generated pdf document, Watermarks and stamps, Support for page numbering, Merge pdf documents, Split pdf documents, Extract pages from existing pdf documents, Digital signatures, Compressed pdf documents, Support for pdf open actions (open to a specific page, execute javascript), Modify color space, Support for PDF/A, PDF/X standards, Advanced security settings (RC4 or AES encryption algorithms, up to 256 bits encryption keys), Form filling, PDF portfolios management. Html to Pdf Converter Features: Convert any web page to pdf, Convert any raw html string to pdf, Set pdf page settings (page size, page orientation, page margins), Resize content during conversion to fit the pdf page, Set pdf document properties, Set pdf viewer preferences, Set pdf security (passwords, permissions), Convert multiple web pages into the same pdf document, Set conversion delay and web page navigation timeout, Custom headers and footers, Support for html in headers and footers, Possibility to have different headers and footers for specific pages, Automatic and manual page breaks and many more.
License
—
Deps
3
Install Size
—
Vulns
✓ 0
Published
May 23, 2025
$ dotnet add package Select.Pdf.NetCore.BlinkSelectPdf for .NET is a professional PDF library that can be used for creating, writing, editing, handling and reading PDF files without any external dependencies within .NET applications. Using this .NET PDF library, you can implement rich capabilities to create PDF files from scratch or process existing PDF documents entirely through C#/VB.NET without installing Adobe Acrobat.
Many rich features can be supported by the .NET PDF API, such as security setting (including digital signatures), PDF merge/split, text, html and image drawing into pdf and many more. Besides, SelectPdf for .NET component can be used to easily convert HTML to PDF with C#/VB.NET in high quality. SelectPdf can also extract text from existing PDF documents or search for text in PDF documents and can convert PDF pages to raster images (PNG, BMP, JPEG, TIFF).
This is a package for .NET 8, .NET 7, .NET 6, .NET 5, .NET Core, .NET 4.7.2, .NET 4.6.1. Use this package if you need to convert from HTML to PDF with Blink rendering engine. SelectPdf only works on Windows. SelectPdf works on Azure cloud, including Azure Web Apps (Basic plan or above) with some limitations.
Online demo MVC C#: https://selectpdf.com/demo-mvc/
Online demo MVC Vb.Net: https://selectpdf.com/demo-mvc-vb/
Online documentation: https://selectpdf.com/pdf-library/
SelectPdf is very easy to use. For example, the following code will create a pdf document with a simple text in it:
SelectPdf.PdfDocument doc = new SelectPdf.PdfDocument();
SelectPdf.PdfPage page = doc.AddPage();
SelectPdf.PdfFont font = doc.AddFont(SelectPdf.PdfStandardFont.Helvetica);
font.Size = 20;
SelectPdf.PdfTextElement text = new SelectPdf.PdfTextElement(50, 50, "Hello world!", font);
page.Add(text);
doc.Save("test.pdf");
doc.Close();
With SelectPdf is also very easy to convert any web page to a pdf document using Blink rendering engine. The code is as simple as this:
SelectPdf.HtmlToPdf converter = new SelectPdf.HtmlToPdf();
converter.Options.RenderingEngine = SelectPdf.RenderingEngine.Blink;
SelectPdf.PdfDocument doc = converter.ConvertUrl("https://selectpdf.com");
doc.Save("test.pdf");
doc.Close();
When SelectPdf is installed into your project, a reference to Select.Pdf.dll is created. Besides this assembly, several additional files are needed by SelectPdf:
If you are using a newer NuGet client (newer Visual Studio - 2017+) and a newer project type that uses PackageReference,
these files are automatically copied to your project.
If you are using older Visual Studio versions or older project types, these files will not be copied automatically to your project.
IMPORTANT: If you do not see these files into your project, you need to manually copy them from the packages folder located next to your solution.
You will find them in \packages\Select.Pdf.NetCore.25.2.0\contentFiles\any\any\ folder.
Copy all the files into your project bin folder (\bin\Release, \bin\Debug), next to SelectPdf library main assembly - Select.Pdf.dll.
IMPORTANT: To have these files included when you publish or deploy your application, set in Visual Studio:
For complete product information, take a look at SelectPdf website.