An open API service indexing awesome lists of open source software.

https://github.com/nbaztec/dotnet-wkhtmltopdf


https://github.com/nbaztec/dotnet-wkhtmltopdf

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# WkHtmlToPdf wrapper for C#

```
var pdf = PdfGenerator.MakeDefault();

try
{
var bytes = await pdf.Generate(File.ReadAllBytes("test.html"));
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}

File.WriteAllBytes("test.pdf", bytes);
```

Requires [wkhtmltopdf](https://wkhtmltopdf.org/downloads.html) binary in the system PATH.