The easiest way is to use TCPDF (http://www.tcpdf.org) and set the images as a full background, as in n. 51.
For example:
// disable auto-page-break $pdf->SetAutoPageBreak(false, 0); // set image 1 $pdf->AddPage(); $this->Image('image_demo1.jpg', 0, 0, 210, 297, '', '', '', false, 300, '', false, false, 0); $this->setPageMark(); // set image 2 $pdf->AddPage(); $this->Image('image_demo2.jpg', 0, 0, 210, 297, '', '', '', false, 300, '', false, false, 0); $this->setPageMark(); // ...
Nicola asuni
source share