Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get the exact modified PDF using FPDF/FPDI?

Tags:

php

pdf

fpdf

fpdi

i have a task to modify the PDF and add an image into it, for which I Have 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();

//Set the source PDF file
$pagecount = $pdf->setSourceFile("Completed.pdf");

//Import the first page of the file
$tpl = $pdf->importPage(1);


//Use this page as template
// use the imported page and place it at point 20,30 with a width of 170 mm
$pdf->useTemplate($tpl, 20, 30, 170);

#Print Hello World at the bottom of the page

//Select Arial italic 8
$pdf->SetFont('Arial','',8);
$pdf->SetTextColor(0,0,0);
$pdf->SetXY(90, 160);
//$pdf->Rotate(90);
$pdf->Image('think.jpg',120,240,20,20);
$pdf->Image('think.jpg',120,260,20,20);
//$pdf->Write(0, "Hello World");

$pdf->Output("modified_pdf.pdf", "F");
?>

But When I get the Modified pdf I can get very distorted modified pdf... whose screen shot is given below:

enter image description here

The Original Document is as given below:

enter image description here

Hence Could anyone help me in retrieveing the correct Modified PDF using the same code/ modified code..?

like image 979
OM The Eternity Avatar asked Mar 10 '11 06:03

OM The Eternity


1 Answers

its fpdf_tpl.php file needed to be updated with new download

like image 179
OM The Eternity Avatar answered Nov 06 '22 08:11

OM The Eternity