🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

Select.Pdf.x64

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Select.Pdf.x64

SelectPdf can be used as a general purpose PDF library in any .NET application. This is a version optimized for x64 systems, to take advantage of the better memory allocation available here. 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. SelectPdf provides a general package that works on both 32 and 64 bit systems. The current package is optimized and only works on 64 bit systems. 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.

nugetNuGet
Version
26.1.0
Version published
Maintainers
1
Created
Source

Thank you for using Select.Pdf for .NET.

Online demo C#: https://selectpdf.com/demo/ Online demo Vb.Net: https://selectpdf.com/demo-vb/ Online documentation: https://selectpdf.com/pdf-library/

Select.Pdf 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 Select.Pdf is also very easy to convert any web page to a pdf document. The code is as simple as this:

        SelectPdf.HtmlToPdf converter = new SelectPdf.HtmlToPdf();
        SelectPdf.PdfDocument doc = converter.ConvertUrl("http://selectpdf.com");
        doc.Save("test.pdf");
        doc.Close();

Important: This package works for .NET Framework up to version 4.5. To use newer .NET Framework versions, .NET Core, .NET 5 - .NET 10 use the following package: https://www.nuget.org/packages/Select.Pdf.NetCore.x64/

For complete product information, take a look at https://selectpdf.com. For support, contact us at support@selectpdf.com.

Keywords

pdf

FAQs

Package last updated on 19 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts