我收到此错误:
Fatal error: Uncaught exception 'DOMPDF_Exception' with message 'Unable to find a suitable font replacement for: 'serif'' in /home/users4/p/www/website/lib/dompdf-0.5.2/include/style.cls.php:793
基本示例:
require_once("lib/dompdf-0.5.2/dompdf_config.inc.php");
$html =
'<html><body>'.
'<p>Put your html here, or generate it with your favourite '.
'templating system.</p>'.
'</body></html>';
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->render(); //<--- this line generate the error
$dompdf->stream("sample.pdf");
我在777中设置了“/ lib /”的权限。我把所有文件夹“dompdf-0.5.2”放在我的FTP(PHP 5.2+)中。 我在谷歌搜索了一个解决方案,但没有任何帮助。
如果您需要更多信息,请告诉我......我迷失了......
编辑:我在本地测试过,我有同样的问题,这是xDebug错误的屏幕:http://snag.gy/10yIg.jpg答案 0 :(得分:1)
朋友给我另一个版本“dompdf_0.6_b2”,它完美无缺......