With PHP application, I have to generate single PDF documents, from set of images.

Which is best way to achieve this? Can I use TCPDF library, and can you give me some example?

link|improve this question

69% accept rate
feedback

4 Answers

up vote 1 down vote accepted

You could use this libarary. It is possible to convert even html+css to pdf. Looks like some browser engine written on PHP in this library. If you want something simpler you could use this library

link|improve this answer
feedback

I don't know your requirements but ImageMagick could probably do the trick. I believe that they also have a php wrapper available for all the image manipulation/conversion functions.

link|improve this answer
feedback

The PDFNet SDK may work well for you. "PDFNet SDK is available as a .NET component and as a cross-platform Java, C/C++, Python, Ruby, and PHP PDF library available on a wide range of platforms (i.e. Windows, Linux, Mac OS X, etc)."

link|improve this answer
feedback

The easiest way is to use TCPDF (http://www.tcpdf.org) and set the images as full background as on the example 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();

// ...
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.