I am usinf FPDI to edit my existing pdf file and its work perfect for single page.
As ou can see i am editing my $tplIdx = $pdf->importPage(1);
first page.
I have six page pdf file and need to add 2 variable in different page.
Is is possible ? How?
<?php
require_once('fpdf.php');
require_once('fpdi.php');
// initiate FPDI
$pdf = new FPDI();
// add a page
$pdf->AddPage();
// set the sourcefile
$pdf->setSourceFile('ex.pdf');
// import page 1
$tplIdx = $pdf->importPage(1);
// use the imported page and place it at point 10,10 with a width of 100 mm
$pdf->useTemplate($tplIdx, 10, 10, 200);
// now write some text above the imported page
$pdf->SetFont('Arial');
$pdf->SetTextColor(255,0,0);
$pdf->SetXY(50, 50);
$pdf->Write(0, "Ajay Patel");
$pdf->Output('newpdf1.pdf', 'D');
?>
Thanks In Advance !
It's hard to try without FPDI installed. But the core idea would be following I believe:
<?php
require_once('fpdf.php');
require_once('fpdi.php');
// initiate FPDI
$pdf = new FPDI();
/* <Virtual loop> */
$pdf->AddPage();
$pdf->setSourceFile('ex.pdf');
$tplIdx = $pdf->importPage(1);
$pdf->useTemplate($tplIdx, 10, 10, 200);
// now write some text above the imported page
$pdf->SetFont('Arial');
$pdf->SetTextColor(255,0,0);
$pdf->SetXY(50, 50);
$pdf->Write(0, "Ajay Patel");
/* </Virtual loop/> */
$pdf->AddPage();
//$pdf->setSourceFile('ex.pdf');
$tplIdx = $pdf->importPage(2);
$pdf->useTemplate($tplIdx, 10, 10, 200); // dynamic parameter based on your page
$pdf->SetFont('Arial');
$pdf->SetTextColor(255,0,0);
$pdf->SetXY(50, 50);
$pdf->Write(0, "Ajay Patel2");
$pdf->Output('newpdf1.pdf', 'D');
?>
If this works you can get rid of the second block of the code and out this on a loop (and dynamic positioning as well).