mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-20 15:18:08 +02:00
Attempt to find truncated endstream commands, in the fallback code-path, in Parser.makeStream
(issue 10004)
Apparently there's some PDF generators, in this case the culprit is "Nooog Pdf Library / Nooog PStoPDF v1.5", that manage to mess up PDF creation enough that endstream[1] commands actually become truncated. *Please note:* The solution implemented here isn't perfect, since it won't be able to cope with PDF files that contains a *mixture* of correct and truncated endstream commands. However, considering that this particular mode of corruption *fortunately* doesn't seem very common[2], a slightly less complex solution ought to suffice for now. Fixes 10004. --- [1] Scanning through the PDF data to find endstream commands becomes necessary, in order to determine the stream length in cases where the `Length` entry of the (stream) dictionary is missing/incorrect. [2] I cannot recall having seen any (previous) issues/bugs with "Missing endstream" errors.
This commit is contained in:
parent
c81cbe113c
commit
95e5bad4c4
3 changed files with 38 additions and 3 deletions
1
test/pdfs/issue10004.pdf.link
Normal file
1
test/pdfs/issue10004.pdf.link
Normal file
|
@ -0,0 +1 @@
|
|||
https://github.com/mozilla/pdf.js/files/2315390/2371410.pdf
|
|
@ -726,6 +726,13 @@
|
|||
"link": false,
|
||||
"type": "load"
|
||||
},
|
||||
{ "id": "issue10004",
|
||||
"file": "pdfs/issue10004.pdf",
|
||||
"md5": "64d1853060cefe3be50e5c4617dd0505",
|
||||
"rounds": 1,
|
||||
"link": true,
|
||||
"type": "load"
|
||||
},
|
||||
{ "id": "issue7507",
|
||||
"file": "pdfs/issue7507.pdf",
|
||||
"md5": "f7aeaafe0c89b94436e94eaa63307303",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue