我在php中使用TCPDF創建pdf,我需要將我的數據包含到pdf中,沒有底部頁邊空白,數據將包含在頁面末尾。TCPDF set bottom margin zero
$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);
我使用上面的代碼。任何人都知道如何從pdf使用tcpdf刪除頁邊空白?
可能附上您收到的輸出 – mukund