PDF Fusion for Laravel. Tested with Laravel 7
and 8
.
- Also works with PDF versions above
1.4
- Works with
PHP7.3/ 7.4/ 8.0^
and laravel8
You can install the package via composer:
composer require doode/pdf-fusion-laravel
apt-get install ghostscript
pacman -S ghostscript
Make the following changes at config/app.php
if your laravel version does not automatically identify the package
'providers' => [
...
Doode\PdfFusionLaravel\Providers\PdfFusionServiceProvider::class
],
'aliases' => [
...
'PdfFusion' => Doode\PdfFusionLaravel\Facades\PdfFusionFacade::class
]
When merging PDFs versions above 1.4 or PDF strings, a temporary PDF will be created during the process and stored in
storage/tmp
directory, therefore you may need to create it beforehand.
ATENTION
Also, note that this package requires Ghostscript installed on the server in order to functiona properly with PDF versions 1.5+. Install Guide
You can add PDFs for fusion, by specifying a file path of PDF with addPathToPDF
method, or adding PDF file as string with addPDFString
method. The second argument of both methods is array of selected pages ('all'
for all pages) and the third argument is PDFs orientation (portrait or landscape).
[P] = Portrait
[L] = Landscape
$fusion->addPathToPDF('/path/to/pdf', 'all', 'P');
$fusion->addPDFString(file_get_contents('path/to/pdf'), ['1', '2'], 'L')
You can set a merged PDF name by using setFileName
method.
$merger->setFileName('output.pdf');
In the end, finnish process with merge
or duplexMerge
method and use one of the output options for the merged PDF. The difference bwetween two methods is, that duplexMerge
adds blank page after each merged PDF, if it has odd number of pages.
Available output options are:
inline()
download()
string()
save('path/to/merged.pdf')
$fusion->merge();
$fusion->inline();
Example usage
$fusion = \PdfFusion::init();
$fusion->addPathToPDF(base_path('/vendor/doode/pdf-fusion-laravel/examples/one.pdf'), [2], 'P');
$fusion->addPDFString(file_get_contents(base_path('/vendor/doode/pdf-fusion-laravel/examples/two.pdf')), 'all', 'L');
$fusion->merge();
$fusion->save(public_path('/pdfs/output.pdf'));
- Webklex LaravelPDFMerger
The MIT License (MIT)
Copyright (c) 2020 Doode
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.