Can FPDF/FPDI use a PDF in landscape format as a template?

40,139

sure, it is no problem. Just add "L" as parameter when calling "addPage()". Here is a sample which works fine for me (the template is in landscape)

<?php
require_once('fpdf.php');
require_once('fpdi.php');

$pdf =& new FPDI();
$pdf->addPage('L');
$pagecount = $pdf->setSourceFile('template.pdf');
$tplIdx = $pdf->importPage(1); 
$pdf->useTemplate($tplIdx); 
$pdf->SetFont('Arial'); 
$pdf->SetTextColor(255,0,0); 
$pdf->SetXY(25, 25); 
$pdf->Write(0, "This is just a test"); 
$pdf->Output('newpdf.pdf', 'F');

?>
Share:
40,139
Jim OHalloran
Author by

Jim OHalloran

Updated on July 09, 2022

Comments

  • Jim OHalloran
    Jim OHalloran almost 2 years

    I am trying to import an existing PDF as a template with FPDI. The template is in landscape format. If I import the template into a new document the template page is inserted in portrait form with the content rotated 90 degrees. If my new document is in portrait the full content appears, but if the new document is also landscape, the content is cropped.

    Is it possible to use a landscape template with FPDI?

  • Admin
    Admin almost 12 years
    how to print layout of pdf file in output. now it is printing like this: "0 0 0 rg BT /F1 15 Tf 1 0 0 1 231.49 739.13 (Yesterday Task Report)Tj ET 0 0 1 rg BT /F2 12 Tf 1 0 0 1 37.13 707.29 ". but this is the form of table.