![]() |
VOOZH | about |
dotnet add package DevExpress.Docs.Pdf --version 26.1.3
NuGet\Install-Package DevExpress.Docs.Pdf -Version 26.1.3
<PackageReference Include="DevExpress.Docs.Pdf" Version="26.1.3" />
<PackageVersion Include="DevExpress.Docs.Pdf" Version="26.1.3" />Directory.Packages.props
<PackageReference Include="DevExpress.Docs.Pdf" />Project file
paket add DevExpress.Docs.Pdf --version 26.1.3
#r "nuget: DevExpress.Docs.Pdf, 26.1.3"
#:package DevExpress.Docs.Pdf@26.1.3
#addin nuget:?package=DevExpress.Docs.Pdf&version=26.1.3Install as a Cake Addin
#tool nuget:?package=DevExpress.Docs.Pdf&version=26.1.3Install as a Cake Tool
DevExpress PDF Document API is a new cross-platform .NET library that allows you to manage PDF files in code. Add this package to your project and use an object-oriented API model to create, load, modify, secure, and analyze PDF documents.
DevExpress PDF Document API and its strongly typed document object model (DOM) give you full access to the document structure: pages, content fragments (text, images, and shapes), annotations, form fields, metadata, attachments, and logical structure elements.
Install the package
dotnet add package DevExpress.Docs.Pdf
Create a new PDF from scratch, add text and images, and save the document to a file.
using DevExpress.Docs.Pdf;
using (PdfDocument pdfDocument = new PdfDocument()) {
// Add an A4 page to the document.
Page page = pdfDocument.Pages.Add(DXPaperKind.A4);
// Add a title.
page.AddFragment(new TextFragment
{
Text = "Quarterly Sales Report",
Location = new PointF(50, 770),
Font = new TextFont("Arial", TextFontStyle.Bold),
FontSize = 24
});
// Add a paragraph.
page.AddFragment(new TextFragment
{
Text = "This report summarizes sales data " +
"for Q1 2026.",
Location = new PointF(50, 730),
Font = new TextFont("Arial"),
FontSize = 12
});
// Add an image.
DXImage logo = DXImage.FromFile("logo.png");
page.AddFragment(new ImageFragment(logo)
{
Location = new PointF(50, 600),
Size = new SizeF(200, 100)
});
// Save the document.
using (FileStream outputStream =
File.Create("SalesReport.pdf"))
{
pdfDocument.Save(outputStream);
}
}
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.Document.Processor - DevExpress Document Processing APIs for Word, Excel, and PDF documents. Note: a new version of PDF document API is available in the DevExpress.Docs.Pdf package.
dotnet add package DevExpress.Document.Processor
DevExpress.AIIntegration.Docs - AI-powered Extensions for DevExpress Document Processing APIs.
dotnet add package DevExpress.AIIntegration.Docs
DevExpress.Docs.Presentation - DevExpress Document Processing APIs for PowerPoint presentations.
dotnet add package DevExpress.Docs.Presentation
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. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 26.1.3 | 0 | 6/18/2026 |