Webpage convert to PDF button

17,695

I use wkhtmltopdf - works very well - http://code.google.com/p/wkhtmltopdf/ there is a PHP wrapper

Updated based on comments below on usage :

How to use the integration class:

require_once('wkhtmltopdf/wkhtmltopdf.php');     // Ensure this path is correct !
$html = file_get_contents("http://www.google.com");
$pdf = new WKPDF();
$pdf->set_html($html);
$pdf->render();
$pdf->output(WKPDF::$PDF_EMBEDDED,'sample.pdf');
Share:
17,695
Hans de Vries
Author by

Hans de Vries

Updated on August 04, 2022

Comments

  • Hans de Vries
    Hans de Vries almost 2 years

    I have a website now and I want to create a button on it to convert this page to PDF. Is there any code to make this happen? I cannot find it on the internet.

    So I want to have a button and when I press on it it converts the page to a .PDF file.

    I do not want to use a third party website to generate the PDF's. I want to use it for internal purposes to generate files with PHP. So I need the code what can make a PDF for each page.