20

我正在使用 php 中的 TCPDF 创建 pdf,我需要将我的数据包含在没有底部边距的 pdf 中,数据将包含在页面的末尾。

$pdf->SetLeftMargin(14);
$pdf->SetTopMargin(6);
$pdf->SetFont($fontname, '', '9');
$pdf->setPrintHeader(false);
$pdf->SetFooterMargin(0);
$pdf->setPrintFooter(false);

$pdf->AddPage();
$pdf->writeHTML($html, true, 0, true, 0);

我正在使用上面的代码。有人知道如何使用 tcpdf 从 pdf 中删除边距空间吗?

4

2 回答 2

71

您看到的边距是由于 pageBreak 边距

添加这个$pdf->SetAutoPageBreak(TRUE, 0); 肯定会从底部删除边距

于 2013-04-03T06:36:36.127 回答
3

试试这个

 $pdf->setCellPaddings(0,0,0,0);

阅读这个......你会有所了解...... http://www.tcpdf.org/examples/example_022.phps

于 2013-04-03T06:03:59.500 回答