codaxy / wkhtmltopdf

C# wrapper around excellent wkhtmltopdf console utility.
265 stars 92 forks source link

How to use exemple #7

Closed bcampardou closed 9 years ago

bcampardou commented 9 years ago

Hi,

Your library is very easy to use but an little exemple is missing in the documentation. What do you think about :

MemoryStream memory = new MemoryStream();
PdfOutput output = new PdfOutput() { OutputStream = memory };
PdfConvert.ConvertHtmlToPdf(HeaderUrl, BodyUrl, FooterUrl, output);
mstijak commented 9 years ago

Agreed, I have added a sample to the front page.

MikeOtown commented 7 years ago

Where are the examples? I only see one in readme.md.