TCPDF和FPDI,带有页码的页脚不起作用



我将TCPDF与FPDI结合使用。除了页脚(想在那里添加页码(之外,所有工作都很好。

我的代码:

// Extend the TCPDF class to create custom Header and Footer
class MYPDF extends FPDI {
// Page footer
public function Footer() {
// Position at 15 mm from bottom
$this->SetY(-15);
// Set font
$this->SetFont('helvetica', 'I', 8);
// Page number
$this->Cell(0, 5, 'Page '.$this->getAliasNumPage().'/'.$this->getAliasNbPages(), 0, false, 'C', 0, '', 0, false, 'T', 'M');
}
}
// add external PDF with FPDI
$pdf = new FPDI(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', true);
// remove default header/footer
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
// set default monospaced font
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
//set margins
$pdf->SetMargins(1, 4, 1, 1, true);
//set auto page breaks
$pdf->SetAutoPageBreak(TRUE, 3);

如果我不起诉FPDI,这个页脚挂钩工作得很好。我在这里想念什么?

您正在启动FPDI的实例,而不是MYPDF的实例。当然,Footer()方法不会以这种方式调用。

IIRC您还必须将setPrintFooter()保留为true。

相关内容

  • 没有找到相关文章

最新更新