tcpdf没有正确地使用图像引用HTML文档 - PHP

时间:2011-09-09 10:43:20

标签: php html tcpdf

我使用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" />&nbsp</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不包含图片,则表示效果非常好。

如何解决此问题?

任何帮助都会感恩和感激......

提前致谢..

1 个答案:

答案 0 :(得分:4)

需要为位于tcfdf的缓存文件夹提供777权限。

它有效......

感谢...