我想通过页面内的链接将此类http://alexking.org/projects/html-resume-template/demo/resume.php之类的页面转换为pdf,我尝试了dompdf但未能获得结果。
答案 0 :(得分:3)
我在HTML2PDF取得了一些成功,试一试。 例如:
$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');
答案 1 :(得分:0)
查看Zend_PDF(),它提供了所有可能性。如果你需要更大的自由度和其他格式,我建议使用latex和latex2pdf
- 调用,但这个可能对你想要达到的目标有点大。
不幸的是,到目前为止我还没有看到过像样的html2pdf生成器。
答案 2 :(得分:0)
答案 3 :(得分:0)
我发现这非常好http://code.google.com/p/wkhtmltopdf/。它使用webkit引擎。
答案 4 :(得分:-1)
我个人使用TCPDF。它完全支持UTF-8,您不需要任何外部库来使用它。