NReco.PdfGenerator
1.1.12
Prefix Reserved
See the version list below for details.
dotnet add package NReco.PdfGenerator --version 1.1.12
NuGet\Install-Package NReco.PdfGenerator -Version 1.1.12
<PackageReference Include="NReco.PdfGenerator" Version="1.1.12" />
paket add NReco.PdfGenerator --version 1.1.12
#r "nuget: NReco.PdfGenerator, 1.1.12"
// Install NReco.PdfGenerator as a Cake Addin #addin nuget:?package=NReco.PdfGenerator&version=1.1.12 // Install NReco.PdfGenerator as a Cake Tool #tool nuget:?package=NReco.PdfGenerator&version=1.1.12
HTML-to-PDF converter component for C# (.NET) based on WkHtmlToPdf utility. Generates pretty-looking PDF documents from .NET application by HTML-layout.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net20 is compatible. net35 was computed. net40 was computed. 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. |
This package has no dependencies.
NuGet packages (13)
Showing the top 5 NuGet packages that depend on NReco.PdfGenerator:
Package | Downloads |
---|---|
Bnsights.Core
Package Description |
|
NF-CL-TRELLIS
Core Framework Library |
|
TuanZi.Hosting.Api
TuanZi Framework Non-Business WebAPI Implementation, encapsulates WebAPI implementation for non-business modules such as authentication, permissions, system, messages, etc. |
|
SE2.LabManager.PdfExport
pdfExporter |
|
UnyTools.Boleto
UnyBoleto |
GitHub repositories (4)
Showing the top 4 popular GitHub repositories that depend on NReco.PdfGenerator:
Repository | Stars |
---|---|
smartstore/SmartStoreNET
Open Source ASP.NET MVC Enterprise eCommerce Shopping Cart Solution
|
|
mike-ward/Markdown-Edit
My attempt at a markdown editor for windows
|
|
BoletoNet/boletonet
Boleto.Net is a library developed for use in Brazil, given it has been programmed with Brazilian retail legislation and business rules for bank registered billing integration.
|
|
BoletoNet/boleto2net
Nova versão do Boleto.Net
|
v.1.1.12 changes:
- WkHtmlToPdf tool upgraded to version 0.12.3.1 (released 2016-Jan-30).
- fixed bug in batch mode (null reference exception for large HTML input)
v.1.1.11 changes:
- fixed batch mode issue (exception because of incorrect file path handling)
v.1.1.10 changes:
- fixed issue with "Exit with code 1 due to network error" workaround for overloads that accept output file path
- added GeneratePdf(html,coverHtml,outputPdfFilePath) overload
- VC++ 2013 runtime libraries used by wkhtmltopdf.exe ( msvcp120.dll, msvcr120.dll ) are embedded as DLL resources to simplify app deployment (now you don't need to install VC++ redistributable package)
v.1.1.9 changes:
- hotfix for wkhtmltopdf "temp files not removed" issue: when stdin/stdout is used wkhtmltopdf creates temp files anyway and it doesn't remove output PDF temp file. To workaround this issue PdfGenerator will use own temp files for this case.
v.1.1.8 changes:
- added batch mode (BeginBatch/EndBatch): reuse the same wkhtmltopdf.exe process for processing several HTML templates (20%-30% faster). This feature requires commercial license key.
- some code refactoring for better maintainability
- added workaround for "Exit with code 1 due to network error" wkhtmltopdf issue: when "--load-error-handling" or "--load-media-error-handling" set to "ignore" (or "skip") wkhtmltopdf generates PDF output but process is exited with code = 1 and as result WkHtmlToPdfException is thrown. Now this case is handled correctly (exception is not thrown if PDF is generated).
- now NReco.PdfGenerator.dll is a signed (strongly named) assembly