我使用tcpdf将HMTL转换为PDF的代码。
$html = '<pre>
<br/>
<h3><a href="/node/02" title="View Original Document">aa</a></h3>
<br/>
<img width="628" height="674" class="imagecache imagecache-assetimage" title="" alt="" src="http://test/a_image/AssignPage.jpg" /> </pre>';
$htm = '<div style="font-size:40px !important;">'.$html.'</div>';
$pdf->writeHTML($htm, TRUE, TRUE, TRUE, FALSE, '');
以上代码会显示以下错误消息:
TCPDF ERROR: [Image] Unable to get image: /path-of-the-image
如果HTML不包含图片,则表示效果非常好。
如何解决此问题?
任何帮助都会感恩和感激......
提前致谢..
答案 0 :(得分:4)
需要为位于tcfdf的缓存文件夹提供777权限。
它有效......
感谢...