![]() |
VOOZH | about |
dotnet add package DevExpress.Document.Processor --version 26.1.3
NuGet\Install-Package DevExpress.Document.Processor -Version 26.1.3
<PackageReference Include="DevExpress.Document.Processor" Version="26.1.3" />
<PackageVersion Include="DevExpress.Document.Processor" Version="26.1.3" />Directory.Packages.props
<PackageReference Include="DevExpress.Document.Processor" />Project file
paket add DevExpress.Document.Processor --version 26.1.3
#r "nuget: DevExpress.Document.Processor, 26.1.3"
#:package DevExpress.Document.Processor@26.1.3
#addin nuget:?package=DevExpress.Document.Processor&version=26.1.3Install as a Cake Addin
#tool nuget:?package=DevExpress.Document.Processor&version=26.1.3Install as a Cake Tool
This cross-platform .NET library allow you to generate and manage documents and barcodes in code:
DevExpress Document Processing APIs are compatible with the following operating systems and platforms:
The DevExpress Word Processing Document API allows you to manage rich text documents:
Get Started with DevExpress Word Processing Document API
//Load a Word file, add text watermark, and export to PDF
using var wordProcessor = new RichEditDocumentServer();
wordProcessor.LoadDocument("wordFile.docx");
wordProcessor.Document.WatermarkManager.SetText("CONFIDENTIAL");
MemoryStream pdfStream = new MemoryStream();
wordProcessor.ExportToPdf(pdfStream);
The DevExpress PDF Document API allows you to manage PDF documents in code:
Get Started with DevExpress PDF Document API
//Load a PDF file, encrypt it, and specify access permissions
using var pdfProcessor = new PdfDocumentProcessor();
pdfProcessor.LoadDocument("pdfDocument.pdf");
PdfEncryptionOptions encryptionOptions = new PdfEncryptionOptions();
encryptionOptions.DataExtractionPermissions = PdfDocumentDataExtractionPermissions.NotAllowed;
encryptionOptions.OwnerPasswordString = "OwnerPassword";
encryptionOptions.UserPasswordString = "UserPassword";
encryptionOptions.Algorithm = PdfEncryptionAlgorithm.AES256;
MemoryStream pdfEncryptedStream = new MemoryStream();
pdfProcessor.SaveDocument(pdfEncryptedStream, new PdfSaveOptions() { EncryptionOptions = encryptionOptions });
The DevExpress Spreadsheet Document API allows you to manage Excel files in code:
Get Started with DevExpress Spreadsheet API
//Load an Excel workbook, calculate formulas, and export to PDF
using var workbook = new Workbook();
workbook.LoadDocument("spreadsheetFile.xlsx");
workbook.Calculate();
MemoryStream pdfStream = new MemoryStream();
workbook.ExportToPdf(pdfStream);
The DevExpress Barcode Generation API allows you to generate barcodes:
Get Started with DevExpress Barcode API
Install the NuGet package
dotnet add package DevExpress.Document.Processor
Use the following code to convert Word and Excel files to PDF and merge them into a single file:
//Load a Word file and export to PDF
using var wordProcessor = new RichEditDocumentServer();
wordProcessor.LoadDocument("wordFile.docx");
MemoryStream docStream1 = new MemoryStream();
wordProcessor.ExportToPdf(docStream1);
docStream1.Position = 0;
//Load an Excel workbook and export to PDF
using var workbook = new Workbook();
workbook.LoadDocument("spreadsheetFile.xlsx");
MemoryStream docStream2 = new MemoryStream();
workbook.ExportToPdf(docStream2);
docStream2.Position = 0;
//Merge two PDF documents into a single file
using var pdfProcessor = new PdfDocumentProcessor();
pdfProcessor.CreateEmptyDocument();
pdfProcessor.AppendDocument(docStream1);
pdfProcessor.AppendDocument(docStream2);
MemoryStream mergedPdfStream = new MemoryStream();
pdfProcessor.SaveDocument(mergedPdfStream);
mergedPdfStream.Position = 0;
Whether using a 30-day evaluation version or a registered product, you must register your DevExpress.com license key on your machine. To obtain your license key, log in to the DevExpress Download Manager. Use your existing DevExpress.com account or create a new account for free. For detailed instructions, see License Key for DevExpress Products.
Once you have obtained and registered your license key, simply install this package to start a 30-day evaluation period.
To continue using DevExpress products after your trial period ends, purchase a license. This package is included in the following commercial subscriptions:
See DevExpress Subscriptions & Licensing for subscription comparison tables, purchasing FAQ, and licensing information.
After you purchase a license, download and register your up-to-date DevExpress license key to remove licensing warnings and trial messages.
DevExpress.Docs.Presentation - DevExpress Document Processing APIs for PowerPoint presentations.
dotnet add package DevExpress.Docs.Presentation
DevExpress.AIIntegration.Docs - AI-powered Extensions for DevExpress Document Processing APIs.
dotnet add package DevExpress.AIIntegration.Docs
DevExpress.Docs.Pdf - New DevExpress Document Processing APIs for advanced PDF generation and editing scenarios.
dotnet add package DevExpress.Docs.Pdf
DevExpress.Docs.Barcode - DevExpress Barcode Generation APIs.
dotnet add package DevExpress.Docs.Barcode
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Framework | net462 net462 is compatible. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
Showing the top 5 NuGet packages that depend on DevExpress.Document.Processor:
| Package | Downloads |
|---|---|
|
Corprio.DevExpressLib
Library for using DevExpress components |
|
|
DevExpress.Document.Processor.de
Target Platform/Framework: Desktop, Web, Mobile DevExpress Product Libraries Used: .NET Office File API (https://www.devexpress.com/officefileapi) Available in the following DevExpress Subscription(s): Universal, Office File API |
|
|
KFX.DevExpressExtensions
Package Description |
|
|
DevExpress.Document.Processor.es
Target Platform/Framework: Desktop, Web, Mobile DevExpress Product Libraries Used: .NET Office File API (https://www.devexpress.com/officefileapi) Available in the following DevExpress Subscription(s): Universal, Office File API |
|
|
DevExpress.Document.Processor.ja
Target Platform/Framework: Desktop, Web, Mobile DevExpress Product Libraries Used: .NET Office File API (https://www.devexpress.com/officefileapi) Available in the following DevExpress Subscription(s): Universal, Office File API |
Showing the top 2 popular GitHub repositories that depend on DevExpress.Document.Processor:
| Repository | Stars |
|---|---|
|
omeryanar/FileExplorer
Windows File Explorer alternative with tab browsing
|
|
|
DevExpress-Examples/maui-demo-app
DevExpress Demo Center for .NET MAUI
|
| Version | Downloads | Last Updated |
|---|---|---|
| 26.1.3 | 0 | 6/18/2026 |
| 25.2.8 | 3,686 | 6/10/2026 |
| 25.2.7 | 23,901 | 5/6/2026 |
| 25.2.6 | 24,248 | 4/7/2026 |
| 25.2.5 | 35,268 | 3/2/2026 |
| 25.2.4 | 39,398 | 2/3/2026 |
| 25.2.3 | 53,452 | 12/18/2025 |
| 25.1.12 | 344 | 6/10/2026 |
| 25.1.11 | 1,118 | 5/5/2026 |
| 25.1.10 | 4,074 | 4/6/2026 |
| 25.1.9 | 5,188 | 3/2/2026 |
| 25.1.8 | 4,022 | 1/16/2026 |
| 25.1.7 | 26,024 | 12/15/2025 |
| 25.1.6 | 43,818 | 12/12/2025 |
| 25.1.5 | 30,735 | 12/11/2025 |
| 25.1.4 | 24,005 | 12/11/2025 |
| 25.1.3 | 127,036 | 12/10/2025 |