![]() |
VOOZH | about |
dotnet add package EvoPdf.Next.Core --version 14.16.2
NuGet\Install-Package EvoPdf.Next.Core -Version 14.16.2
<PackageReference Include="EvoPdf.Next.Core" Version="14.16.2" />
<PackageVersion Include="EvoPdf.Next.Core" Version="14.16.2" />Directory.Packages.props
<PackageReference Include="EvoPdf.Next.Core" />Project file
paket add EvoPdf.Next.Core --version 14.16.2
#r "nuget: EvoPdf.Next.Core, 14.16.2"
#:package EvoPdf.Next.Core@14.16.2
#addin nuget:?package=EvoPdf.Next.Core&version=14.16.2Install as a Cake Addin
#tool nuget:?package=EvoPdf.Next.Core&version=14.16.2Install as a Cake Tool
EvoPdf Next Core PDF API for .NET | PDF Library for .NET | HTML to PDF for .NET | EVO PDF Software | Free Trial | Licensing | Support
The Core PDF API component of the EvoPdf Next Library for .NET provides a powerful API for programmatically creating, manipulating and securing PDF documents.
You can create PDF documents by adding text, images and other graphical elements and enhance them with advanced features such as encryption, permissions, digital signatures, custom headers, footers, stamps and other document processing options.
The library targets .NET Standard 2.0 and can be used in .NET Core and .NET Framework applications deployed on Windows and Linux platforms, including Azure App Service, Azure Functions and Docker.
This is a multi-platform metapackage that references both the Windows x64 and Linux x64 EvoPdf Next Core runtimes and is ideal when developing on one operating system and deploying to multiple runtime environments.
If you need a single-platform package, you can use EvoPdf.Next.Core.Windows or EvoPdf.Next.Core.Linux.
EvoPdf Next for .NET has a modular architecture, with separate NuGet packages for each major component, preventing unnecessary files from being included in your applications.
This package references both the Windows and Linux Core runtime packages required to run the Core PDF API component across supported platforms.
The Core PDF API also includes the classes used for HTML to PDF conversion and for adding HTML headers, footers and stamps.
To use these features, reference the appropriate Core Runtime package for your target platform or use the dedicated HTML to PDF packages.
The compatibility list of this multi-platform package includes the following platforms:
On Windows platforms, the Core PDF API component does not require the installation of additional dependencies.
On Linux platforms, installing additional system dependencies might be required when using HTML to PDF related features, depending on the Linux distribution and version used.
Detailed instructions for installing Linux dependencies are available in the online documentation.
Install the package using your preferred NuGet package manager.
EvoPdf.Next.Core (Multi-platform)
https://www.nuget.org/packages/EvoPdf.Next.Core
EvoPdf.Next.Core.Windows (Windows x64)
https://www.nuget.org/packages/EvoPdf.Next.Core.Windows
EvoPdf.Next.Core.Linux (Linux x64)
https://www.nuget.org/packages/EvoPdf.Next.Core.Linux
EvoPdf.Next (Multi-platform)
https://www.nuget.org/packages/EvoPdf.Next
EvoPdf.Next.Windows (Windows x64)
https://www.nuget.org/packages/EvoPdf.Next.Windows
EvoPdf.Next.Linux (Linux x64)
https://www.nuget.org/packages/EvoPdf.Next.Linux
HTML to PDF
https://www.nuget.org/packages/EvoPdf.Next.HtmlToPdf
Word to PDF
https://www.nuget.org/packages/EvoPdf.Next.WordToPdf
Excel to PDF
https://www.nuget.org/packages/EvoPdf.Next.ExcelToPdf
RTF to PDF
https://www.nuget.org/packages/EvoPdf.Next.RtfToPdf
Markdown to PDF
https://www.nuget.org/packages/EvoPdf.Next.MarkdownToPdf
PDF Processor (PDF to text, PDF to images, extract images)
https://www.nuget.org/packages/EvoPdf.Next.PdfProcessor
All components of the EvoPdf Next for .NET library share the same namespace EvoPdf.Next and can be used together in the same application.
To use the library in your own code, add the following using directive at the top of your C# source file:
using EvoPdf.Next;
For documentation and code samples, please visit: https://www.evopdf.com/evopdf-next-core-pdf-api-dotnet
You can use the sample code below to create a PDF document with a text element using a standard font, then save it to a memory buffer that you can either write to a file or send to the browser for download.
PdfDocumentCreateSettings pdfCreateSettings = new PdfDocumentCreateSettings()
{
PageSize = PdfPageSize.A4,
PageOrientation = PdfPageOrientation.Portrait,
Margins = new PdfMargins(36, 36, 36, 36)
};
// Create a new PDF document with the specified settings
using PdfDocument pdfDocument = new PdfDocument(pdfCreateSettings);
// Create a standard Helvetica font
PdfFont fontHelvetica = PdfFontManager.CreateStandardFont(PdfStandardFont.Helvetica, 16f, PdfFontStyle.Normal, PdfColor.Blue);
// Add a title using the Helvetica font
PdfTextElement pdfText = new PdfTextElement("Hello World !!!", fontHelvetica)
{
X = 10,
Y = 10
};
PdfTextRenderInfo textRenderInfo = pdfDocument.AddText(pdfText);
// Save to memory buffer
byte[] outPdfBuffer = pdfDocument.Save();
You can download the EvoPdf Next for .NET evaluation package from EVO PDF Downloads page of the website.
The evaluation package contains a demo ASP.NET application with full C# code for all features of the library.
You can evaluate the library for free as long as it is needed to ensure that the solution fits your application needs.
The EVO PDF Software licenses are perpetual which means they never expire for a version of the product and include free maintenance for the first year. You can find more details about licensing on the website.
For technical and sales questions or for general inquiries about our software and company you can contact us using the email addresses from the contact page of the website.
Learn more about Target Frameworks and .NET Standard.
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 14.16.2 | 103 | 6/4/2026 |