SautinSoft.Pdf 2026年7月1日

dotnet add package SautinSoft.Pdf --version 2026年7月1日
 
NuGet\Install-Package SautinSoft.Pdf -Version 2026年7月1日
 
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="SautinSoft.Pdf" Version="2026年7月1日" />
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SautinSoft.Pdf" Version="2026年7月1日" />
 
Directory.Packages.props
<PackageReference Include="SautinSoft.Pdf" />
 
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 SautinSoft.Pdf --version 2026年7月1日
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: SautinSoft.Pdf, 2026年7月1日"
 
#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 SautinSoft.Pdf@2026年7月1日
 
#: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=SautinSoft.Pdf&version=2026年7月1日
 
Install as a Cake Addin
#tool nuget:?package=SautinSoft.Pdf&version=2026年7月1日
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Nuget Nuget GitHub

PDF .Net is a .NET component built to allow developers to create PDF documents, whether simple or complex, on the fly programmatically.

pdf

PDF .Net allows developers to insert tables, graphs, images, hyperlinks, custom fonts - and more - into PDF documents.

===============================

Top Features

===============================

  • Merge, split, and create PDF files.

  • Convert PDF files to image, such as PNG, JPEG, GIF, BMP, TIFF.

  • Extract elements from PDF.

  • View PDF files in WPF applications.

  • Annotate PDF pages with hyperlinks.

  • Fill in, flatten, read, and export interactive forms.

  • Read, write, and update PDF files.

  • Get, create, or edit bookmarks (outlines) and document properties.

  • Extract images from PDF files and OCR text from scanned PDFs.

  • Add text, images, shapes (paths), form XObjects, content groups, marked content, and format the content.

  • Encrypt and digitally sign PDF files. Clone or import pages between PDF documents.

  • Add watermarks, headers, footers, and viewer preferences to PDF pages.

  • Get, create, remove, or reorder pages.

Code samples right here: https://github.com/SautinSoft/SautinSoft.Pdf.Examples

Supported PDF versions:

===============================

  • PDF versions 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, PDF/A, 2.0.

Fonts:

===============================

  • A lot of core fonts.
  • Type 1 fonts.
  • TrueType fonts.
  • Type 3 fonts.
  • CJK fonts.
  • Unicode support

Platforms:

===============================

  • .NET Framework 4.6.2. and higher
  • .NET 6 and higher

OS Support:

===============================

  • All versions of Windows (32-bit and 64-bit).
  • All versions of Linux (with .NET inside / 32-bit and 64-bit).
  • Cloud Computing Services: AWS, Azure, Google Cloud, etc.

Getting Started with PDF .Net

=============================== Are you ready to give PDF .NET a try? Simply execute Install-Package sautinsoft.pdf from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have PDF .NET and want to upgrade the version, please execute Update-Package sautinsoft.pdf to get the latest version.

Convert PDF document

// Load a PDF document.
using (var document = PdfDocument.Load(@"..\..\..\simple text.pdf"))
 { 
 // Create image save options.
 var imageOptions = new ImageSaveOptions(ImageSaveFormat.Jpeg)
 { PageIndex = 0,
 // PageNumber = 0, // Select the first PDF page.
 Width = 1240 // Set the image width and keep the aspect ratio.
 };
 // Save a PDF document to a JPEG file.
 document.Save("Output.jpg", imageOptions);
 }

PDF. Document properties

using (var document = PdfDocument.Load(pdfFile))
 {
 // Get document properties.
 var info = document.Info;
 // Update document properties.
 info.Title = "My Title";
 info.Author = "My Author";
 info.Subject = "My Subject";
 info.Creator = "My Application";
 // Update producer and date information, and disable their overriding.
 info.Producer = "My Producer";
 info.CreationDate = new DateTime(2023, 1, 1, 12, 0, 0);
 info.ModificationDate = new DateTime(2023, 1, 1, 12, 0, 0);
 document.SaveOptions.UpdateProducerInformation = false;
 document.SaveOptions.UpdateDateInformation = false;
 document.Save("Document Properties.pdf");
 }

Read PDF document

string pdfFile = Path.GetFullPath(@"..\..\..\simple text.pdf");
 using (var document = PdfDocument.Load(pdfFile))
 {
 foreach (var page in document.Pages)
 {
 Console.WriteLine(page.Content.ToString());
 }
 }

Resources

===============================

PDF .Net totally simplifies the development of .NET applications where require to manipulate with PDF documents. Let us say, to provide the method to rotate a page in PDF document, you have add only the reference to the "SautinSoft.Pdf.dll" and write 3-4 C# lines in your application.

If you need any help with code samples, API, prices or another issues, please use our WebChat, Skype, Email, Phones:

+46 855924509 (Support) +46 812111486 (Sales) Skype: sautinsoft.support Email: support@sautinsoft.com

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible. 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 is compatible. 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed.
.NET Framework net462 is compatible. net463 was computed. net47 was computed. net471 is compatible. net472 is compatible. net48 is compatible. net481 was computed.
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on SautinSoft.Pdf:

Package Downloads
MACRIM.Extensions

Package of IEntity extensions for MSSQL, Azure, PDF and more

SautinSoft.Bundle

SautinSoft.Bundle is a package of .NET components for processing WORD, EXCEL, PDF, HTML, Text. With our components you get fast and reliable results in an easy–to–use format. Only the .NET is required, so you can deploy your application easily without having to think about other licenses.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2026年7月1日 55 7/1/2026
2026年6月10日 148 6/10/2026
2026年5月19日 181 5/20/2026
2026年5月5日 136 5/5/2026
2026年4月21日 224 4/21/2026
2026年4月2日 334 4/3/2026
2026年3月25日 167 3/25/2026
2026年3月5日 492 3/9/2026
2026年2月19日 257 2/20/2026
2026年1月20日 248 1/20/2026
2025年12月16日 977 12/16/2025
2025年11月10日 513 11/10/2025
2025年10月22日 345 10/22/2025
2025年10月7日 523 10/7/2025
2025年9月24日 713 9/24/2025
2025年9月8日 416 9/8/2025
2025年8月25日 440 8/25/2025
2025年8月12日 359 8/12/2025
2025年7月23日 752 7/23/2025
2025年6月20日-hotfix 960 6/20/2025
Loading failed

What's new in the version PDF .Net 2026.7: https://sautinsoft.com/products/pdf/help/net/release-notes/