Xceed.PdfLibrary.NET 1.0.25608.6677

dotnet add package Xceed.PdfLibrary.NET --version 1.0.25608.6677
                    
NuGet\Install-Package Xceed.PdfLibrary.NET -Version 1.0.25608.6677
                    
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="Xceed.PdfLibrary.NET" Version="1.0.25608.6677" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Xceed.PdfLibrary.NET" Version="1.0.25608.6677" />
                    
Directory.Packages.props
<PackageReference Include="Xceed.PdfLibrary.NET" />
                    
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 Xceed.PdfLibrary.NET --version 1.0.25608.6677
                    
#r "nuget: Xceed.PdfLibrary.NET, 1.0.25608.6677"
                    
#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 Xceed.PdfLibrary.NET@1.0.25608.6677
                    
#: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=Xceed.PdfLibrary.NET&version=1.0.25608.6677
                    
Install as a Cake Addin
#tool nuget:?package=Xceed.PdfLibrary.NET&version=1.0.25608.6677
                    
Install as a Cake Tool

Xceed PDF Library for .NET - Create and manipulate PDF documents

Xceed PDF Library for .NET is a professional-grade PDF framework designed for developers who need reliable PDF creation, manipulation, and extraction capabilities in their .NET applications.

Built for performance and ease of use, it provides a set of tools to generate and process PDF documents programmatically.

image

Click the image above to receive a trial license. It unlocks all features of the component. See the Get Started section for details.

Brought to you by Xceed Software, a leader in .NET components for over 25 years.

Features

PDF Creation

Feature Supported
Create PDF from scratch ✔️
Add text with font, size, color, and positioning ✔️
Use standard, system, and custom embedded fonts ✔️
Add paragraphs with automatic text wrapping ✔️
Add pages and margins ✔️
Add lines and rectangles ✔️
Add CheckBox, RadioButton, TextBox, NumberTextBox, DateTimeTextBox, ComboBox, ListBox forms ✔️
Add digital signature fields ✔️
Add hyperlinks ✔️
Add attachments and watermarks ✔️
Set page format and custom page size ✔️
Open and save PDF documents ✔️

PDF Extraction

Feature Supported
Extract pages ✔️
Extract metadata ✔️
Extract words and characters ✔️
Extract text with font information ✔️
Extract text inside a rectangle ✔️
Extract right-to-left languages ✔️
Extract Asian/Arabic texts ✔️
Extract form fields ✔️
Extract hyperlinks and bookmarks ✔️
Extract watermarks ✔️
Extract page rotation ✔️
Extract images ✔️
Extract attachments ✔️
Extract paths (lines, rectangles) ✔️

Compatibility

  • .NET Framework 4.0 and later
  • .NET 5 and later
  • Runs on Windows, macOS, and Linux
  • Works in desktop, web, and cloud environments
  • Integrates with ASP.NET and Blazor applications

Get Started

Xceed PDF Library for .NET gives you the building blocks to create and manipulate PDF documents using code.

Install via NuGet:

dotnet add package Xceed.PdfLibrary.NET

Add the license key in your application code before starting to use the component’s classes.

static void Main( string[] args )
{
  Xceed.PdfLibrary.NET.Licenser.LicenseKey = "PDFXX-XXXXX-XXXXX-XXXX";
  
  PdfDocument pdfDocument = PdfDocument.Create( "MyPdf.pdf" );
  /* ... */
}

Read the full documentation licensing article here.

Code Example

using Xceed.PdfLibrary.NET;

// Create a PDF document.
using( PdfDocument pdfDocument = PdfDocument.Create( "MyPdf.pdf" ) )
{
  // Get the first page of the document.
  Page page = pdfDocument.Pages.First();

  // Add title.
  TextStyle titleStyle = TextStyle.WithFont( pdfDocument.Fonts.GetStandardFont( StandardFontType.Helvetica ), 15d );
  page.AddParagraph( "My first paragraph.", titleStyle, new ParagraphStyle( ParagraphHorizontalAlignment.Center ) );

  // Save the document.
  pdfDocument.Save();
  Console.WriteLine( $"Info exported to path: {outputFileName}" );
}

More from Xceed

Xceed offers additional high‑quality libraries for .NET developers.

Xceed Words for .NET

Create, load, edit, convert, and secure Word documents without requiring Microsoft Word or Office interop.

Xceed Workbooks for .NET

Create, load, edit, and save Excel workbooks and spreadsheet files, without needing Microsoft Excel or Office interop.


Documentation and Resources

Resource Link
Product Page and Pricing Xceed PDF Library for .NET
Documentation Online Documentation
NuGet Package NuGet Package
Blog & Updates Xceed Blog
Support Forum Xceed Support
License Details Xceed Licensing
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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.  net9.0 was computed.  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 was computed.  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 net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Xceed.PdfLibrary.NET:

Package Downloads
Xceed.Products.Documents.Libraries.Full

Create or manipulate Microsoft Word documents or Excel documents from your .NET applications, without requiring Word, Excel or Office to be installed. Word documents can be converted to PDF(not all Word elements are supported). Fast and lightweight. Widely used and backed by a responsive support and development team whose sole ambition is your complete satisfaction. You can try Words for .NET and Workbooks for .NET for free for 45 days, after which you will need to purchase a license key to continue using it.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.25608.6677 423 12/8/2025

See Xceed PDF Library for .NET web site for complete release notes: https://xceed.com/release-notes/#pdf-library-net-1.0.25608.6677