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からマージンスペースを削除する方法を知っている人はいますか?