我在PHP中使用TCPDF创建PDF,我需要包括我的数据转换成PDF无底margines,这些数据将包括在页面的末端。
$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);
我使用上述code.Anyone知道如何从PDF使用TCPDF去除余量空间?