I create dynamic pdf files with php/mysql and ezPDF.
I want to create a pdf file from 3 pages.
Page 1 = dynamically created
Page 2 = dynamically created
Page 3 = dynamically created, but with a background.
The background of page 3 must be an existing pdf file that is placed on the server.
It must be something like this (for example):
$pdf-> newPage
$pdf-> Loadexistingpdf(namefile.pdf)
I tried to make an image from the pdf file en put that as a background but then it's ugly.
I use ezPdf: http://www.ros.co.nz/pdf/
PDFlib is not installed on my server.
Can someone tell me if this is possible?
Maybe with some other application like fpdf: http://www.fpdf.org/
Thanx!