1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* This file is based on code of tecnickcom/TCPDF PDF library. |
5
|
|
|
* |
6
|
|
|
* Original author Nicola Asuni ([email protected]) and |
7
|
|
|
* contributors (https://github.com/tecnickcom/TCPDF/graphs/contributors). |
8
|
|
|
* |
9
|
|
|
* @see https://github.com/tecnickcom/TCPDF |
10
|
|
|
* |
11
|
|
|
* Original code was licensed on the terms of the LGPL v3. |
12
|
|
|
* |
13
|
|
|
* ------------------------------------------------------------------------------ |
14
|
|
|
* |
15
|
|
|
* @file This file is part of the PdfParser library. |
16
|
|
|
* |
17
|
|
|
* @author Konrad Abicht <[email protected]> |
18
|
|
|
* @date 2020-01-06 |
19
|
|
|
* |
20
|
|
|
* @license LGPLv3 |
21
|
|
|
* @url <https://github.com/smalot/pdfparser> |
22
|
|
|
* |
23
|
|
|
* PdfParser is a pdf library written in PHP, extraction oriented. |
24
|
|
|
* Copyright (C) 2017 - Sébastien MALOT <[email protected]> |
25
|
|
|
* |
26
|
|
|
* This program is free software: you can redistribute it and/or modify |
27
|
|
|
* it under the terms of the GNU Lesser General Public License as published by |
28
|
|
|
* the Free Software Foundation, either version 3 of the License, or |
29
|
|
|
* (at your option) any later version. |
30
|
|
|
* |
31
|
|
|
* This program is distributed in the hope that it will be useful, |
32
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
33
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
34
|
|
|
* GNU Lesser General Public License for more details. |
35
|
|
|
* |
36
|
|
|
* You should have received a copy of the GNU Lesser General Public License |
37
|
|
|
* along with this program. |
38
|
|
|
* If not, see <http://www.pdfparser.org/sites/default/LICENSE.txt>. |
39
|
|
|
*/ |
40
|
|
|
|
41
|
|
|
namespace Smalot\PdfParser\RawData; |
42
|
|
|
|
43
|
|
|
use Exception; |
44
|
|
|
use Smalot\PdfParser\Config; |
45
|
|
|
|
46
|
|
|
class RawDataParser |
47
|
|
|
{ |
48
|
|
|
/** |
49
|
|
|
* @var \Smalot\PdfParser\Config |
50
|
|
|
*/ |
51
|
|
|
private $config; |
52
|
|
|
|
53
|
|
|
/** |
54
|
|
|
* Configuration array. |
55
|
|
|
*/ |
56
|
|
|
protected $cfg = [ |
57
|
|
|
// if `true` ignore filter decoding errors |
58
|
|
|
'ignore_filter_decoding_errors' => true, |
59
|
|
|
// if `true` ignore missing filter decoding errors |
60
|
|
|
'ignore_missing_filter_decoders' => true, |
61
|
|
|
]; |
62
|
|
|
|
63
|
|
|
protected $filterHelper; |
64
|
|
|
protected $objects; |
65
|
|
|
|
66
|
|
|
/** |
67
|
|
|
* @param array $cfg Configuration array, default is [] |
68
|
|
|
*/ |
69
|
40 |
|
public function __construct($cfg = [], Config $config = null) |
70
|
|
|
{ |
71
|
|
|
// merge given array with default values |
72
|
40 |
|
$this->cfg = array_merge($this->cfg, $cfg); |
73
|
|
|
|
74
|
40 |
|
$this->filterHelper = new FilterHelper(); |
75
|
40 |
|
$this->config = $config ?: new Config(); |
76
|
40 |
|
} |
77
|
|
|
|
78
|
|
|
/** |
79
|
|
|
* Decode the specified stream. |
80
|
|
|
* |
81
|
|
|
* @param string $pdfData PDF data |
82
|
|
|
* @param array $sdic Stream's dictionary array |
83
|
|
|
* @param string $stream Stream to decode |
84
|
|
|
* |
85
|
|
|
* @return array containing decoded stream data and remaining filters |
86
|
|
|
* |
87
|
|
|
* @throws Exception |
88
|
|
|
*/ |
89
|
36 |
|
protected function decodeStream(string $pdfData, array $xref, array $sdic, string $stream): array |
90
|
|
|
{ |
91
|
|
|
// get stream length and filters |
92
|
36 |
|
$slength = \strlen($stream); |
93
|
36 |
|
if ($slength <= 0) { |
94
|
|
|
return ['', []]; |
95
|
|
|
} |
96
|
36 |
|
$filters = []; |
97
|
36 |
|
foreach ($sdic as $k => $v) { |
98
|
36 |
|
if ('/' == $v[0]) { |
99
|
36 |
|
if (('Length' == $v[1]) && (isset($sdic[($k + 1)])) && ('numeric' == $sdic[($k + 1)][0])) { |
100
|
|
|
// get declared stream length |
101
|
35 |
|
$declength = (int) ($sdic[($k + 1)][1]); |
102
|
35 |
|
if ($declength < $slength) { |
103
|
34 |
|
$stream = substr($stream, 0, $declength); |
104
|
35 |
|
$slength = $declength; |
105
|
|
|
} |
106
|
35 |
|
} elseif (('Filter' == $v[1]) && (isset($sdic[($k + 1)]))) { |
107
|
|
|
// resolve indirect object |
108
|
35 |
|
$objval = $this->getObjectVal($pdfData, $xref, $sdic[($k + 1)]); |
109
|
35 |
|
if ('/' == $objval[0]) { |
110
|
|
|
// single filter |
111
|
35 |
|
$filters[] = $objval[1]; |
112
|
3 |
|
} elseif ('[' == $objval[0]) { |
113
|
|
|
// array of filters |
114
|
3 |
|
foreach ($objval[1] as $flt) { |
115
|
3 |
|
if ('/' == $flt[0]) { |
116
|
3 |
|
$filters[] = $flt[1]; |
117
|
|
|
} |
118
|
|
|
} |
119
|
|
|
} |
120
|
|
|
} |
121
|
|
|
} |
122
|
|
|
} |
123
|
|
|
|
124
|
|
|
// decode the stream |
125
|
36 |
|
$remaining_filters = []; |
126
|
36 |
|
foreach ($filters as $filter) { |
127
|
35 |
|
if (\in_array($filter, $this->filterHelper->getAvailableFilters())) { |
128
|
|
|
try { |
129
|
35 |
|
$stream = $this->filterHelper->decodeFilter($filter, $stream, $this->config->getDecodeMemoryLimit()); |
130
|
|
|
} catch (Exception $e) { |
131
|
|
|
$emsg = $e->getMessage(); |
132
|
|
|
if ((('~' == $emsg[0]) && !$this->cfg['ignore_missing_filter_decoders']) |
133
|
|
|
|| (('~' != $emsg[0]) && !$this->cfg['ignore_filter_decoding_errors']) |
134
|
|
|
) { |
135
|
35 |
|
throw new Exception($e->getMessage()); |
136
|
|
|
} |
137
|
|
|
} |
138
|
|
|
} else { |
139
|
|
|
// add missing filter to array |
140
|
4 |
|
$remaining_filters[] = $filter; |
141
|
|
|
} |
142
|
|
|
} |
143
|
|
|
|
144
|
36 |
|
return [$stream, $remaining_filters]; |
145
|
|
|
} |
146
|
|
|
|
147
|
|
|
/** |
148
|
|
|
* Decode the Cross-Reference section |
149
|
|
|
* |
150
|
|
|
* @param string $pdfData PDF data |
151
|
|
|
* @param int $startxref Offset at which the xref section starts (position of the 'xref' keyword) |
152
|
|
|
* @param array $xref Previous xref array (if any) |
153
|
|
|
* |
154
|
|
|
* @return array containing xref and trailer data |
155
|
|
|
* |
156
|
|
|
* @throws Exception |
157
|
|
|
*/ |
158
|
29 |
|
protected function decodeXref(string $pdfData, int $startxref, array $xref = []): array |
159
|
|
|
{ |
160
|
29 |
|
$startxref += 4; // 4 is the length of the word 'xref' |
161
|
|
|
// skip initial white space chars |
162
|
29 |
|
$offset = $startxref + strspn($pdfData, $this->config->getPdfWhitespaces(), $startxref); |
163
|
|
|
// initialize object number |
164
|
29 |
|
$obj_num = 0; |
165
|
|
|
// search for cross-reference entries or subsection |
166
|
29 |
|
while (preg_match('/([0-9]+)[\x20]([0-9]+)[\x20]?([nf]?)(\r\n|[\x20]?[\r\n])/', $pdfData, $matches, \PREG_OFFSET_CAPTURE, $offset) > 0) { |
167
|
29 |
|
if ($matches[0][1] != $offset) { |
168
|
|
|
// we are on another section |
169
|
5 |
|
break; |
170
|
|
|
} |
171
|
29 |
|
$offset += \strlen($matches[0][0]); |
172
|
29 |
|
if ('n' == $matches[3][0]) { |
173
|
|
|
// create unique object index: [object number]_[generation number] |
174
|
29 |
|
$index = $obj_num.'_'.(int) ($matches[2][0]); |
175
|
|
|
// check if object already exist |
176
|
29 |
|
if (!isset($xref['xref'][$index])) { |
177
|
|
|
// store object offset position |
178
|
29 |
|
$xref['xref'][$index] = (int) ($matches[1][0]); |
179
|
|
|
} |
180
|
29 |
|
++$obj_num; |
181
|
29 |
|
} elseif ('f' == $matches[3][0]) { |
182
|
29 |
|
++$obj_num; |
183
|
|
|
} else { |
184
|
|
|
// object number (index) |
185
|
29 |
|
$obj_num = (int) ($matches[1][0]); |
186
|
|
|
} |
187
|
|
|
} |
188
|
|
|
// get trailer data |
189
|
29 |
|
if (preg_match('/trailer[\s]*<<(.*)>>/isU', $pdfData, $matches, \PREG_OFFSET_CAPTURE, $offset) > 0) { |
190
|
29 |
|
$trailer_data = $matches[1][0]; |
191
|
29 |
|
if (!isset($xref['trailer']) || empty($xref['trailer'])) { |
192
|
|
|
// get only the last updated version |
193
|
29 |
|
$xref['trailer'] = []; |
194
|
|
|
// parse trailer_data |
195
|
29 |
|
if (preg_match('/Size[\s]+([0-9]+)/i', $trailer_data, $matches) > 0) { |
196
|
29 |
|
$xref['trailer']['size'] = (int) ($matches[1]); |
197
|
|
|
} |
198
|
29 |
|
if (preg_match('/Root[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
199
|
29 |
|
$xref['trailer']['root'] = (int) ($matches[1]).'_'.(int) ($matches[2]); |
200
|
|
|
} |
201
|
29 |
|
if (preg_match('/Encrypt[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
202
|
|
|
$xref['trailer']['encrypt'] = (int) ($matches[1]).'_'.(int) ($matches[2]); |
203
|
|
|
} |
204
|
29 |
|
if (preg_match('/Info[\s]+([0-9]+)[\s]+([0-9]+)[\s]+R/i', $trailer_data, $matches) > 0) { |
205
|
28 |
|
$xref['trailer']['info'] = (int) ($matches[1]).'_'.(int) ($matches[2]); |
206
|
|
|
} |
207
|
29 |
|
if (preg_match('/ID[\s]*[\[][\s]*[<]([^>]*)[>][\s]*[<]([^>]*)[>]/i', $trailer_data, $matches) > 0) { |
208
|
24 |
|
$xref['trailer']['id'] = []; |
209
|
24 |
|
$xref['trailer']['id'][0] = $matches[1]; |
210
|
24 |
|
$xref['trailer']['id'][1] = $matches[2]; |
211
|
|
|
} |
212
|
|
|
} |
213
|
29 |
|
if (preg_match('/Prev[\s]+([0-9]+)/i', $trailer_data, $matches) > 0) { |
214
|
|
|
// get previous xref |
215
|
29 |
|
$xref = $this->getXrefData($pdfData, (int) ($matches[1]), $xref); |
216
|
|
|
} |
217
|
|
|
} else { |
218
|
|
|
throw new Exception('Unable to find trailer'); |
219
|
|
|
} |
220
|
|
|
|
221
|
29 |
|
return $xref; |
222
|
|
|
} |
223
|
|
|
|
224
|
|
|
/** |
225
|
|
|
* Decode the Cross-Reference Stream section |
226
|
|
|
* |
227
|
|
|
* @param string $pdfData PDF data |
228
|
|
|
* @param int $startxref Offset at which the xref section starts |
229
|
|
|
* @param array $xref Previous xref array (if any) |
230
|
|
|
* |
231
|
|
|
* @return array containing xref and trailer data |
232
|
|
|
* |
233
|
|
|
* @throws Exception if unknown PNG predictor detected |
234
|
|
|
*/ |
235
|
7 |
|
protected function decodeXrefStream(string $pdfData, int $startxref, array $xref = []): array |
236
|
|
|
{ |
237
|
|
|
// try to read Cross-Reference Stream |
238
|
7 |
|
$xrefobj = $this->getRawObject($pdfData, $startxref); |
239
|
7 |
|
$xrefcrs = $this->getIndirectObject($pdfData, $xref, $xrefobj[1], $startxref, true); |
240
|
7 |
|
if (!isset($xref['trailer']) || empty($xref['trailer'])) { |
241
|
|
|
// get only the last updated version |
242
|
7 |
|
$xref['trailer'] = []; |
243
|
7 |
|
$filltrailer = true; |
244
|
|
|
} else { |
245
|
5 |
|
$filltrailer = false; |
246
|
|
|
} |
247
|
7 |
|
if (!isset($xref['xref'])) { |
248
|
7 |
|
$xref['xref'] = []; |
249
|
|
|
} |
250
|
7 |
|
$valid_crs = false; |
251
|
7 |
|
$columns = 0; |
252
|
7 |
|
$predictor = null; |
253
|
7 |
|
$sarr = $xrefcrs[0][1]; |
254
|
7 |
|
if (!\is_array($sarr)) { |
255
|
|
|
$sarr = []; |
256
|
|
|
} |
257
|
|
|
|
258
|
7 |
|
$wb = []; |
259
|
|
|
|
260
|
7 |
|
foreach ($sarr as $k => $v) { |
261
|
|
|
if ( |
262
|
7 |
|
('/' == $v[0]) |
263
|
7 |
|
&& ('Type' == $v[1]) |
264
|
|
|
&& ( |
265
|
7 |
|
isset($sarr[($k + 1)]) |
266
|
7 |
|
&& '/' == $sarr[($k + 1)][0] |
267
|
7 |
|
&& 'XRef' == $sarr[($k + 1)][1] |
268
|
|
|
) |
269
|
|
|
) { |
270
|
7 |
|
$valid_crs = true; |
271
|
7 |
|
} elseif (('/' == $v[0]) && ('Index' == $v[1]) && (isset($sarr[($k + 1)]))) { |
272
|
|
|
// initialize list for: first object number in the subsection / number of objects |
273
|
5 |
|
$index_blocks = []; |
274
|
5 |
|
for ($m = 0; $m < \count($sarr[($k + 1)][1]); $m += 2) { |
|
|
|
|
275
|
5 |
|
$index_blocks[] = [$sarr[($k + 1)][1][$m][1], $sarr[($k + 1)][1][$m + 1][1]]; |
276
|
|
|
} |
277
|
7 |
|
} elseif (('/' == $v[0]) && ('Prev' == $v[1]) && (isset($sarr[($k + 1)]) && ('numeric' == $sarr[($k + 1)][0]))) { |
278
|
|
|
// get previous xref offset |
279
|
5 |
|
$prevxref = (int) ($sarr[($k + 1)][1]); |
280
|
7 |
|
} elseif (('/' == $v[0]) && ('W' == $v[1]) && (isset($sarr[($k + 1)]))) { |
281
|
|
|
// number of bytes (in the decoded stream) of the corresponding field |
282
|
7 |
|
$wb[0] = (int) ($sarr[($k + 1)][1][0][1]); |
283
|
7 |
|
$wb[1] = (int) ($sarr[($k + 1)][1][1][1]); |
284
|
7 |
|
$wb[2] = (int) ($sarr[($k + 1)][1][2][1]); |
285
|
7 |
|
} elseif (('/' == $v[0]) && ('DecodeParms' == $v[1]) && (isset($sarr[($k + 1)][1]))) { |
286
|
6 |
|
$decpar = $sarr[($k + 1)][1]; |
287
|
6 |
|
foreach ($decpar as $kdc => $vdc) { |
288
|
|
|
if ( |
289
|
6 |
|
'/' == $vdc[0] |
290
|
6 |
|
&& 'Columns' == $vdc[1] |
291
|
|
|
&& ( |
292
|
6 |
|
isset($decpar[($kdc + 1)]) |
293
|
6 |
|
&& 'numeric' == $decpar[($kdc + 1)][0] |
294
|
|
|
) |
295
|
|
|
) { |
296
|
6 |
|
$columns = (int) ($decpar[($kdc + 1)][1]); |
297
|
|
|
} elseif ( |
298
|
6 |
|
'/' == $vdc[0] |
299
|
6 |
|
&& 'Predictor' == $vdc[1] |
300
|
|
|
&& ( |
301
|
6 |
|
isset($decpar[($kdc + 1)]) |
302
|
6 |
|
&& 'numeric' == $decpar[($kdc + 1)][0] |
303
|
|
|
) |
304
|
|
|
) { |
305
|
6 |
|
$predictor = (int) ($decpar[($kdc + 1)][1]); |
306
|
|
|
} |
307
|
|
|
} |
308
|
7 |
|
} elseif ($filltrailer) { |
309
|
7 |
|
if (('/' == $v[0]) && ('Size' == $v[1]) && (isset($sarr[($k + 1)]) && ('numeric' == $sarr[($k + 1)][0]))) { |
310
|
7 |
|
$xref['trailer']['size'] = $sarr[($k + 1)][1]; |
311
|
7 |
|
} elseif (('/' == $v[0]) && ('Root' == $v[1]) && (isset($sarr[($k + 1)]) && ('objref' == $sarr[($k + 1)][0]))) { |
312
|
7 |
|
$xref['trailer']['root'] = $sarr[($k + 1)][1]; |
313
|
7 |
|
} elseif (('/' == $v[0]) && ('Info' == $v[1]) && (isset($sarr[($k + 1)]) && ('objref' == $sarr[($k + 1)][0]))) { |
314
|
7 |
|
$xref['trailer']['info'] = $sarr[($k + 1)][1]; |
315
|
7 |
|
} elseif (('/' == $v[0]) && ('Encrypt' == $v[1]) && (isset($sarr[($k + 1)]) && ('objref' == $sarr[($k + 1)][0]))) { |
316
|
|
|
$xref['trailer']['encrypt'] = $sarr[($k + 1)][1]; |
317
|
7 |
|
} elseif (('/' == $v[0]) && ('ID' == $v[1]) && (isset($sarr[($k + 1)]))) { |
318
|
7 |
|
$xref['trailer']['id'] = []; |
319
|
7 |
|
$xref['trailer']['id'][0] = $sarr[($k + 1)][1][0][1]; |
320
|
7 |
|
$xref['trailer']['id'][1] = $sarr[($k + 1)][1][1][1]; |
321
|
|
|
} |
322
|
|
|
} |
323
|
|
|
} |
324
|
|
|
|
325
|
|
|
// decode data |
326
|
7 |
|
if ($valid_crs && isset($xrefcrs[1][3][0])) { |
327
|
7 |
|
if (null !== $predictor) { |
328
|
|
|
// number of bytes in a row |
329
|
6 |
|
$rowlen = ($columns + 1); |
330
|
|
|
// convert the stream into an array of integers |
331
|
6 |
|
$sdata = unpack('C*', $xrefcrs[1][3][0]); |
332
|
|
|
// split the rows |
333
|
6 |
|
$sdata = array_chunk($sdata, $rowlen); |
334
|
|
|
|
335
|
|
|
// initialize decoded array |
336
|
6 |
|
$ddata = []; |
337
|
|
|
// initialize first row with zeros |
338
|
6 |
|
$prev_row = array_fill(0, $rowlen, 0); |
339
|
|
|
// for each row apply PNG unpredictor |
340
|
6 |
|
foreach ($sdata as $k => $row) { |
341
|
|
|
// initialize new row |
342
|
6 |
|
$ddata[$k] = []; |
343
|
|
|
// get PNG predictor value |
344
|
6 |
|
$predictor = (10 + $row[0]); |
345
|
|
|
// for each byte on the row |
346
|
6 |
|
for ($i = 1; $i <= $columns; ++$i) { |
347
|
|
|
// new index |
348
|
6 |
|
$j = ($i - 1); |
349
|
6 |
|
$row_up = $prev_row[$j]; |
350
|
6 |
|
if (1 == $i) { |
351
|
6 |
|
$row_left = 0; |
352
|
6 |
|
$row_upleft = 0; |
353
|
|
|
} else { |
354
|
6 |
|
$row_left = $row[($i - 1)]; |
355
|
6 |
|
$row_upleft = $prev_row[($j - 1)]; |
356
|
|
|
} |
357
|
6 |
|
switch ($predictor) { |
358
|
6 |
|
case 10: // PNG prediction (on encoding, PNG None on all rows) |
359
|
|
|
$ddata[$k][$j] = $row[$i]; |
360
|
|
|
break; |
361
|
|
|
|
362
|
6 |
|
case 11: // PNG prediction (on encoding, PNG Sub on all rows) |
363
|
|
|
$ddata[$k][$j] = (($row[$i] + $row_left) & 0xff); |
364
|
|
|
break; |
365
|
|
|
|
366
|
6 |
|
case 12: // PNG prediction (on encoding, PNG Up on all rows) |
367
|
6 |
|
$ddata[$k][$j] = (($row[$i] + $row_up) & 0xff); |
368
|
6 |
|
break; |
369
|
|
|
|
370
|
|
|
case 13: // PNG prediction (on encoding, PNG Average on all rows) |
371
|
|
|
$ddata[$k][$j] = (($row[$i] + (($row_left + $row_up) / 2)) & 0xff); |
372
|
|
|
break; |
373
|
|
|
|
374
|
|
|
case 14: // PNG prediction (on encoding, PNG Paeth on all rows) |
375
|
|
|
// initial estimate |
376
|
|
|
$p = ($row_left + $row_up - $row_upleft); |
377
|
|
|
// distances |
378
|
|
|
$pa = abs($p - $row_left); |
379
|
|
|
$pb = abs($p - $row_up); |
380
|
|
|
$pc = abs($p - $row_upleft); |
381
|
|
|
$pmin = min($pa, $pb, $pc); |
382
|
|
|
// return minimum distance |
383
|
|
|
switch ($pmin) { |
384
|
|
|
case $pa: |
385
|
|
|
$ddata[$k][$j] = (($row[$i] + $row_left) & 0xff); |
386
|
|
|
break; |
387
|
|
|
|
388
|
|
|
case $pb: |
389
|
|
|
$ddata[$k][$j] = (($row[$i] + $row_up) & 0xff); |
390
|
|
|
break; |
391
|
|
|
|
392
|
|
|
case $pc: |
393
|
|
|
$ddata[$k][$j] = (($row[$i] + $row_upleft) & 0xff); |
394
|
|
|
break; |
395
|
|
|
} |
396
|
|
|
break; |
397
|
|
|
|
398
|
|
|
default: // PNG prediction (on encoding, PNG optimum) |
399
|
|
|
throw new Exception('Unknown PNG predictor: '.$predictor); |
400
|
|
|
} |
401
|
|
|
} |
402
|
6 |
|
$prev_row = $ddata[$k]; |
403
|
|
|
} // end for each row |
404
|
|
|
// complete decoding |
405
|
|
|
} else { |
406
|
|
|
// number of bytes in a row |
407
|
1 |
|
$rowlen = array_sum($wb); |
408
|
|
|
// convert the stream into an array of integers |
409
|
1 |
|
$sdata = unpack('C*', $xrefcrs[1][3][0]); |
410
|
|
|
// split the rows |
411
|
1 |
|
$ddata = array_chunk($sdata, $rowlen); |
|
|
|
|
412
|
|
|
} |
413
|
|
|
|
414
|
7 |
|
$sdata = []; |
415
|
|
|
|
416
|
|
|
// for every row |
417
|
7 |
|
foreach ($ddata as $k => $row) { |
418
|
|
|
// initialize new row |
419
|
7 |
|
$sdata[$k] = [0, 0, 0]; |
420
|
7 |
|
if (0 == $wb[0]) { |
421
|
|
|
// default type field |
422
|
|
|
$sdata[$k][0] = 1; |
423
|
|
|
} |
424
|
7 |
|
$i = 0; // count bytes in the row |
425
|
|
|
// for every column |
426
|
7 |
|
for ($c = 0; $c < 3; ++$c) { |
427
|
|
|
// for every byte on the column |
428
|
7 |
|
for ($b = 0; $b < $wb[$c]; ++$b) { |
429
|
7 |
|
if (isset($row[$i])) { |
430
|
7 |
|
$sdata[$k][$c] += ($row[$i] << (($wb[$c] - 1 - $b) * 8)); |
431
|
|
|
} |
432
|
7 |
|
++$i; |
433
|
|
|
} |
434
|
|
|
} |
435
|
|
|
} |
436
|
|
|
|
437
|
|
|
// fill xref |
438
|
7 |
|
if (isset($index_blocks)) { |
439
|
|
|
// load the first object number of the first /Index entry |
440
|
5 |
|
$obj_num = $index_blocks[0][0]; |
441
|
|
|
} else { |
442
|
7 |
|
$obj_num = 0; |
443
|
|
|
} |
444
|
7 |
|
foreach ($sdata as $k => $row) { |
445
|
7 |
|
switch ($row[0]) { |
446
|
7 |
|
case 0: // (f) linked list of free objects |
447
|
7 |
|
break; |
448
|
|
|
|
449
|
7 |
|
case 1: // (n) objects that are in use but are not compressed |
450
|
|
|
// create unique object index: [object number]_[generation number] |
451
|
7 |
|
$index = $obj_num.'_'.$row[2]; |
452
|
|
|
// check if object already exist |
453
|
7 |
|
if (!isset($xref['xref'][$index])) { |
454
|
|
|
// store object offset position |
455
|
7 |
|
$xref['xref'][$index] = $row[1]; |
456
|
|
|
} |
457
|
7 |
|
break; |
458
|
|
|
|
459
|
7 |
|
case 2: // compressed objects |
460
|
|
|
// $row[1] = object number of the object stream in which this object is stored |
461
|
|
|
// $row[2] = index of this object within the object stream |
462
|
7 |
|
$index = $row[1].'_0_'.$row[2]; |
463
|
7 |
|
$xref['xref'][$index] = -1; |
464
|
7 |
|
break; |
465
|
|
|
|
466
|
|
|
default: // null objects |
467
|
|
|
break; |
468
|
|
|
} |
469
|
7 |
|
++$obj_num; |
470
|
7 |
|
if (isset($index_blocks)) { |
471
|
|
|
// reduce the number of remaining objects |
472
|
5 |
|
--$index_blocks[0][1]; |
473
|
5 |
|
if (0 == $index_blocks[0][1]) { |
|
|
|
|
474
|
|
|
// remove the actual used /Index entry |
475
|
5 |
|
array_shift($index_blocks); |
476
|
5 |
|
if (0 < \count($index_blocks)) { |
477
|
|
|
// load the first object number of the following /Index entry |
478
|
3 |
|
$obj_num = $index_blocks[0][0]; |
479
|
|
|
} else { |
480
|
|
|
// if there are no more entries, remove $index_blocks to avoid actions on an empty array |
481
|
5 |
|
unset($index_blocks); |
482
|
|
|
} |
483
|
|
|
} |
484
|
|
|
} |
485
|
|
|
} |
486
|
|
|
} // end decoding data |
487
|
7 |
|
if (isset($prevxref)) { |
488
|
|
|
// get previous xref |
489
|
5 |
|
$xref = $this->getXrefData($pdfData, $prevxref, $xref); |
490
|
|
|
} |
491
|
|
|
|
492
|
7 |
|
return $xref; |
493
|
|
|
} |
494
|
|
|
|
495
|
36 |
|
protected function getObjectHeaderPattern(array $objRefs): string |
496
|
|
|
{ |
497
|
|
|
// consider all whitespace character (PDF specifications) |
498
|
36 |
|
return '/'.$objRefs[0].$this->config->getPdfWhitespacesRegex().$objRefs[1].$this->config->getPdfWhitespacesRegex().'obj'.'/'; |
499
|
|
|
} |
500
|
|
|
|
501
|
36 |
|
protected function getObjectHeaderLen(array $objRefs): int |
502
|
|
|
{ |
503
|
|
|
// "4 0 obj" |
504
|
|
|
// 2 whitespaces + strlen("obj") = 5 |
505
|
36 |
|
return 5 + \strlen($objRefs[0]) + \strlen($objRefs[1]); |
506
|
|
|
} |
507
|
|
|
|
508
|
|
|
/** |
509
|
|
|
* Get content of indirect object. |
510
|
|
|
* |
511
|
|
|
* @param string $pdfData PDF data |
512
|
|
|
* @param string $objRef Object number and generation number separated by underscore character |
513
|
|
|
* @param int $offset Object offset |
514
|
|
|
* @param bool $decoding If true decode streams |
515
|
|
|
* |
516
|
|
|
* @return array containing object data |
517
|
|
|
* |
518
|
|
|
* @throws Exception if invalid object reference found |
519
|
|
|
*/ |
520
|
36 |
|
protected function getIndirectObject(string $pdfData, array $xref, string $objRef, int $offset = 0, bool $decoding = true): array |
521
|
|
|
{ |
522
|
|
|
/* |
523
|
|
|
* build indirect object header |
524
|
|
|
*/ |
525
|
|
|
// $objHeader = "[object number] [generation number] obj" |
526
|
36 |
|
$objRefArr = explode('_', $objRef); |
527
|
36 |
|
if (2 !== \count($objRefArr)) { |
528
|
|
|
throw new Exception('Invalid object reference for $obj.'); |
529
|
|
|
} |
530
|
|
|
|
531
|
36 |
|
$objHeaderLen = $this->getObjectHeaderLen($objRefArr); |
532
|
|
|
|
533
|
|
|
/* |
534
|
|
|
* check if we are in position |
535
|
|
|
*/ |
536
|
|
|
// ignore whitespace characters at offset |
537
|
36 |
|
$offset += strspn($pdfData, $this->config->getPdfWhitespaces(), $offset); |
538
|
|
|
// ignore leading zeros for object number |
539
|
36 |
|
$offset += strspn($pdfData, '0', $offset); |
540
|
36 |
|
if (0 == preg_match($this->getObjectHeaderPattern($objRefArr), substr($pdfData, $offset, $objHeaderLen))) { |
541
|
|
|
// an indirect reference to an undefined object shall be considered a reference to the null object |
542
|
|
|
return ['null', 'null', $offset]; |
543
|
|
|
} |
544
|
|
|
|
545
|
|
|
/* |
546
|
|
|
* get content |
547
|
|
|
*/ |
548
|
|
|
// starting position of object content |
549
|
36 |
|
$offset += $objHeaderLen; |
550
|
36 |
|
$objContentArr = []; |
551
|
36 |
|
$i = 0; // object main index |
552
|
|
|
do { |
553
|
36 |
|
$oldOffset = $offset; |
554
|
|
|
// get element |
555
|
36 |
|
$element = $this->getRawObject($pdfData, $offset); |
556
|
36 |
|
$offset = $element[2]; |
557
|
|
|
// decode stream using stream's dictionary information |
558
|
36 |
|
if ($decoding && ('stream' === $element[0]) && (isset($objContentArr[($i - 1)][0])) && ('<<' === $objContentArr[($i - 1)][0])) { |
559
|
36 |
|
$element[3] = $this->decodeStream($pdfData, $xref, $objContentArr[($i - 1)][1], $element[1]); |
560
|
|
|
} |
561
|
36 |
|
$objContentArr[$i] = $element; |
562
|
36 |
|
++$i; |
563
|
36 |
|
} while (('endobj' !== $element[0]) && ($offset !== $oldOffset)); |
564
|
|
|
// remove closing delimiter |
565
|
36 |
|
array_pop($objContentArr); |
566
|
|
|
|
567
|
|
|
/* |
568
|
|
|
* return raw object content |
569
|
|
|
*/ |
570
|
36 |
|
return $objContentArr; |
571
|
|
|
} |
572
|
|
|
|
573
|
|
|
/** |
574
|
|
|
* Get the content of object, resolving indirect object reference if necessary. |
575
|
|
|
* |
576
|
|
|
* @param string $pdfData PDF data |
577
|
|
|
* @param array $obj Object value |
578
|
|
|
* |
579
|
|
|
* @return array containing object data |
580
|
|
|
* |
581
|
|
|
* @throws Exception |
582
|
|
|
*/ |
583
|
35 |
|
protected function getObjectVal(string $pdfData, $xref, array $obj): array |
584
|
|
|
{ |
585
|
35 |
|
if ('objref' == $obj[0]) { |
586
|
|
|
// reference to indirect object |
587
|
|
|
if (isset($this->objects[$obj[1]])) { |
588
|
|
|
// this object has been already parsed |
589
|
|
|
return $this->objects[$obj[1]]; |
590
|
|
|
} elseif (isset($xref[$obj[1]])) { |
591
|
|
|
// parse new object |
592
|
|
|
$this->objects[$obj[1]] = $this->getIndirectObject($pdfData, $xref, $obj[1], $xref[$obj[1]], false); |
593
|
|
|
|
594
|
|
|
return $this->objects[$obj[1]]; |
595
|
|
|
} |
596
|
|
|
} |
597
|
|
|
|
598
|
35 |
|
return $obj; |
599
|
|
|
} |
600
|
|
|
|
601
|
|
|
/** |
602
|
|
|
* Get object type, raw value and offset to next object |
603
|
|
|
* |
604
|
|
|
* @param int $offset Object offset |
605
|
|
|
* |
606
|
|
|
* @return array containing object type, raw value and offset to next object |
607
|
|
|
*/ |
608
|
37 |
|
protected function getRawObject(string $pdfData, int $offset = 0): array |
609
|
|
|
{ |
610
|
37 |
|
$objtype = ''; // object type to be returned |
611
|
37 |
|
$objval = ''; // object value to be returned |
612
|
|
|
|
613
|
|
|
// skip initial white space chars |
614
|
37 |
|
$offset += strspn($pdfData, $this->config->getPdfWhitespaces(), $offset); |
615
|
|
|
|
616
|
|
|
// get first char |
617
|
37 |
|
$char = $pdfData[$offset]; |
618
|
|
|
// get object type |
619
|
37 |
|
switch ($char) { |
620
|
37 |
|
case '%': // \x25 PERCENT SIGN |
621
|
|
|
// skip comment and search for next token |
622
|
1 |
|
$next = strcspn($pdfData, "\r\n", $offset); |
623
|
1 |
|
if ($next > 0) { |
624
|
1 |
|
$offset += $next; |
625
|
|
|
|
626
|
1 |
|
return $this->getRawObject($pdfData, $offset); |
627
|
|
|
} |
628
|
|
|
break; |
629
|
|
|
|
630
|
37 |
|
case '/': // \x2F SOLIDUS |
631
|
|
|
// name object |
632
|
37 |
|
$objtype = $char; |
633
|
37 |
|
++$offset; |
634
|
37 |
|
$pregResult = preg_match( |
635
|
37 |
|
'/^([^\x00\x09\x0a\x0c\x0d\x20\s\x28\x29\x3c\x3e\x5b\x5d\x7b\x7d\x2f\x25]+)/', |
636
|
37 |
|
substr($pdfData, $offset, 256), |
637
|
|
|
$matches |
638
|
|
|
); |
639
|
37 |
|
if (1 == $pregResult) { |
640
|
37 |
|
$objval = $matches[1]; // unescaped value |
641
|
37 |
|
$offset += \strlen($objval); |
642
|
|
|
} |
643
|
37 |
|
break; |
644
|
|
|
|
645
|
37 |
|
case '(': // \x28 LEFT PARENTHESIS |
646
|
37 |
|
case ')': // \x29 RIGHT PARENTHESIS |
647
|
|
|
// literal string object |
648
|
34 |
|
$objtype = $char; |
649
|
34 |
|
++$offset; |
650
|
34 |
|
$strpos = $offset; |
651
|
34 |
|
if ('(' == $char) { |
652
|
34 |
|
$open_bracket = 1; |
653
|
34 |
|
while ($open_bracket > 0) { |
654
|
34 |
|
if (!isset($pdfData[$strpos])) { |
655
|
|
|
break; |
656
|
|
|
} |
657
|
34 |
|
$ch = $pdfData[$strpos]; |
658
|
34 |
|
switch ($ch) { |
659
|
34 |
|
case '\\': // REVERSE SOLIDUS (5Ch) (Backslash) |
660
|
|
|
// skip next character |
661
|
17 |
|
++$strpos; |
662
|
17 |
|
break; |
663
|
|
|
|
664
|
34 |
|
case '(': // LEFT PARENHESIS (28h) |
665
|
|
|
++$open_bracket; |
666
|
|
|
break; |
667
|
|
|
|
668
|
34 |
|
case ')': // RIGHT PARENTHESIS (29h) |
669
|
34 |
|
--$open_bracket; |
670
|
34 |
|
break; |
671
|
|
|
} |
672
|
34 |
|
++$strpos; |
673
|
|
|
} |
674
|
34 |
|
$objval = substr($pdfData, $offset, ($strpos - $offset - 1)); |
675
|
34 |
|
$offset = $strpos; |
676
|
|
|
} |
677
|
34 |
|
break; |
678
|
|
|
|
679
|
37 |
|
case '[': // \x5B LEFT SQUARE BRACKET |
680
|
37 |
|
case ']': // \x5D RIGHT SQUARE BRACKET |
681
|
|
|
// array object |
682
|
36 |
|
$objtype = $char; |
683
|
36 |
|
++$offset; |
684
|
36 |
|
if ('[' == $char) { |
685
|
|
|
// get array content |
686
|
36 |
|
$objval = []; |
687
|
|
|
do { |
688
|
36 |
|
$oldOffset = $offset; |
689
|
|
|
// get element |
690
|
36 |
|
$element = $this->getRawObject($pdfData, $offset); |
691
|
36 |
|
$offset = $element[2]; |
692
|
36 |
|
$objval[] = $element; |
693
|
36 |
|
} while ((']' != $element[0]) && ($offset != $oldOffset)); |
694
|
|
|
// remove closing delimiter |
695
|
36 |
|
array_pop($objval); |
696
|
|
|
} |
697
|
36 |
|
break; |
698
|
|
|
|
699
|
37 |
|
case '<': // \x3C LESS-THAN SIGN |
700
|
37 |
|
case '>': // \x3E GREATER-THAN SIGN |
701
|
37 |
|
if (isset($pdfData[($offset + 1)]) && ($pdfData[($offset + 1)] == $char)) { |
702
|
|
|
// dictionary object |
703
|
37 |
|
$objtype = $char.$char; |
704
|
37 |
|
$offset += 2; |
705
|
37 |
|
if ('<' == $char) { |
706
|
|
|
// get array content |
707
|
37 |
|
$objval = []; |
708
|
|
|
do { |
709
|
37 |
|
$oldOffset = $offset; |
710
|
|
|
// get element |
711
|
37 |
|
$element = $this->getRawObject($pdfData, $offset); |
712
|
37 |
|
$offset = $element[2]; |
713
|
37 |
|
$objval[] = $element; |
714
|
37 |
|
} while (('>>' != $element[0]) && ($offset != $oldOffset)); |
715
|
|
|
// remove closing delimiter |
716
|
37 |
|
array_pop($objval); |
717
|
|
|
} |
718
|
|
|
} else { |
719
|
|
|
// hexadecimal string object |
720
|
14 |
|
$objtype = $char; |
721
|
14 |
|
++$offset; |
722
|
14 |
|
$pregResult = preg_match( |
723
|
14 |
|
'/^([0-9A-Fa-f\x09\x0a\x0c\x0d\x20]+)>/iU', |
724
|
14 |
|
substr($pdfData, $offset), |
725
|
|
|
$matches |
726
|
|
|
); |
727
|
14 |
|
if (('<' == $char) && 1 == $pregResult) { |
728
|
|
|
// remove white space characters |
729
|
14 |
|
$objval = strtr($matches[1], $this->config->getPdfWhitespaces(), ''); |
730
|
14 |
|
$offset += \strlen($matches[0]); |
731
|
|
|
} elseif (false !== ($endpos = strpos($pdfData, '>', $offset))) { |
732
|
|
|
$offset = $endpos + 1; |
733
|
|
|
} |
734
|
|
|
} |
735
|
37 |
|
break; |
736
|
|
|
|
737
|
|
|
default: |
738
|
37 |
|
if ('endobj' == substr($pdfData, $offset, 6)) { |
739
|
|
|
// indirect object |
740
|
36 |
|
$objtype = 'endobj'; |
741
|
36 |
|
$offset += 6; |
742
|
37 |
|
} elseif ('null' == substr($pdfData, $offset, 4)) { |
743
|
|
|
// null object |
744
|
3 |
|
$objtype = 'null'; |
745
|
3 |
|
$offset += 4; |
746
|
3 |
|
$objval = 'null'; |
747
|
37 |
|
} elseif ('true' == substr($pdfData, $offset, 4)) { |
748
|
|
|
// boolean true object |
749
|
12 |
|
$objtype = 'boolean'; |
750
|
12 |
|
$offset += 4; |
751
|
12 |
|
$objval = 'true'; |
752
|
37 |
|
} elseif ('false' == substr($pdfData, $offset, 5)) { |
753
|
|
|
// boolean false object |
754
|
2 |
|
$objtype = 'boolean'; |
755
|
2 |
|
$offset += 5; |
756
|
2 |
|
$objval = 'false'; |
757
|
37 |
|
} elseif ('stream' == substr($pdfData, $offset, 6)) { |
758
|
|
|
// start stream object |
759
|
36 |
|
$objtype = 'stream'; |
760
|
36 |
|
$offset += 6; |
761
|
36 |
|
if (1 == preg_match('/^([\r]?[\n])/isU', substr($pdfData, $offset), $matches)) { |
762
|
36 |
|
$offset += \strlen($matches[0]); |
763
|
36 |
|
$pregResult = preg_match( |
764
|
36 |
|
'/(endstream)[\x09\x0a\x0c\x0d\x20]/isU', |
765
|
36 |
|
substr($pdfData, $offset), |
766
|
|
|
$matches, |
767
|
36 |
|
\PREG_OFFSET_CAPTURE |
768
|
|
|
); |
769
|
36 |
|
if (1 == $pregResult) { |
770
|
36 |
|
$objval = substr($pdfData, $offset, $matches[0][1]); |
771
|
36 |
|
$offset += $matches[1][1]; |
772
|
|
|
} |
773
|
|
|
} |
774
|
37 |
|
} elseif ('endstream' == substr($pdfData, $offset, 9)) { |
775
|
|
|
// end stream object |
776
|
36 |
|
$objtype = 'endstream'; |
777
|
36 |
|
$offset += 9; |
778
|
37 |
|
} elseif (1 == preg_match('/^([0-9]+)[\s]+([0-9]+)[\s]+R/iU', substr($pdfData, $offset, 33), $matches)) { |
779
|
|
|
// indirect object reference |
780
|
36 |
|
$objtype = 'objref'; |
781
|
36 |
|
$offset += \strlen($matches[0]); |
782
|
36 |
|
$objval = (int) ($matches[1]).'_'.(int) ($matches[2]); |
783
|
37 |
|
} elseif (1 == preg_match('/^([0-9]+)[\s]+([0-9]+)[\s]+obj/iU', substr($pdfData, $offset, 33), $matches)) { |
784
|
|
|
// object start |
785
|
7 |
|
$objtype = 'obj'; |
786
|
7 |
|
$objval = (int) ($matches[1]).'_'.(int) ($matches[2]); |
787
|
7 |
|
$offset += \strlen($matches[0]); |
788
|
37 |
|
} elseif (($numlen = strspn($pdfData, '+-.0123456789', $offset)) > 0) { |
789
|
|
|
// numeric object |
790
|
36 |
|
$objtype = 'numeric'; |
791
|
36 |
|
$objval = substr($pdfData, $offset, $numlen); |
792
|
36 |
|
$offset += $numlen; |
793
|
|
|
} |
794
|
37 |
|
break; |
795
|
|
|
} |
796
|
|
|
|
797
|
37 |
|
return [$objtype, $objval, $offset]; |
798
|
|
|
} |
799
|
|
|
|
800
|
|
|
/** |
801
|
|
|
* Get Cross-Reference (xref) table and trailer data from PDF document data. |
802
|
|
|
* |
803
|
|
|
* @param int $offset xref offset (if known) |
804
|
|
|
* @param array $xref previous xref array (if any) |
805
|
|
|
* |
806
|
|
|
* @return array containing xref and trailer data |
807
|
|
|
* |
808
|
|
|
* @throws Exception if it was unable to find startxref |
809
|
|
|
* @throws Exception if it was unable to find xref |
810
|
|
|
*/ |
811
|
37 |
|
protected function getXrefData(string $pdfData, int $offset = 0, array $xref = []): array |
812
|
|
|
{ |
813
|
37 |
|
$startxrefPreg = preg_match( |
814
|
37 |
|
'/[\r\n]startxref[\s]*[\r\n]+([0-9]+)[\s]*[\r\n]+%%EOF/i', |
815
|
|
|
$pdfData, |
816
|
|
|
$matches, |
817
|
37 |
|
\PREG_OFFSET_CAPTURE, |
818
|
|
|
$offset |
819
|
|
|
); |
820
|
|
|
|
821
|
37 |
|
if (0 == $offset) { |
822
|
|
|
// find last startxref |
823
|
37 |
|
$pregResult = preg_match_all( |
824
|
37 |
|
'/[\r\n]startxref[\s]*[\r\n]+([0-9]+)[\s]*[\r\n]+%%EOF/i', |
825
|
|
|
$pdfData, $matches, |
826
|
37 |
|
\PREG_SET_ORDER, |
827
|
|
|
$offset |
828
|
|
|
); |
829
|
37 |
|
if (0 == $pregResult) { |
|
|
|
|
830
|
|
|
throw new Exception('Unable to find startxref'); |
831
|
|
|
} |
832
|
37 |
|
$matches = array_pop($matches); |
833
|
37 |
|
$startxref = $matches[1]; |
834
|
10 |
|
} elseif (strpos($pdfData, 'xref', $offset) == $offset) { |
835
|
|
|
// Already pointing at the xref table |
836
|
5 |
|
$startxref = $offset; |
837
|
5 |
|
} elseif (preg_match('/([0-9]+[\s][0-9]+[\s]obj)/i', $pdfData, $matches, \PREG_OFFSET_CAPTURE, $offset)) { |
838
|
|
|
// Cross-Reference Stream object |
839
|
5 |
|
$startxref = $offset; |
840
|
|
|
} elseif ($startxrefPreg) { |
841
|
|
|
// startxref found |
842
|
|
|
$startxref = $matches[1][0]; |
843
|
|
|
} else { |
844
|
|
|
throw new Exception('Unable to find startxref'); |
845
|
|
|
} |
846
|
|
|
|
847
|
37 |
|
if ($startxref > \strlen($pdfData)) { |
848
|
1 |
|
throw new Exception('Unable to find xref (PDF corrupted?)'); |
849
|
|
|
} |
850
|
|
|
|
851
|
|
|
// check xref position |
852
|
36 |
|
if (strpos($pdfData, 'xref', $startxref) == $startxref) { |
853
|
|
|
// Cross-Reference |
854
|
29 |
|
$xref = $this->decodeXref($pdfData, $startxref, $xref); |
855
|
|
|
} else { |
856
|
|
|
// Cross-Reference Stream |
857
|
7 |
|
$xref = $this->decodeXrefStream($pdfData, $startxref, $xref); |
858
|
|
|
} |
859
|
36 |
|
if (empty($xref)) { |
860
|
|
|
throw new Exception('Unable to find xref'); |
861
|
|
|
} |
862
|
|
|
|
863
|
36 |
|
return $xref; |
864
|
|
|
} |
865
|
|
|
|
866
|
|
|
/** |
867
|
|
|
* Parses PDF data and returns extracted data as array. |
868
|
|
|
* |
869
|
|
|
* @param string $data PDF data to parse |
870
|
|
|
* |
871
|
|
|
* @return array array of parsed PDF document objects |
872
|
|
|
* |
873
|
|
|
* @throws Exception if empty PDF data given |
874
|
|
|
* @throws Exception if PDF data missing %PDF header |
875
|
|
|
*/ |
876
|
37 |
|
public function parseData(string $data): array |
877
|
|
|
{ |
878
|
37 |
|
if (empty($data)) { |
879
|
|
|
throw new Exception('Empty PDF data given.'); |
880
|
|
|
} |
881
|
|
|
// find the pdf header starting position |
882
|
37 |
|
if (false === ($trimpos = strpos($data, '%PDF-'))) { |
883
|
|
|
throw new Exception('Invalid PDF data: missing %PDF header.'); |
884
|
|
|
} |
885
|
|
|
|
886
|
|
|
// get PDF content string |
887
|
37 |
|
$pdfData = substr($data, $trimpos); |
888
|
|
|
|
889
|
|
|
// get xref and trailer data |
890
|
37 |
|
$xref = $this->getXrefData($pdfData); |
891
|
|
|
|
892
|
|
|
// parse all document objects |
893
|
36 |
|
$objects = []; |
894
|
36 |
|
foreach ($xref['xref'] as $obj => $offset) { |
895
|
36 |
|
if (!isset($objects[$obj]) && ($offset > 0)) { |
896
|
|
|
// decode objects with positive offset |
897
|
36 |
|
$objects[$obj] = $this->getIndirectObject($pdfData, $xref, $obj, $offset, true); |
898
|
|
|
} |
899
|
|
|
} |
900
|
|
|
|
901
|
36 |
|
return [$xref, $objects]; |
902
|
|
|
} |
903
|
|
|
} |
904
|
|
|
|
If the size of the collection does not change during the iteration, it is generally a good practice to compute it beforehand, and not on each iteration: