How can I create a new document using other pdfs that I'm generating?

I have methods to create some documents, and I want to merge them all in a big pdf, how can I do that with TCPDF?

I do not want to use other libs.

link|improve this question

64% accept rate
feedback

4 Answers

Hi i think TCPDF is not able to merge pdf files.

You can try it with an shell command and

PDFTK Toolkit

So you dont have to use an other pdf library.

link|improve this answer
The problem with that is that I have to save each pdf then merge and the erase again the pdfs, is tcpdf really unable to merge documents? :( – LuRsT Oct 27 '09 at 11:06
feedback

Check out FPDI and FPDF_TPL. This isn't a perfect solution, but you can basically use FPDF_TPL to create a template of your PDF file and the insert it into your PDF file.

link|improve this answer
LOL Did you have a bad experience with FPDI. Looks like you're going around posting this everywhere you can find something about FPDI. – Darryl Hein Sep 4 '10 at 15:06
feedback

This solution works pretty well: http://neo22s.com/concatenate-pdf-in-php/

link|improve this answer
feedback

Why don't you use Zend_PDF, it 's really a very good way to merge file.

<?php
require_once 'Zend/Pdf.php';

$pdf1 = Zend_Pdf::load("1.pdf");
$pdf2 = Zend_Pdf::load("2.pdf");

foreach ($pdf2->pages as $page){
$pdf1->pages[] = $page;
}

$pdf1->save('3.pdf');
?>
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.