The Core PDF API component of the EvoPdf Next Library for .NET provides the API for programmatically creating, manipulating and securing PDF documents. You can create PDF documents by adding text, images and other graphical elements and then enhance them with features such as encryption, permissions, digital signatures, custom headers, footers, stamps and other advanced processing options. The library targets .NET Standard 2.0 and can be used in .NET Core and .NET Framework applications that you can deploy on Windows and Linux platforms, including Azure App Service and Functions or Docker. This package includes only the Linux x64 runtime. Separate packages are available for Windows or multi-platform runtimes. Compatibility: * Linux x64 distributions * .NET 10.0, 9.0, 8.0, 7.0, 6.0 and .NET Standard 2.0 * Azure App Service and Azure Functions for Linux * Linux Virtual Machines * Docker containers for Linux * Web, Console and Desktop applications Main Features: * Create, edit and merge PDF documents * Generate PDF documents by adding text, images and other elements * Encrypt, set permissions and passwords for the PDF documents * Control the PDF document display with PDF viewer preferences * Create PDF documents with digital signatures * Edit PDF documents by applying stamps, headers and footers * Merge PDF documents * Asynchronous methods for async and await Documentation and code samples: https://www.evopdf.com/evopdf-next-core-pdf-api-dotnet
$ dotnet add package EvoPdf.Next.Core.LinuxEvoPdf 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 package includes only the Linux x64 runtime. Separate packages are available for Windows or multi-platform runtimes.
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 is a Linux x64 metapackage that references all NuGet packages required to run the Core PDF API component on Linux platforms.
There is also a multi-platform package EvoPdf.Next.Core that references both the Windows and Linux runtimes, which is ideal when developing on one operating system and deploying to multiple runtime environments.
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 Converter packages.
The compatibility list of this Linux x64 package includes the following platforms:
On Linux platforms, the Core PDF API component does not require additional dependencies unless HTML to PDF related features are used.
When HTML to PDF features are required, installing additional system dependencies may be necessary, depending on the Linux distribution and version.
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.
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.