ExcelToPdf 6.0.1
See the version list below for details.
dotnet add package ExcelToPdf --version 6.0.1
NuGet\Install-Package ExcelToPdf -Version 6.0.1
<PackageReference Include="ExcelToPdf" Version="6.0.1" />
<PackageVersion Include="ExcelToPdf" Version="6.0.1" />
<PackageReference Include="ExcelToPdf" />
paket add ExcelToPdf --version 6.0.1
#r "nuget: ExcelToPdf, 6.0.1"
#:package ExcelToPdf@6.0.1
#addin nuget:?package=ExcelToPdf&version=6.0.1
#tool nuget:?package=ExcelToPdf&version=6.0.1
ExcelToPdf
This is a simple project to export Excel to PDF.
It consists of two steps:
- Use
NpoiExcelHelper. ExcelToHtmlmethod will excel export to HTML - Use
Pdfhelper.HtmlToPdfto convert HTML to PDF
Npoi and WkHtmlToPdf did almost all the work, and because of that, please go to these two projects to view the relevant documents, thank them very much
This project also provides a simple encapsulation of customizations, see the customization section of the documentation.
Install
Install-Package ExcelToPdf -Version 6.0.0
Sample
For details, please refer to ExcelToPdfSample project.
Dependency Injection
// in StartUp.cs
services.AddExcelToPdf("temp");
Export
private readonly ILogger<IndexModel> _logger;
private readonly ExcelToPdfService _excelToPdfService;
// inject ExcelToPdfService from controller
public IndexModel(ILogger<IndexModel> logger, ExcelToPdfService excelToPdfService)
{
_logger = logger;
_excelToPdfService = excelToPdfService;
}
// export to pdf
public void OnPostSimpleExport()
{
FileInfo excelFileInfo, htmlFileInfo, pdfFileInfo;
SetupSample(out excelFileInfo, out htmlFileInfo, out pdfFileInfo);
// export pdf
_excelToPdfService.ExportToPdf(excelFileInfo.FullName, pdfFileInfo.FullName);
this.Message = $"Export Success, Pdf file save to: {pdfFileInfo.FullName}";
}
Note that using asp.net requires the injection of
IConverterfirst, as follows:
in StartUp.cs
// injection
services.AddHtmlToPdf();
Custom
Custom excel export to html
With the NpoiExcelHelper.ExcelToHtml method, can use the configOptions parameters to HTML do custom processing for export, specific definition refer to:Npoi ExcelToHtmlConverter
Custom pdf convert
With the PdfHelper.HtmlToPdf method, can use configGlobalSettings parameter to custom pdf:
// ... other code ...
// export pdf
_excelToPdfService.ExportToPdf(excelFileInfo.FullName, pdfFileInfo.FullName, configPdfGlobalSettings: config =>
{
config.Orientation = Orientation.Landscape;
config.ColorMode = ColorMode.Grayscale;
config.Margins.Left = 150;
config.Margins.Top = 50;
});
// ... other code ...
GlobalSettings Commonly used attributes:
| parameter | comment | default | note |
|---|---|---|---|
| Orientation | he orientation of the output document | portrait | Portrait, Landscape |
| ColorMode | Should the output be printed in color or gray scale | color | |
| UseCompression | Should we use loss less compression when creating the pdf file. | true | |
| DPI | What dpi should we use when printing | 96 | |
| DocumentTitle | The title of the PDF document | empty | |
| ImageDPI | The maximal DPI to use for images in the pdf document | 600 | |
| imageQuality | The jpeg compression factor to use when producing the pdf document | 94 | |
| PaperSize | Size of output paper | ||
| PaperWidth | The height of the output document | ||
| PaperHeight | The width of the output document | ||
| MarginLeft | Size of the left margin | ||
| MarginRight | Size of the right margin | ||
| MarginTop | Size of the top margin | ||
| MarginBottom | Size of the bottom margin |
Docker and linux
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 is compatible. 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. |
-
net6.0
- DotNetCore.NPOI (>= 1.2.3)
- Haukcode.WkHtmlToPdfDotNet (>= 1.5.66)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0.0)
- PdfSharpCore (>= 1.3.11)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.