codaxy / wkhtmltopdf

C# wrapper around excellent wkhtmltopdf console utility.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Codaxy.WkHtmlToPdf

This is a small C# wrapper utility around wkhtmltopdf console tool. You can use it to easily convert HTML reports to PDF.

NuGet

NuGet includes single source file in your project.

Install-Package Codaxy.WkHtmlToPdf

Usage

PdfConvert.ConvertHtmlToPdf(new PdfDocument 
{ 
    Url = "http://wkhtmltopdf.org/",
    HeaderLeft = "[title]",
    HeaderRight = "[date] [time]",
    FooterCenter = "Page [page] of [topage]"

}, new PdfOutput 
{
    OutputFilePath = "wkhtmltopdf-page.pdf"
});

Licence

This project is available under MIT Licence.

About

C# wrapper around excellent wkhtmltopdf console utility.


Languages

Language:C# 99.5%Language:Batchfile 0.5%