What is HTML to PDF?
HTML to PDF is a feature provided by EO.Pdf to convert any HTML file, Url or markup
to PDF. It is very easy to use because usually it only takes a single line of code:
[C#]
//Convert c:\test.html to c:\result.pdf
EO.Pdf.HtmlToPdf.ConvertUrl("c:\\test.html", "c:\\result.pdf");
[Visual Basic.NET]
'Convert c:\test.html to c:\result.pdf
EO.Pdf.HtmlToPdf.ConvertUrl("c:\test.html", "c:\result.pdf")