Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2014
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <?pdf
  2. include 'PDFMerger.php';
  3. $pdf = new PDFMerger;
  4.  
  5. <!-- Merge 'common.pdf' and 'diff-1.pdf' -->
  6. $pdf->addPDF('commonpdf/common.pdf', 'all');
  7. $pdf->addPDF('allpdf/diff-1.pdf', 'all');
  8. $pdf->merge('file', 'pdftest/first.pdf');
  9.  
  10. <!-- Merge 'common.pdf' and 'diff-2.pdf' -->
  11. $pdf->addPDF('commonpdf/common.pdf', 'all');
  12. $pdf->addPDF('allpdf/diff-2.pdf', 'all');
  13. $pdf->merge('file', 'pdftest/second.pdf');
  14.  
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement