AddPage()
会自动调用页眉和页脚。如何消除/覆盖它?
答案 0 :(得分:72)
在致电SetPrintHeader(false)
之前,请先使用SetPrintFooter(false)
和AddPage()
方法。像这样:
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, 'LETTER', true, 'UTF-8', false);
$pdf->SetPrintHeader(false);
$pdf->SetPrintFooter(false);
$pdf->AddPage();
答案 1 :(得分:11)
控制何时显示标题 - 或标题位 - 的一个很好的简单方法是扩展TCPDF类并创建自己的标题函数,如下所示:
class YourPDF extends TCPDF {
public function Header() {
if (count($this->pages) === 1) { // Do this only on the first page
$html .= '<p>Your header here</p>';
}
$this->writeHTML($html, true, false, false, false, '');
}
}
当然,如果你不想要任何标题,你可以使用它来返回任何内容。
答案 2 :(得分:2)
以下是另一种删除页眉和页脚的方法:
// Remove the default header and footer
class PDF extends TCPDF {
public function Header() {
// No Header
}
public function Footer() {
// No Footer
}
}
$pdf = new PDF();
答案 3 :(得分:1)
// set default header data
$pdf->SetHeaderData('', PDF_HEADER_LOGO_WIDTH, 'marks', 'header string');
// set header and footer fonts
$pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
$pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
借助上述功能,您可以更改页眉和页脚。
答案 4 :(得分:1)
如何消除/覆盖这个?
此外,Example 3 in the TCPDF docs显示了如何使用您自己的类覆盖页眉和页脚。
答案 5 :(得分:0)
示例:
-第一页,没有页脚
-第二页,有页脚,从第1页开始
结构:
// First page
$pdf->startPageGroup();
$pdf->setPrintFooter(false);
$pdf->addPage();
// ... add page content here
$pdf->endPage();
// Second page
$pdf->startPageGroup();
$pdf->setPrintFooter(true);
$pdf->addPage();
// ... add page content here
$pdf->endPage();