Site Map | About Us | Contact Us  
 The same content in Microsoft HTML help file format is included in the download package.

Overview

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")
        

Direct link to this topic