PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of Roni   Easy Merge2PDF   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Read me
Class: Easy Merge2PDF
Merge PDF and Image files into a single PDF file
Author: By
Last change:
Date: 1 year ago
Size: 1,171 bytes
 

Contents

Class file image Download

EasyMerge2pdf

Build Status Coverage Status Latest Stable Version Total Downloads

EasyMerge2pdf is a PHP library for merging Images and PDFs. It uses the excellent merge2pdf command available for OSX, linux, windows.

Installation

composer require ronisaha/easy-merge2pdf

Usages

<?php
require_once 'vendor/autoload.php';

$m = new \EasyMerge2pdf\Merger(['auto' => true]);
or 
$m = new \EasyMerge2pdf\Merger(['binary' => '/path/to/merge2pdf']);
$m->addInput('/path/to/input.pdf', '1,3-8,2,1');
try {
    $m->merge('/path/to/out.pdf');
} catch (Exception $exception) {
    echo $exception->getMessage();
}