Convert php page to pdf on the fly
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
Convert HTML + CSS to PDF with PHP?
我想通过页面内的链接,将类似http://alesking.org/projects/html-resume-template/demo/resume.php的页面快速转换为pdf,我尝试了dompdf,但没有得到结果。
我在HTML2PDF上取得了一些成功,请试一试。例子:
1 2 3 4 5 6 | $content = get_include_contents('/resume.php'); require_once(dirname(__FILE__).'/html2pdf/html2pdf.class.php'); $html2pdf = new HTML2PDF('P', 'A4', 'en'); $html2pdf->WriteHTML($content); $html2pdf->Output('example.pdf'); |
我发现这个非常好http://code.google.com/p/wkhtmltopdf/。它使用WebKit引擎。
http://www.php.net/manual/en/pdf.examples-basic.php怎么样?
查看zend_pdf(),它提供了所有可能性。如果您需要更大的自由度和其他格式,我建议您使用LaTex和一个
不幸的是,到目前为止我还没有看到一台像样的HTML2PDF发电机。
我个人使用tcpdf。它完全支持UTF-8,您不需要任何外部库来使用它。