TCPDF中的嵌套表高度

时间:2010-04-14 10:51:58

标签: php html-table pdf-generation tcpdf

是否可以在TCPDF中使其父单元格的嵌套表适合高度?

我的代码:

<?php
require_once('tcpdf/config/lang/eng.php');
require_once('tcpdf/tcpdf.php');

$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);

$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);

$pdf->SetFont('times', 'BI', 8);

$pdf->AddPage();

$pdf->writeHTML('<table>
    <tr><td bgcolor="gray"> Angoisse et vif espoir, sans humeur factieuse.<br/>
Plus allait se vidant le fatal sablier,<br/>
Plus ma torture était âpre et délicieuse;<br/>
Tout mon coeur s’arrachait au monde familier</td>
    <td bgcolor="lightgray">Second</td>
    <td bgcolor="gray">Third</td>
    <td>
        <table style="height: 100%">
            <tr bgcolor="blue" style="height: 30%"><td bgcolor="yellow" style="height: 30%">Ichi</td></tr>
            <tr bgcolor="white" style="height: 30%"><td bgcolor="cyan" style="height: 30%">Ni</td></tr>
            <tr bgcolor="blue" style="height: 30%"><td bgcolor="yellow" style="height: 30%">San</td></tr>
        </table>
    </td></tr>
</table>');

$pdf->Output('example_002.pdf', 'I');
?>

我希望最后一个单元格中的表格完全填充它。有没有办法做到这一点?

1 个答案:

答案 0 :(得分:0)

嗯,似乎唯一的方法是不使用WriteHTML,而是将表格写成单元格序列。