3
我正在使用TCPDF並獲得以下功能,將頁碼添加到頁腳。但是,這只是頁面編號的中心,我希望能夠在左側添加說明並在右側添加參考編號。換句話說,3列,左列左對齊說明,中間列以頁碼和居中右列與參考編號和右對齊。TCPDF頁腳如何添加列
class MYPDF extends TCPDF {
// Page footer
public function Footer() {
// Position at 15 mm from bottom
$this->SetY(-15);
// Set font
$this->SetFont('Calibri', '', 8);
// Page number
$pageNumbers = 'Page '.$this->getAliasNumPage().' of '.$this->getAliasNbPages();
$this->Cell(0, 10, $pageNumbers, 0, false, 'C', 0, '', 0, false, 'T', 'M');
}
}