关键是删除页眉和页脚,将边距设置为零并将自动分页符设置为 false。
例如,要打印覆盖整个 A4 页面的图像:
// create new PDF document
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
// remove default header/footer
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
// set margins
$pdf->SetMargins(0, 0, 0, true);
// set auto page breaks false
$pdf->SetAutoPageBreak(false, 0);
// add a page
$pdf->AddPage('P', 'A4');
// Display image on full page
$pdf->Image('background.jpg', 0, 0, 210, 297, 'JPG', '', '', true, 200, '', false, false, 0, false, false, true);
//Close and output PDF document
$pdf->Output('page.pdf', 'I');
文档中还有一个使用自定义标头的示例:
http://www.tcpdf.org/examples/example_051.phps