Как я могу показать количество страниц только со второй страницы в tcpdf?
Как я могу расположить по центру количество страниц?
Я использую этот класс
private $customFooterText = "";
/**
* @param string $customFooterText
*/
public function setCustomFooterText($customFooterText)
{
$this->customFooterText = $customFooterText;
}
public function Footer()
{
// Linha 1
$this->SetY(-16);
$this->SetFont('helvetica', 'I', 8);
$this->Cell(0, 10, $this->customFooterText, 0, false, 'C', 0, '', 0, false, 'T', 'M');
// Números de página
$this->Cell(0, 10, 'Pag '.$this->getAliasNumPage().'/'.$this->getAliasNbPages(), 0, false, 'C', 0, '', 0, false, 'T', 'M');
}
Большое спасибо!