Мне нужно добавить небольшой текст, чтобы он был в нижнем колонтитуле моего PDF-файла. Я пытаюсь следующий код:
require_once('pdf/fpdf/fpdf.php');
require_once('pdf/fpdi/Fpdi.php');
$fullPathToFile = "../assets/files/".$arquivo;
$pdf = new FPDI();
$pdf->AddPage();
$pdf->setSourceFile($fullPathToFile);
$tplIdx = $this->pdf->importPage(1);
$this->pdf->useTemplate($tplIdx, 0, 0, 0, 0, true);
$this->pdf->SetFont('Arial', '', '13');
$this->pdf->SetTextColor(0,0,0);
$this->pdf->SetXY(20, 20);
$this->pdf->Write(0, 'my text');
$this->pdf->Output('gift_coupon_generated.pdf', 'D');
но возвращается следующее сообщение об ошибке:
Неустранимая ошибка: класс 'setasign \ Fpdi \ FpdfTpl' не найден в
/home/mysite/public_html/painel/pdf/fpdi/Fpdi.php в строке 25