TCPDF 设置下边距为零

2022-08-30 19:25:56

我在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中删除边距空间吗?


答案 1

您看到的边距是由于页距隔页边距造成的

添加此绝对从底部删除边距$pdf->SetAutoPageBreak(TRUE, 0);


答案 2

试试这个

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

阅读此内容...你会得到一些想法....http://www.tcpdf.org/examples/example_022.phps


推荐