即时将php页面转换为pdf
可能重复:
使用PHP将HTML + CSS转换为PDF?
我想通过页面内的链接将http://alexking.org/projects/html-resume-template/demo/resume.php这样的页面转换为pdf,我尝试了dompdf,但没有得到结果。
我在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');
查看Zend_PDF(),它提供了所有的可能性。 如果你需要更大的自由度和其他格式,我建议使用latex和latex2pdf
,但是这对你想实现的功能可能有点太大了。
不幸的是,到目前为止我还没有看到一个像样的html2pdf生成器。
那么http://www.php.net/manual/en/pdf.examples-basic.php?
链接地址: http://www.djcxy.com/p/15583.html