I have a task to change the PDF and add an image to it, for which I used the FPDF and FPDI libraries .. whose action code is given below:
<?php require_once('fpdf.php'); require_once('fpdi.php'); $pdf =& new FPDI(); $pdf->AddPage();
But when I get Modified pdf, I can get a very distorted modified pdf ... whose screenshot is below:

The original document is below:

Therefore, can someone help me in getting the correct modified PDF code using the same code / modified code ..?
php pdf fpdf fpdi
OM The Eternity
source share