|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace GrofGraf\PDFMerger; |
| 4 | + |
| 5 | +use setasign\Fpdi\FPDI; |
| 6 | +use Illuminate\Filesystem\Filesystem; |
| 7 | +use Illuminate\Support\Collection; |
| 8 | + |
| 9 | +class PDFMerger { |
| 10 | + /** |
| 11 | + * Access the filesystem on an oop base |
| 12 | + * |
| 13 | + * @var Filesystem |
| 14 | + */ |
| 15 | + protected $filesystem = Filesystem::class; |
| 16 | + /** |
| 17 | + * Hold all the files which will be merged |
| 18 | + * |
| 19 | + * @var Collection |
| 20 | + */ |
| 21 | + protected $files = Collection::class; |
| 22 | + /** |
| 23 | + * Holds every tmp file so they can be removed during the deconstruction |
| 24 | + * |
| 25 | + * @var Collection |
| 26 | + */ |
| 27 | + protected $tmpFiles = Collection::class; |
| 28 | + /** |
| 29 | + * The actual PDF Service |
| 30 | + * |
| 31 | + * @var FPDI |
| 32 | + */ |
| 33 | + protected $fpdi = FPDI::class; |
| 34 | + /** |
| 35 | + * The final file name |
| 36 | + * |
| 37 | + * @var string |
| 38 | + */ |
| 39 | + protected $fileName = 'undefined.pdf'; |
| 40 | + /** |
| 41 | + * Construct and initialize a new instance |
| 42 | + * @param Filesystem $Filesystem |
| 43 | + */ |
| 44 | + public function __construct(Filesystem $filesystem){ |
| 45 | + $this->filesystem = $filesystem; |
| 46 | + $this->fpdi = new FPDI(); |
| 47 | + $this->tmpFiles = collect([]); |
| 48 | + $this->files = collect([]); |
| 49 | + } |
| 50 | + /** |
| 51 | + * The class deconstructor method |
| 52 | + */ |
| 53 | + public function __destruct() { |
| 54 | + $filesystem = $this->filesystem; |
| 55 | + $this->tmpFiles->each(function($filePath) use($filesystem){ |
| 56 | + $filesystem->delete($filePath); |
| 57 | + }); |
| 58 | + } |
| 59 | + /** |
| 60 | + * Initialize a new internal instance of FPDI in order to prevent any problems with shared resources |
| 61 | + * Please visit https://www.setasign.com/products/fpdi/manual/#p-159 for more information on this issue |
| 62 | + * |
| 63 | + * @return self |
| 64 | + */ |
| 65 | + public function init(){ |
| 66 | + return $this; |
| 67 | + } |
| 68 | + /** |
| 69 | + * Stream the merged PDF content |
| 70 | + * |
| 71 | + * @return string |
| 72 | + */ |
| 73 | + public function inline(){ |
| 74 | + return $this->fpdi->Output($this->fileName, 'I'); |
| 75 | + } |
| 76 | + /** |
| 77 | + * Download the merged PDF content |
| 78 | + * |
| 79 | + * @return string |
| 80 | + */ |
| 81 | + public function download(){ |
| 82 | + return $this->fpdi->Output($this->fileName, 'D'); |
| 83 | + } |
| 84 | + /** |
| 85 | + * Save the merged PDF content to the filesystem |
| 86 | + * |
| 87 | + * @return string |
| 88 | + */ |
| 89 | + public function save($filePath = null){ |
| 90 | + return $this->filesystem->put($filePath ? $filePath : $this->fileName, $this->string()); |
| 91 | + } |
| 92 | + /** |
| 93 | + * Get the merged PDF content as binary string |
| 94 | + * |
| 95 | + * @return string |
| 96 | + */ |
| 97 | + public function string(){ |
| 98 | + return $this->fpdi->Output($this->fileName, 'S'); |
| 99 | + } |
| 100 | + /** |
| 101 | + * Set the generated PDF fileName |
| 102 | + * @param string $fileName |
| 103 | + * |
| 104 | + * @return string |
| 105 | + */ |
| 106 | + public function setFileName($fileName){ |
| 107 | + $this->fileName = $fileName; |
| 108 | + return $this; |
| 109 | + } |
| 110 | + /** |
| 111 | + * Add a PDF for inclusion in the merge with a binary string. Pages should be formatted: 1,3,6, 12-16. |
| 112 | + * @param string $string |
| 113 | + * @param mixed $pages |
| 114 | + * @param mixed $orientation |
| 115 | + * |
| 116 | + * @return void |
| 117 | + */ |
| 118 | + public function addPDFString($string, $pages = 'all', $orientation = null){ |
| 119 | + $filePath = storage_path('tmp/'.str_random(16).'.pdf'); |
| 120 | + $this->filesystem->put($filePath, $string); |
| 121 | + $this->tmpFiles->push($filePath); |
| 122 | + return $this->addPathToPDF($filePath, $pages, $orientation); |
| 123 | + } |
| 124 | + /** |
| 125 | + * Add a PDF for inclusion in the merge with a valid file path. Pages should be formatted: 1,3,6, 12-16. |
| 126 | + * @param string $filePath |
| 127 | + * @param string $pages |
| 128 | + * @param string $orientation |
| 129 | + * |
| 130 | + * @return self |
| 131 | + * |
| 132 | + * @throws \Exception if the given pages aren't correct |
| 133 | + */ |
| 134 | + public function addPathToPDF($filePath, $pages = 'all', $orientation = null) { |
| 135 | + if (file_exists($filePath)) { |
| 136 | + $filePath = $this->convertPDFVersion($filePath); |
| 137 | + if (!is_array($pages) && strtolower($pages) != 'all') { |
| 138 | + throw new \Exception($filePath."'s pages could not be validated"); |
| 139 | + } |
| 140 | + $this->files->push([ |
| 141 | + 'name' => $filePath, |
| 142 | + 'pages' => $pages, |
| 143 | + 'orientation' => $orientation |
| 144 | + ]); |
| 145 | + } else { |
| 146 | + throw new \Exception("Could not locate PDF on '$filePath'"); |
| 147 | + } |
| 148 | + return $this; |
| 149 | + } |
| 150 | + /** |
| 151 | + * Merges your provided PDFs and outputs to specified location. |
| 152 | + * @param string $orientation |
| 153 | + * |
| 154 | + * @return void |
| 155 | + * |
| 156 | + * @throws \Exception if there are now PDFs to merge |
| 157 | + */ |
| 158 | + public function merge($orientation = 'P') { |
| 159 | + if ($this->files->count() == 0) { |
| 160 | + throw new \Exception("No PDFs to merge."); |
| 161 | + } |
| 162 | + $fpdi = $this->fpdi; |
| 163 | + $files = $this->files; |
| 164 | + foreach($files as $file){ |
| 165 | + $file['orientation'] = is_null($file['orientation']) ? $orientation : $file['orientation']; |
| 166 | + $count = $fpdi->setSourceFile($file['name']); |
| 167 | + if($file['pages'] == 'all') { |
| 168 | + for ($i = 1; $i <= $count; $i++) { |
| 169 | + $template = $fpdi->importPage($i); |
| 170 | + $size = $fpdi->getTemplateSize($template); |
| 171 | + $fpdi->AddPage($file['orientation'], [$size['width'], $size['height']]); |
| 172 | + $fpdi->useTemplate($template); |
| 173 | + } |
| 174 | + }else { |
| 175 | + foreach ($file['pages'] as $page) { |
| 176 | + if (!$template = $fpdi->importPage($page)) { |
| 177 | + throw new \Exception("Could not load page '$page' in PDF '".$file['name']."'. Check that the page exists."); |
| 178 | + } |
| 179 | + $size = $fpdi->getTemplateSize($template); |
| 180 | + $fpdi->AddPage($file['orientation'], [$size['width'], $size['height']]); |
| 181 | + $fpdi->useTemplate($template); |
| 182 | + } |
| 183 | + } |
| 184 | + } |
| 185 | + } |
| 186 | + |
| 187 | + /** |
| 188 | + * Converts PDF if version is above 1.4 |
| 189 | + * @param string $filePath |
| 190 | + * |
| 191 | + * @return string |
| 192 | + */ |
| 193 | + protected function convertPDFVersion($filePath){ |
| 194 | + $pdf = fopen($filePath, "r"); |
| 195 | + $first_line = fgets($pdf); |
| 196 | + fclose($pdf); |
| 197 | + //extract version number |
| 198 | + preg_match_all('!\d+!', $first_line, $matches); |
| 199 | + $pdfversion = implode('.', $matches[0]); |
| 200 | + if($pdfversion > "1.4"){ |
| 201 | + $newFilePath = storage_path('tmp/' . str_random(16) . '.pdf'); |
| 202 | + //execute shell script that converts PDF to correct version and saves it to tmp folder |
| 203 | + shell_exec('gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile="'. $newFilePath . '" "' . $filePath . '"'); |
| 204 | + $this->tmpFiles->push($newFilePath); |
| 205 | + $filePath = $newFilePath; |
| 206 | + } |
| 207 | + //return correct file path |
| 208 | + return $filePath; |
| 209 | + } |
| 210 | +} |
0 commit comments