Westwind.WebView.HtmlToPdf
0.6.0
See the version list below for details.
dotnet add package Westwind.WebView.HtmlToPdf --version 0.6.0
NuGet\Install-Package Westwind.WebView.HtmlToPdf -Version 0.6.0
<PackageReference Include="Westwind.WebView.HtmlToPdf" Version="0.6.0" />
paket add Westwind.WebView.HtmlToPdf --version 0.6.0
#r "nuget: Westwind.WebView.HtmlToPdf, 0.6.0"
// Install Westwind.WebView.HtmlToPdf as a Cake Addin #addin nuget:?package=Westwind.WebView.HtmlToPdf&version=0.6.0 // Install Westwind.WebView.HtmlToPdf as a Cake Tool #tool nuget:?package=Westwind.WebView.HtmlToPdf&version=0.6.0
.NET Html to Pdf Conversion using WebView on Windows
Creating Pdf from Html with .NET on Windows using the WebView2 control
Library | Nuget Package |
---|---|
Westwind.WebView.HtmlToPdf | |
Westwind.WebView.HtmlToPdf.Extended |
Please note this is a very new project and there's significant churn at the moment. While below v1.0 semantic versioning is not used and there may be significant breaking changes between minor versions.
This library provides a quick way to print Html to Pdf on Windows using the WebView control. You can generate Pdf from Html of a Url or file by using a few different mechanisms:
- To File
- To Stream
- Using an Async Call
- Using Event Callbacks
The base library uses the built-in WebView2 Runtime in Windows so it has no external dependencies for your applications assuming you are running on a recent version of Windows that has the WebView2 Runtime installed. The extended package version provides additional features, but it also has additional dependencies and is slower to run and has a larger distribution footprint. In order to keep the base functionality very small and lean these two packages have been separated.
If you would like to find out more how this library works and how the original code and Pdf code was build, you can check out this blog post here:
Prerequisites
The library is Windows specific, but it works in a variety of environments on Windows.
Support for
- Windows 11/10 Server 2019/2022
- Desktop Applications
- Console Applications
- Service Applications
The component does not support:
- Non Windows platforms
Targets
- net8.0-windows
- net6.0-windows
- net472
Dependencies
Deployed applications have the following dependencies:
WebView2 Runtime
On recent updates of Windows 11 and 10, the WebView is pre-installed as a system component. On Servers however, you may have to explicitly install the WebView Runtime.Windows Desktop Runtime
The WebView2 component is dependent on Windows Desktop Runtime libraries and therefore requires the Desktop runtime to be installed even for server applications.
Using the library
There are two versions of the library:
Westwind.WebView.HtmlToPdf
The base Html to Pdf conversion library. This library only has a single dependency on the WebView control and provides very fast base Html to Pdf conversion. This library is lean and fast and does just base Pdf conversion.Westwind.WebView.HtmlToPdf.Extended
This library provides all the base features and adds Table of Contents generation and CSS injection (in progress) and document information configuration (in progress). This library has additional dependencies, a larger footprint, and renders considerably slower as it has to parse the incoming URL/file multiple times.
You can install either one of these NuGet packages (no need for both):
dotnet add package westwind.webview.htmltopdf
dotnet add package westwind.webview.htmltopdf.Extended
Note the .Extended
package has a dependency on the base package so no need to include both. Both libraries have the same base interface, other than the top level class name:
- HtmlToPdfHost
- HtmlToPdfHostExtended
There are a few additional properties specific to the added functionality of the extended version, but the core processing interface is the same.
There are 4 separate output methods:
- PrintToPdfStreamAsync() - Runs async and returns a
result.ResultStream
- PrintToPdfAsync() - Runs async and creates a Pdf output file
- PrintToPdfStream() - Creates a Pdf and returns it via Callbakd in
result.ResultStream
- PrintToPdf() - Creates a Pdf to file a notifies completion via Callback
All of the methods take a file or Url as input. File names have to be fully qualified with a path. Output to file requires that you provide a filename.
All requests return a PdfPrintResult
structure which has a IsSuccess
flag you can check. For stream results, the ResultStream
property will be set with a MemoryStream
instance on success. Errors can use the Message
or LastException
to retrieve error information.
Async Call Syntax for Stream Result
var htmlFile = Path.GetFullPath("HtmlSampleFileLonger-SelfContained.html");
var outputFile = Path.GetFullPath(@".\test3.pdf");
File.Delete(outputFile);
var host = new HtmlToPdfHostExtended(); // or new HtmlPdfHost()
// optional Pdf/Print settings
var pdfPrintSettings = new WebViewPrintSettings()
{
// default margins are 0.4F
MarginBottom = 0.2F,
MarginLeft = 0.2f,
MarginRight = 0.2f,
MarginTop = 0.4f,
ScaleFactor = 0.8F
ShouldPrintHeaderAndFooter = true,
HeaderTitle = "Blog Post Title"
};
// We're interested in result.ResultStream
var result = await host.PrintToPdfStreamAsync(htmlFile, pdfPrintSettings);
Assert.IsTrue(result.IsSuccess, result.Message);
Assert.IsNotNull(result.ResultStream); // This is what we're after
// Copy resultstream to output file so we can display it
File.Delete(outputFile);
using var fstream = new FileStream(outputFile, FileMode.OpenOrCreate, FileAccess.Write);
result.ResultStream.CopyTo(fstream);
result.ResultStream.Close(); // Close returned stream!
ShellUtils.OpenUrl(outputFile);
Async Stream Example in a Web Application
[HttpGet("rawpdf")]
public async Task<IActionResult> RawPdf()
{
// source file or URL to render to Pdf
var file = Path.GetFullPath("./HtmlSampleFile-SelfContained.html");
var pdf = new HtmlToPdfHostExtended();
var pdfResult = await pdf.PrintToPdfStreamAsync(file, new WebViewPrintSettings { PageRanges = "1-10"});
if (pdfResult == null || !pdfResult.IsSuccess)
{
Response.StatusCode = 500;
return new JsonResult(new
{
isError = true,
message = pdfResult.Message
});
}
return new FileStreamResult(pdfResult.ResultStream, "application/pdf");
}
Async Call Syntax for File Output
// Url or full qualified file path
var htmlFile = Path.GetFullPath("HtmlSampleFileLonger-SelfContained.html");
var outputFile = Path.GetFullPath(@".\test2.pdf");
File.Delete(outputFile);
var host = new HtmlToPdfHost(); // or new HtmlToPdfHostExtended()
var result = await host.PrintToPdfAsync(htmlFile, outputFile);
Assert.IsTrue(result.IsSuccess, result.Message);
ShellUtils.OpenUrl(outputFile); // display the Pdf file you specified
Callback Syntax to Pdf File
var htmlFile = Path.GetFullPath("HtmlSampleFile-SelfContained.html");
var outputFile = Path.GetFullPath(@".\test.pdf");
File.Delete(outputFile);
var host = new HtmlToPdfHost();
// Callback when complete
var onPrintComplete = (PdfPrintResult result) =>
{
if (result.IsSuccess)
{
ShellUtils.OpenUrl(outputFile);
Assert.IsTrue(true);
}
else
{
Assert.Fail(result.Message);
}
};
var pdfPrintSettings = new WebViewPrintSettings()
{
// default margins are 0.4F
MarginBottom = 0.2F,
MarginLeft = 0.2f,
MarginRight = 0.2f,
MarginTop = 0.4f,
ScaleFactor = 0.8f,
PageRanges = "1,2,5-7"
};
host.PrintToPdf(htmlFile, outputFile, onPrintComplete, pdfPrintSettings);
// make sure app keeps running
Event Syntax to Stream
// File or URL
var htmlFile = Path.GetFullPath("HtmlSampleFile-SelfContained.html");
var host = new HtmlToPdfHost();
// Callback on completion
var onPrintComplete = (PdfPrintResult result) =>
{
if (result.IsSuccess)
{
// create file so we can display
var outputFile = Path.GetFullPath(@".\test1.pdf");
File.Delete(outputFile);
using var fstream = new FileStream(outputFile, FileMode.OpenOrCreate, FileAccess.Write);
result.ResultStream.CopyTo(fstream);
result.ResultStream.Close(); // Close returned stream!
ShellUtils.OpenUrl(outputFile);
Assert.IsTrue(true);
}
else
{
Assert.Fail(result.Message);
}
};
var pdfPrintSettings = new WebViewPrintSettings()
{
MarginBottom = 0.2F,
MarginLeft = 0.2f,
MarginRight = 0.2f,
MarginTop = 0.4f,
ScaleFactor = 0.8f,
};
host.PrintToPdfStream(htmlFile, onPrintComplete, pdfPrintSettings);
// make sure app keeps running
The Task
based methods are easiest to use so that's the recommended syntax. The callback based methods are there so you can more easily use this if you are running in a non-async and can't easily transition to async.
Both approaches run on a separate STA thread to ensure that the WebView can run regardless of whether you are running inside of an application that has a main UI/STA thread and it works inside of Windows Service contexts.
Support us
If you use this project and it provides value to you, please consider supporting by contributing or supporting via the sponsor link or one time donation at the top of this page. Value for value.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0-windows7.0 is compatible. net7.0-windows was computed. net8.0-windows was computed. net8.0-windows7.0 is compatible. |
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
-
.NETFramework 4.7.2
- Microsoft.Web.WebView2 (>= 1.0.2420.47)
-
net6.0-windows7.0
- Microsoft.Web.WebView2 (>= 1.0.2420.47)
-
net8.0-windows7.0
- Microsoft.Web.WebView2 (>= 1.0.2420.47)
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 |
---|---|---|
0.12.0 | 149 | 11/5/2024 |