Winnovative.Pdf.Next.Linux
20.0.0
Prefix Reserved
dotnet add package Winnovative.Pdf.Next.Linux --version 20.0.0
NuGet\Install-Package Winnovative.Pdf.Next.Linux -Version 20.0.0
<PackageReference Include="Winnovative.Pdf.Next.Linux" Version="20.0.0" />
<PackageVersion Include="Winnovative.Pdf.Next.Linux" Version="20.0.0" />
<PackageReference Include="Winnovative.Pdf.Next.Linux" />
paket add Winnovative.Pdf.Next.Linux --version 20.0.0
#r "nuget: Winnovative.Pdf.Next.Linux, 20.0.0"
#:package Winnovative.Pdf.Next.Linux@20.0.0
#addin nuget:?package=Winnovative.Pdf.Next.Linux&version=20.0.0
#tool nuget:?package=Winnovative.Pdf.Next.Linux&version=20.0.0
Winnovative PDF Next Library for .NET (Linux x64)
Winnovative PDF Next for .NET | Winnovative Next HTML to PDF for .NET | Winnovative Software | Free Trial | Licensing | Support
Overview
Winnovative PDF Next for .NET can be integrated into your applications to create, edit and merge PDF documents, convert HTML to PDF or images, convert Word, Excel, RTF and Markdown to PDF, extract text and images from PDFs, search text in PDFs and convert PDF pages to images.
The library targets .NET Standard 2.0 and can be used in .NET Core and .NET Framework applications deployed on Linux and Windows 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.
Package structure
Winnovative PDF Next for .NET has a modular architecture, with separate NuGet packages for each major component to prevent unnecessary files from being included in your applications.
This package is a Linux x64 metapackage that references all Winnovative PDF Next for .NET packages required to run on Linux.
There is also a multiplatform metapackage Winnovative.Pdf.Next that references both the Windows and Linux packages, which is ideal when developing on one operating system and deploying to multiple runtime environments.
Compatibility
The compatibility list of this Linux x64 package includes the following platforms:
- 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
- Apply HTML stamps, headers and footers to PDFs
- Generate password-protected and digitally signed PDFs
- Convert HTML with CSS, web fonts and JavaScript to PDF
- Convert HTML to JPEG, PNG and WebP images
- Convert SVG to PDF
- Convert Word DOCX to PDF
- Convert Excel XLSX to PDF
- Convert RTF to PDF
- Convert Markdown to PDF
- Convert PDF to text
- Search text in PDF documents
- Convert PDF pages to images
- Extract images from PDF pages
Installation
On Linux platforms, Winnovative PDF Next uses platform-specific runtimes.
The HTML to PDF, Word to PDF, Excel to PDF, RTF to PDF and Markdown to PDF converter components may require the installation of additional system dependencies, depending on the Linux distribution and version used.
Detailed instructions for installing Linux dependencies are available in the online documentation, in the Getting Started and Publish guides.
The other components of the Winnovative PDF Next library generally do not require the installation of additional dependencies.
Install the package using your preferred NuGet package manager.
Related packages
Full library metapackages
Winnovative.Pdf.Next (Multi-platform)
https://www.nuget.org/packages/Winnovative.Pdf.NextWinnovative.Pdf.Next.Windows (Windows x64)
https://www.nuget.org/packages/Winnovative.Pdf.Next.WindowsWinnovative.Pdf.Next.Linux (Linux x64)
https://www.nuget.org/packages/Winnovative.Pdf.Next.Linux
Other Winnovative.Pdf.Next component packages
Core PDF API (create, edit, merge and secure PDF documents)
https://www.nuget.org/packages/Winnovative.Pdf.Next.CoreHTML to PDF
https://www.nuget.org/packages/Winnovative.Pdf.Next.HtmlToPdfWord to PDF
https://www.nuget.org/packages/Winnovative.Pdf.Next.WordToPdfExcel to PDF
https://www.nuget.org/packages/Winnovative.Pdf.Next.ExcelToPdfRTF to PDF
https://www.nuget.org/packages/Winnovative.Pdf.Next.RtfToPdfMarkdown to PDF
https://www.nuget.org/packages/Winnovative.Pdf.Next.MarkdownToPdfPDF Processor (PDF to text, PDF to images, extract images)
https://www.nuget.org/packages/Winnovative.Pdf.Next.PdfProcessor
Winnovative.Pdf.Next namespace
All components of the Winnovative PDF Next for .NET library share the same namespace Winnovative.Pdf.Next.
using Winnovative.Pdf.Next;
Getting Started
For documentation and code samples, please visit: https://www.winnovative-software.com/winnovative-pdf-next-dotnet
You can copy the C# code lines from the section below to create a PDF document from a web page or from an HTML string and save the resulting PDF to a memory buffer for further processing, to a PDF file or send it to the browser for download in ASP.NET applications.
C# Code Samples
To convert a HTML string or an URL to a PDF file you can use the C# code below.
// create the converter object in your code where you want to run conversion
HtmlToPdfConverter converter = new HtmlToPdfConverter();
// convert the HTML string to a PDF file
converter.ConvertHtmlToFile("<b>Hello World</b> from Winnovative !", null, "HtmlToFile.pdf");
// convert HTML page from URL to a PDF file
string htmlPageURL = "https://www.winnovative-software.com";
converter.ConvertUrlToFile(htmlPageURL, "UrlToFile.pdf");
To convert a HTML string or an URL to a PDF document in a memory buffer and then save it to a file you can use the C# code below.
// create the converter object in your code where you want to run conversion
HtmlToPdfConverter converter = new HtmlToPdfConverter();
// convert a HTML string to a memory buffer
byte[] htmlToPdfBuffer = converter.ConvertHtml("<b>Hello World</b> from Winnovative !", null);
// write the memory buffer to a PDF file
System.IO.File.WriteAllBytes("HtmlToMemory.pdf", htmlToPdfBuffer);
// convert an URL to a memory buffer
string htmlPageURL = "https://www.winnovative-software.com";
byte[] urlToPdfBuffer = converter.ConvertUrl(htmlPageURL);
// write the memory buffer to a PDF file
System.IO.File.WriteAllBytes("UrlToMemory.pdf", urlToPdfBuffer);
To convert in your ASP.NET Core applications a HTML string or an URL to a PDF document in a memory buffer and then send it for download to browser you can use the C# code below.
// create the converter object in your code where you want to run conversion
HtmlToPdfConverter converter = new HtmlToPdfConverter();
// convert a HTML string to a memory buffer
byte[] htmlToPdfBuffer = converter.ConvertHtml("<b>Hello World</b> from Winnovative !", null);
FileResult fileResult = new FileContentResult(htmlToPdfBuffer, "application/pdf");
fileResult.FileDownloadName = "HtmlToPdf.pdf";
return fileResult;
Free Trial
You can download the Winnovative PDF Next for .NET evaluation package from Winnovative 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.
Licensing
The Winnovative 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.
Support
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.
-
.NETStandard 2.0
- Winnovative.Pdf.Next.ExcelToPdf.Linux (>= 20.0.0)
- Winnovative.Pdf.Next.HtmlToPdf.Linux (>= 20.0.0)
- Winnovative.Pdf.Next.MarkdownToPdf.Linux (>= 20.0.0)
- Winnovative.Pdf.Next.PdfProcessor.Linux (>= 20.0.0)
- Winnovative.Pdf.Next.RtfToPdf.Linux (>= 20.0.0)
- Winnovative.Pdf.Next.WordToPdf.Linux (>= 20.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Winnovative.Pdf.Next.Linux:
| Package | Downloads |
|---|---|
|
Winnovative.Pdf.Next
Winnovative PDF Next for .NET can create, edit and merge PDF documents, convert HTML, Word, Excel, RTF and Markdown to PDF, extract text and images from PDFs, search text in PDFs and convert PDF pages to images. Detailed information about usage, platform requirements and dependencies is available in the online documentation. 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 Winnovative PDF Next runtimes and is ideal when developing on one operating system and deploying to multiple runtime environments. The Winnovative PDF Next components use a platform-specific runtime. On Windows platforms, the runtime generally does not require additional dependencies. On Linux platforms, installing certain dependency packages may be necessary, depending on the Linux distribution and the components you are using, as described in the online documentation. Compatibility: * Windows 10, 11 and Windows Server 2016 to 2025 * Linux x64 distributions * .NET 10.0, 9.0, 8.0, 7.0, 6.0 and .NET Standard 2.0 * .NET Framework 4.6.2 to 4.8.1 * Azure App Service and Azure Functions * Virtual Machines * Docker containers * Web, Console and Desktop applications Main Features: * Create, edit and merge PDF documents * Apply HTML stamps, headers and footers to PDFs * Generate password-protected and digitally signed PDFs * Convert HTML with CSS, web fonts and JavaScript to PDF * Convert HTML to JPEG, PNG and WebP images * Convert SVG to PDF * Convert Word DOCX, Excel XLSX, RTF and Markdown to PDF * Convert PDF to text * Search text in PDF documents * Convert PDF pages to images * Extract images from PDF pages Documentation and code samples: https://www.winnovative-software.com/winnovative-pdf-next-dotnet |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 20.0.0 | 34 | 12/30/2025 |
