tcpdi_parser icon indicating copy to clipboard operation
tcpdi_parser copied to clipboard

Parser for use with TCPDI, based on TCPDF_PARSER

Results 21 tcpdi_parser issues
Sort by recently updated
recently updated
newest added

`Uninitialized string offset: 59 application/third_party/tcpdf/tcpdi_parser.php 828` The line on 828 ```php $frag = $data{$offset} . @$data{$offset+1} . @$data{$offset+2} . @$data{$offset+3}; ``` Should change to ```php $frag = isset($data{$offset}) ? $data{$offset}...

If a pdf has such an object like the followings, `tcpdf_parser` fails to continue parsing the data. `getRawObject()` is expected to return an array which contains an object and its...

I've been using this library for a while and has been great so far. Today I got an error after a user tried to upload a PDF made using LaTeX....

I get this error `Uninitialized string offset: 35 application/third_party/tcpdf/tcpdi_parser.php 725` The line on 725 is in method getRawObject ``` while (strspn($data[$offset], "\x00\x09\x0a\x0c\x0d\x20") == 1) { $offset++; } ``` Some idea...

I've been using this package for over a year now and suddenly started getting memory exhaustion errors ` PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to...

File : tcpdi_parser.php Version. : 1.1 Line. : 1429 Method. : _getPageRotation() ```php private function _getPageRotation($obj) { // $obj = /Page $obj = $this->getObjectVal($obj); if (isset ($obj[1][1]['/Rotate'])) { $res =...

If a pdf has such an object like the followings, `tcpdf_parser` fails to continue parsing the data. ``` 2 0 obj /Resources 3 0 R >> ``` `getRawObject()` is expected...

Dear Paul, I can't merge the attached file because it stops with "Illegal string offset 'Type" at line 704 of the tcpdi_parser file. > protected function getRawObject($offset=0, $data=null) { if...

i don't know you intention here, but a count here generate me a warning on non countable object