Documentize 24.12.0
dotnet add package Documentize --version 24.12.0
NuGet\Install-Package Documentize -Version 24.12.0
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="Documentize" Version="24.12.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Documentize --version 24.12.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Documentize, 24.12.0"
#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.
// Install Documentize as a Cake Addin #addin nuget:?package=Documentize&version=24.12.0 // Install Documentize as a Cake Tool #tool nuget:?package=Documentize&version=24.12.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
.NET API to Process & Manipulate PDF Files
Documentize is a powerful .NET library that simplifies PDF manipulation tasks. Whether you're merging, splitting, extracting content, or securing PDF documents, Documentize offers a wide range of features to enhance productivity. With support for multiple platforms, including Windows, macOS, and Linux, it is a reliable choice for developers.
Key Features
PDF Manipulation
- Merge or split PDF documents programmatically.
- Extract text, images, or metadata from PDFs.
- Add, update, or remove annotations and bookmarks.
- Generate and apply watermarks to secure documents.
PDF Conversion
- Convert PDF documents to various formats like Word (DOCX), Excel (XLSX), images (PNG, JPEG, TIFF), and HTML.
- Create PDF/A-compliant files for long-term archiving.
Forms Handling
- Create, fill, and flatten interactive forms.
- Export and import form data to XML or JSON formats.
Security & Encryption
- Apply password protection and permissions to restrict access.
- Digitally sign and validate signatures on PDFs.
- Encrypt or decrypt PDF documents.
Optimizations
- Compress PDF files by optimizing images and removing unused objects.
System Requirements
Operating System | Details |
---|---|
Windows | Windows 7 and later, Windows Server 2003–2022 |
macOS | macOS 10.12 (Sierra) and later |
Linux | Ubuntu, CentOS, Debian, OpenSUSE |
.NET Frameworks | .NET Framework 4.0+, .NET Core 3.1+, .NET 6.0, .NET 7.0, .NET 8.0 |
Installation
Via NuGet
The easiest way to install Documentize SDKs is through NuGet:
Install-Package Documentize
Other Methods
Examples
Merge PDF Files
var merger = new PdfMerger();
merger.AddInput("file1.pdf");
merger.AddInput("file2.pdf");
merger.Save("merged.pdf");
Extract Text from PDF
var extractor = new PdfTextExtractor("sample.pdf");
string text = extractor.ExtractText();
Console.WriteLine(text);
Digitally Sign a PDF
var signer = new PdfSigner("input.pdf");
signer.Sign("certificate.pfx", "password", "signed.pdf");
Convert PDF to Word
var converter = new PdfToWordConverter();
converter.AddInput("input.pdf");
converter.AddOutput("output.docx");
converter.Process();
Convert PDF to Images
var imageConverter = new PdfToImageConverter();
imageConverter.AddInput("input.pdf");
imageConverter.AddOutput("output.png");
imageConverter.SetResolution(300);
imageConverter.Process();
Flatten PDF Forms
var flattener = new PdfFormFlattener();
flattener.AddInput("form.pdf");
flattener.AddOutput("flattened.pdf");
flattener.Process();
Compress PDF
var optimizer = new PdfOptimizer();
optimizer.AddInput("large.pdf");
optimizer.AddOutput("optimized.pdf");
optimizer.OptimizeImages();
optimizer.RemoveUnusedObjects();
optimizer.Process();
For more examples, visit our GitHub Examples page.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- Microsoft.Extensions.DependencyModel (>= 2.0.4)
- Microsoft.Extensions.Logging.Abstractions (>= 7.0.0)
- Newtonsoft.Json (>= 13.0.3)
- System.Diagnostics.DiagnosticSource (>= 7.0.0)
- System.Diagnostics.PerformanceCounter (>= 4.5.0)
- System.Drawing.Common (>= 5.0.3)
- System.Net.Http.Json (>= 8.0.0)
- System.Reflection.Emit (>= 4.7.0)
- System.Security.Cryptography.Pkcs (>= 4.7.0)
- System.Security.Permissions (>= 4.5.0)
- System.Text.Encoding.CodePages (>= 7.0.0)
- System.Text.Json (>= 8.0.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.