TCPDF - HTML表格右对齐writeHTMLCell不起作用

时间:2016-08-18 10:48:57

标签: php html tcpdf

我创建了一个带有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右侧的正确代码是什么?

0 个答案:

没有答案