是否可以在 TCPDF 中实现自定义页码格式?如果是,怎么做?
提前致谢。
$this->Cell(0, 10, 'Page '.$this->getAliasNumPage().' of '.$this->getAliasNbPages(), 0, false, 'C', 0, '', 0, false, 'T', 'M');
您必须扩展 TCPDF 类,如下例所示:
class MYPDF extends TCPDF {
// Page footer
public function Footer() {
// Position at 15 mm from bottom
$this->SetY(-8);
// Set font
$this->SetFont('helvetica', 'I', 8);
// Page number
$this->Cell(0, 10, 'Page '.$this->getAliasNumPage().' of '.$this->getAliasNbPages(), 0, false, 'C', 0, '', 0, false, 'T', 'M');
}
}
$pdf = new MYPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
$pdf->AddPage();
如果你想改变 TCPDF 的工作方式,你需要覆盖页脚方法并实现你的自定义逻辑。
class CUSTOMPDF extends TCPDF {
public function Footer() {
$this->SetY(-10);
$this->SetFont('verdana', 'N', 9);
//more logic, take a look at the parent::Footer method
}
}
通过调用使用它$pdf = new CUSTOMPDF(<options>);