Winnovative.ExcelToPdf
14.0.2
Prefix Reserved
dotnet add package Winnovative.ExcelToPdf --version 14.0.2
NuGet\Install-Package Winnovative.ExcelToPdf -Version 14.0.2
<PackageReference Include="Winnovative.ExcelToPdf" Version="14.0.2" />
<PackageVersion Include="Winnovative.ExcelToPdf" Version="14.0.2" />
<PackageReference Include="Winnovative.ExcelToPdf" />
paket add Winnovative.ExcelToPdf --version 14.0.2
#r "nuget: Winnovative.ExcelToPdf, 14.0.2"
#:package Winnovative.ExcelToPdf@14.0.2
#addin nuget:?package=Winnovative.ExcelToPdf&version=14.0.2
#tool nuget:?package=Winnovative.ExcelToPdf&version=14.0.2
Winnovative Excel to PDF Library for .NET
Excel to PDF for .NET | HTML to PDF Library for .NET | Free Trial | Licensing | Support
Winnovative Excel to PDF Library for .NET (Classic) can be used in .NET Framework, .NET Core and .NET Standard applications to convert Excel (.xls and .xlsx) documents to PDF.
The library can also be used to create, edit and merge PDF documents.
This package is compatible with .NET Framework, .NET Core and .NET Standard 2.0 on Windows platforms.
For applications that need to run on both Windows and Linux platforms you can use the Winnovative.Pdf.Next.ExcelToPdf package to convert Excel (.xlsx) to PDF.
The full Winnovative.Pdf.Next package Winnovative.Pdf.Next can be used on Windows, Linux, Azure and Docker platforms 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 PDF documents, search text in PDF documents and convert PDF pages to images.
Main Features
- Convert Excel XLS and XLSX documents to PDF
- Does not require Microsoft Excel or other third party tools
- Convert to a memory buffer, file, stream or PDF object for further processing
- Convert all worksheets or select specific worksheets from a workbook
- Set the PDF page size to a standard or custom size
- Set PDF page orientation and document margins
- Add headers and footers with page numbering to the PDF pages
- Append or prepend external PDF files to the conversion result
- Password protect the PDF document and set permissions
- Add a digital signature to the generated PDF document
- Add graphic elements to the generated PDF document
- Generate PDF/A and PDF/X compliant documents
- Generate CMYK and grayscale PDF documents
- Edit existing PDF documents
- Merge multiple PDF documents into a single PDF document
- Split a PDF document into multiple PDF documents
Compatibility
The compatibility list includes the following .NET versions, platforms and application types:
- .NET Framework 4.0 and above
- .NET 10, 9, 8, 7, 6
- .NET Standard 2.0
- Windows platforms
- Azure Cloud Services and Azure Virtual Machines
- Web, Console and Desktop applications
Getting Started
After adding a reference to the library to your project, you are ready to start converting Excel documents to PDF in your .NET application. You can copy the C# code lines from the section below to create a PDF document from an Excel document and save the resulted PDF to a memory buffer for further processing, to a PDF file or send it to browser for download in ASP.NET applications.
C# Code Samples
At the top of your C# source file add the using Winnovative.ExcelToPdf; statement to make available the Winnovative Excel to PDF API for your .NET application.
// add this using statement at the top of your C# file
using Winnovative.ExcelToPdf;
To convert an Excel file to a PDF file you can use the C# code below.
// create the converter object in your code where you want to run conversion
ExcelToPdfConverter converter = new ExcelToPdfConverter();
// convert the Excel file to a PDF file
converter.ConvertExcelFileToFile("my_excel_file_path", "ExcelToFile.pdf");
To convert an Excel file 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
ExcelToPdfConverter converter = new ExcelToPdfConverter();
// convert an Excel file to a memory buffer
byte[] excelToPdfBuffer = converter.ConvertExcelFile("my_excel_file_path");
// write the memory buffer to a PDF file
System.IO.File.WriteAllBytes("ExcelToMemory.pdf", excelToPdfBuffer);
To convert in your ASP.NET MVC application for .NET Framework an Excel file 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
ExcelToPdfConverter converter = new ExcelToPdfConverter();
// convert an Excel file to a memory buffer
byte[] excelToPdfBuffer = converter.ConvertExcelFile("my_excel_file_path");
FileResult fileResult = new FileContentResult(excelToPdfBuffer, "application/pdf");
fileResult.FileDownloadName = "ExcelToPdf.pdf";
return fileResult;
To convert in your ASP.NET Web Forms application for .NET Framework an Excel file 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
ExcelToPdfConverter converter = new ExcelToPdfConverter();
// convert an Excel file to a memory buffer
byte[] excelToPdfBuffer = converter.ConvertExcelFile("my_excel_file_path");
HttpResponse httpResponse = HttpContext.Current.Response;
httpResponse.AddHeader("Content-Type", "application/pdf");
httpResponse.AddHeader("Content-Disposition",
String.Format("attachment; filename=ExcelToPdf.pdf; size={0}",
excelToPdfBuffer.Length.ToString()));
httpResponse.BinaryWrite(excelToPdfBuffer);
httpResponse.End();
To convert in your ASP.NET Core application an Excel file 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
ExcelToPdfConverter converter = new ExcelToPdfConverter();
// convert an Excel file to a memory buffer
byte[] excelToPdfBuffer = converter.ConvertExcelFile("my_excel_file_path");
FileResult fileResult = new FileContentResult(excelToPdfBuffer, "application/pdf");
fileResult.FileDownloadName = "ExcelToPdf.pdf";
return fileResult;
Free Trial
You can download the Winnovative Excel to PDF Converter for .NET evaluation package from Winnovative Software Downloads page of the website.
The evaluation package for .NET contains the product binaries and demo web and desktop projects with full C# code for .NET Framework and .NET Core.
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 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.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. 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 Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 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. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.0
- No dependencies.
-
.NETFramework 4.6.1
- No dependencies.
-
.NETStandard 2.0
- System.Drawing.Common (>= 5.0.3)
- System.Text.Encoding.CodePages (>= 5.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 14.0.2 | 100 | 2/10/2026 |
