A clone to FDPI
FPDI is a collection of PHP classes facilitating developers to read pages from existing PDF documents and use them as templates in FPDF, which was developed by Olivier Plathey. Apart from a copy of FPDF, FPDI does not require any special PHP extensions.
As of version 1.2.1 FPDI can also be used with TCPDF.
Run the command:
$ composer require "setasign/fpdi"
The usage is very easy: open the document, put a page into a template, and use it like an image!
<?php
// ...
use \FPDI;
use \FPDF;
// ...
$pdf = new FPDI();
$pageCount = $pdf->setSourceFile("Fantastic-Speaker.pdf");
$tplIdx = $pdf->importPage(1, '/MediaBox');
$pdf->addPage();
$pdf->useTemplate($tplIdx, 10, 10, 90);
$pdf->Output();