【发布时间】:2017-04-10 06:16:21
【问题描述】:
我在尝试使用 codeigniter 在 tcpdf 中显示图片时遇到问题,
这是我的 pdf 视图:
$base_url=base_url();
// NON-BREAKING ROWS (nobr="true")
$tbleauproduct = <<<EOD
<br /><br /><br />
<table border="1" align="center">
<tr>
<th>picture</th>
<th>Product name</th>
<th>Price</th>
<th>Quantity</th>
</tr>
<tr>
<td><img src="$base_url/assets/$picture" /></td>
<td>$name</td>
<td>$price</td>
<td>$qty</td>
</tr>
</table>
EOD;
$pdf->writeHTML($tbleauproduct, true, false, true, false, '');
结果如下:
TCPDF ERROR: [Image] Unable to get the size of the image: http://localhost:8888/open_bay//assets/130501153059-htc-one-1024x576.jpeg
【问题讨论】:
-
PDF 不是图像。
-
避免发布代码图片。始终将代码作为文本发布。我已经为你替换了你的图片。
标签: php codeigniter codeigniter-2 codeigniter-3 tcpdf