PHP code example of edigomes / pdf-merger
1. Go to this page and download the library: Download edigomes/pdf-merger library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
edigomes / pdf-merger example snippets
$pdf = new \Clegginabox\PDFMerger\PDFMerger;
$pdf->addPDF(file_get_contents('http://beta.local/test1.pdf'));
$pdf->addPDF(file_get_contents('http://beta.local/test2.pdf');
$pdf->merge('file', 'samplepdfs/TEST2.pdf', 'P');
// REPLACE 'file' WITH 'browser', 'download', 'string', or 'file' for output options
// Last parameter is for orientation (P for protrait, L for Landscape).
// This will be used for every PDF that doesn't have an orientation specified