PHPackages                             jorrenh/laravel-pdf-merger - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [PDF &amp; Document Generation](/categories/documents)
4. /
5. jorrenh/laravel-pdf-merger

ActiveLibrary[PDF &amp; Document Generation](/categories/documents)

jorrenh/laravel-pdf-merger
==========================

Package for Laravel that merges multiple PDFs into one.

v2.0.2(5y ago)26.3k↓41.7%1MITPHP

Since Sep 23Pushed 5y ago1 watchersCompare

[ Source](https://github.com/JorrenH/laravel-pdf-merger)[ Packagist](https://packagist.org/packages/jorrenh/laravel-pdf-merger)[ RSS](/packages/jorrenh-laravel-pdf-merger/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (3)Dependencies (4)Versions (6)Used By (0)

Laravel PDF Merger
==================

[](#laravel-pdf-merger)

PDF merger for Laravel inspired by another package, created for personal use. Tested with Laravel 5.6.

Advantages
----------

[](#advantages)

- Also works with PDF versions above `1.4`
- Works with `PHP 7`
- Added configuration for `temp` folder and `gs` binary

Installation
------------

[](#installation)

```
 $ composer require jorrenh/laravel-pdf-merger
```

Configuration
-------------

[](#configuration)

Make the following changes to the main configuration file located at `config/app.php`

```
'providers' => [
   ...
   JorrenH\LaravelPDFMerger\Providers\PDFMergerServiceProvider::class
],

'aliases' => [
   ...
   'PDFMerger' => JorrenH\LaravelPDFMerger\Facades\PDFMergerFacade::class
]
```

> When merging PDFs versions above 1.4 or PDF strings, a temporary PDF will be created during the process and stored in the configured `temp` directory, which is created if it does not exist. Also, note that this package requires Ghostscript installed on the server and configured in the config in order to function properly with PDF versions 1.5+. [Install Guide](https://www.ghostscript.com/doc/9.20/Install.htm)

> Note: Windows users should configure the gswinXXc.exe binary which is the commandline version of the program.

Usage
-----

[](#usage)

To get the PDF Merger instance you may use the registered facade or the `PDFMergerFacade` directly.

```
$merger = PDFMerger::init();
```

You can add PDFs for merging, by specifying a file path of PDF with `addPDF` method, or adding PDF file as string with `addString` method. The second argument of both methods is array of selected pages (`'all'` for all pages) and the third argument is PDFs orientation (`P`ortrait or `L`andscape). The second and third argument of both methods are optional and default to `'all'` and `'P'` respectively.

```
$merger->addPDF('/path/to/pdf', 'all', 'P');
$merger->addString(file_get_contents('path/to/pdf'), ['1', '2'], 'L')
```

You can set a merged PDF name by using `setFileName` method.

```
$merger->setFileName('merger.pdf');
```

Once you're done adding pages to the PDF, merge them with `merge` or `duplexMerge` method and use one of the output options for the merged PDF. The difference between two methods is, that `duplexMerge` adds blank page after each merged PDF, if it has an odd number of pages to enable duplex printing.

Available output options are:

- `inline()`
- `download()`
- `string()`
- `save('path/to/merged.pdf')`

```
$merger->merge();
$merger->inline(); /* output option */
```

Example usage

```
$merger = \PDFMerger::init();
$merger->addPDF(base_path('/vendor/jorrenh/laravel-pdf-merger/examples/one.pdf'), [2], 'P');
$merger->addString(file_get_contents(base_path('/vendor/jorrenh/laravel-pdf-merger/examples/two.pdf')), 'all', 'L');
$merger->merge();
$merger->save(base_path('/public/pdfs/merged.pdf'));
```

Configuration
-------------

[](#configuration-1)

The default configuration of this package is listed below. If you want to make changes to any of the default values, you can publish the default config to your laravel installation.

```
$ php artisan vendor:publish --provider="JorrenH\LaravelPDFMerger\Providers\PDFMergerServiceProvider"
```

```
// Default configuration
'temp' => storage_path('app/temp/'),
'compatibility' => [
    'enabled' => true,
    'binary' => env('GS_BINARY', '/usr/local/bin/gs'),
]
```

Authors
-------

[](#authors)

- [GrofGraf](https://github.com/GrofGraf) (adaptation to Webklex' LaravelPDFMerger)
- [JorrenH](https://github.com/JorrenH) (added configuration)

Credits
-------

[](#credits)

- **Webklex** [LaravelPDFMerger](https://github.com/Webklex/laravel-pdfmerger)

License
-------

[](#license)

The MIT License (MIT)

Copyright (c) 2017 GrofGraf

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.

###  Health Score

35

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity26

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor1

Top contributor holds 74.1% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~206 days

Total

5

Last Release

2017d ago

Major Versions

1.0.1 → v2.0.02020-12-18

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/16481445?v=4)[Jorren Hendriks](/maintainers/JorrenH)[@JorrenH](https://github.com/JorrenH)

---

Top Contributors

[![GrofGraf](https://avatars.githubusercontent.com/u/16609463?v=4)](https://github.com/GrofGraf "GrofGraf (20 commits)")[![JorrenH](https://avatars.githubusercontent.com/u/16481445?v=4)](https://github.com/JorrenH "JorrenH (4 commits)")[![drfraker](https://avatars.githubusercontent.com/u/1279323?v=4)](https://github.com/drfraker "drfraker (1 commits)")[![mstyles](https://avatars.githubusercontent.com/u/1187931?v=4)](https://github.com/mstyles "mstyles (1 commits)")[![synapsewebtechadmin](https://avatars.githubusercontent.com/u/7449947?v=4)](https://github.com/synapsewebtechadmin "synapsewebtechadmin (1 commits)")

---

Tags

laravelpdfmergerpdfmergergrofgrafpdf-mergerjorrenh

### Embed Badge

![Health badge](/badges/jorrenh-laravel-pdf-merger/health.svg)

```
[![Health](https://phpackages.com/badges/jorrenh-laravel-pdf-merger/health.svg)](https://phpackages.com/packages/jorrenh-laravel-pdf-merger)
```

###  Alternatives

[laravel/ai

The official AI SDK for Laravel.

1.0k3.2M200](/packages/laravel-ai)[moonshine/moonshine

Laravel administration panel

1.3k253.1k81](/packages/moonshine-moonshine)[webklex/laravel-pdfmerger

Generic PDF merger for Laravel

1433.1M2](/packages/webklex-laravel-pdfmerger)[grofgraf/laravel-pdf-merger

Package for Laravel that merges multiple PDFs into one.

30558.0k](/packages/grofgraf-laravel-pdf-merger)[erag/laravel-lang-sync-inertia

A powerful Laravel package for syncing and managing language translations across backend and Inertia.js (Vue/React/Svelte) frontends, offering effortless localization, auto-sync features, and smooth multi-language support for modern Laravel applications.

4925.3k](/packages/erag-laravel-lang-sync-inertia)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
