26

I have several PDF templates that I would like to load and modify and output using tcpdf.

Is it possible to load an existing PDF and use it as a starting point in tcpdf?

Marko
  • 3,391
  • 3
  • 22
  • 22

3 Answers3

30

You want to use FPDI.

There's some example code here.

timdev
  • 57,660
  • 6
  • 74
  • 90
3

I have tried the free version of FPDI but does not support PDF version 1.5 or higher.

If someone else is looking for a free solution I have used TCPDI. You can find it on github https://github.com/pauln/tcpdi If you are using composer, you can find some fork for composer too. Just search tcpdi on github.

Once you add it to your project, the code is quite simple. It is an extension of TCPDF so all your previous code keep working

This is a snippet from my code. I used it to save a copy of the privacy policy (a static pdf) with the user name and agreement date on each page footer.

// Create new PDF document
$pdf = new TCPDI(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
...
// Add the pages from the source file.
$pagecount = $pdf->setSourceFile($policyPdfPath);
for ($i = 1; $i <= $pagecount; $i++) {
    $tplidx = $pdf->importPage($i);
    $pdf->AddPage();
    $pdf->useTemplate($tplidx);
    // Add agreement text in document footer
    $pdf->SetXY(15,282);
    $pdf->Cell(180, 5, "Documento approvato da {$fullName} il {$date}", 0, 0, 'C');
}
// Send PDF on output
$pdf->Output(FOLDER_PATH . DIRECTORY_SEPARATOR . "{$userId}.pdf", 'F');
  • I tried to download TCPDF, FPDI and TCPDI and including them together to do the same, but there was an issue of different versions support between them .. so can you please pack them all into a single archived file and provide it as a shared Google Drive link? – RyadPasha Feb 11 '21 at 08:55
  • @RyadPasha Here the version of the libraries I am using. Hope could be useful. tcpdf version 5.9.149 - tcpdi version 1.1 (based on fpdi version 1.4.4) - tcpdi_parser version 1.1 (based on tcpdf_parser version 1.0.003) – AbdulkadirFaghi Feb 16 '21 at 17:06
  • I use https://packagist.org/packages/propa/tcpdi – Maxim Mandrik May 26 '21 at 14:31
0

For anyone else finding this, it does appear a PARSER and import class were built for TCPDF (https://tcpdf.org/docs/srcdoc/TCPDF/source-class-TCPDF_IMPORT/#50-100) but as of 2018 was still under development.

Its also worth noting that the solutions above do not allow the contents of the PDF pages to be edited. In other words you import the page as a whole, you cannot edit text content or images.

Antony
  • 2,748
  • 22
  • 21