infotechnohelp/pdf-manager

There is no license information available for the latest version (dev-master) of this package.

dev-master 2019-06-14 12:55 UTC

This package is auto-updated.

Last update: 2024-04-14 23:09:31 UTC


README

Basic usage

   $PdfManager = new \Infotechnohelp\PdfManager\PdfManager();
   
   $result = $PdfManager->splitPdf('test/input/filename.pdf', 'test/split/filename/', [
       [1, 2],
       [4, 5],
   ]);
   
   $PdfManager->mergePdf($result, 'test/merged/filename_merged.pdf');