1. Go to this page and download the library: Download pravodev/lara-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/ */
use LynX39\LaraPdfMerger\Facades\PdfMerger;
//...
$pdfMerger = PDFMerger::init(); //Initialize the merger
$pdfMerger->addPDF('samplepdfs/one.pdf', '1, 3, 4');
$pdfMerger->addPDF('samplepdfs/two.pdf', '1-2');
$pdfMerger->addPDF('samplepdfs/three.pdf', 'all');
//You can optionally specify a different orientation for each PDF
$pdfMerger->addPDF('samplepdfs/one.pdf', '1, 3, 4', 'L');
$pdfMerger->addPDF('samplepdfs/two.pdf', '1-2', 'P');
$pdfMerger->merge(); //For a normal merge (No blank page added)
// OR..
$pdfMerger->duplexMerge(); //Merges your provided PDFs and adds blank pages between documents as needed to allow duplex printing
// optional parameter can be passed to the merge functions for orientation (P for protrait, L for Landscape).
// This will be used for every PDF that doesn't have an orientation specified
$pdfMerger->save("file_path.pdf");
// OR...
$pdfMerger->save("file_name.pdf", "download");
// REPLACE 'download' WITH 'browser', 'download', 'string', or 'file' for output options
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.