Instructions HTML to PDF Using HTML2FPDF
- 1Download the HTML2FPDF Class Library files (see Resources).
- 2Paste the following code in Notepad:<?phprequire('html2fpdf.php');$pdf=new HTML2FPDF();$pdf->AddPage();$fp = fopen("yourfile.html","r");$strContent = fread($fp, filesize("sample.html"));fclose($fp);$pdf->WriteHTML($strContent);$pdf->Output("yourfile.pdf");echo "PDF file is generated successfully!";?>Replace "yourfile.html" with the name of the HTML file you wish to convert and "yourfile.pdf" with your desired PDF file name.
- 3Save it as a PHP file.
- 4Upload your PHP file, the HTML2FPDF Class Library files, and the HTML file that you wish to convert in the same directory on your site.
- 5Access the PHP file on your website to convert the HTML file to PDF.
HTML to PDF Using DOMPDF
- 6Download DOMPDF (see Resources).
- 7Paste the following code in Notepad:<?phprequire_once("dompdf_config.inc.php");$html ='<html><body>'.'<p>Put your html here, or generate it with your favourite '.'templating system.</p>'.'</body></html>';$dompdf = new DOMPDF();$dompdf->load_html($html);$dompdf->render();$dompdf->stream("yourhtml.pdf");?>In the section that indicates "Put your html here," paste the HTML code that you wish to convert to PDF.
- 8Save it as a PHP file.
- 9Upload your your PHP file and the DOMPDF files you downloaded within in the same directory on your site.
- 10Access the PHP file on your website to convert HTML to PDF.
Convert HTML to PDF Using PDFonFly
- 11Go to pdfonfly.com.
- 12Click on the "Text/HTML to PDF" link.
- 13Click on "Source" in the text editing tool and paste your HTML.
- 14Click on the "Create PDF" button.
- 1
No comments:
Post a Comment