我创建了一个带有HTML的表,用这种格式插入到TCPDF :: writeHTMLCell中。该表仅包含图像。
$html_table ='<table align="right" border="1">
<tr>
<td width="10%" align="center">
<img src="http://localhost/img1.png" width="40" height="40" />
</td>
<td width="10%" align="center">
<img src="http://localhost/img2.png" width="40" height="40" />
</td>
</tr>
<tr>
<td width="10%" align="center">
<img src="http://localhost/img3.png" width="40" height="40" />
</td>
<td width="10%" align="center">
<img src="http://localhost/img4.png" width="40" height="40" />
</td>
</tr>
</table>';
这里是创建HTMLCell的TCPDF代码
$pdf->writeHTMLCell(100, '', '', $pdf->getY(), $html_table, 1, 0, 0, false, 'R', false);
即使HTML可以在页面右侧显示表格,TCPDF也只在单元格左侧显示此表格。
将表格对齐,放在HTMLCell右侧的正确代码是什么?