Webpage convert to PDF button

后端 未结 3 1577
刺人心
刺人心 2021-01-05 10:57

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 w

3条回答
  •  青春惊慌失措
    2021-01-05 11:49

    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');
    

提交回复
热议问题