SetXY(0, -5); $this->SetFont('Arial', 'I', 9); $this->SetTextColor(135, 135, 135); $trans = ctrans('texts.pdf_page_info', ['current' => $this->PageNo(), 'total' => '{nb}']); // $trans = iconv('UTF-8', 'ISO-8859-7', $trans); $this->Cell(0, 5, $trans, 0, 0, $this->text_alignment); } public function setAlignment($alignment) { if (in_array($alignment, ['C', 'L', 'R'])) { $this->text_alignment = $alignment; } return $this; } }