mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-25 09:38:06 +02:00
Respect the 'ColorTransform' entry in the image dictionary when decoding JPEG images (bug 956965, issue 6574)
Fixes https://bugzilla.mozilla.org/show_bug.cgi?id=956965. Fixes 6574.
This commit is contained in:
parent
6c263c1994
commit
116ba19dd9
6 changed files with 56 additions and 15 deletions
|
@ -596,7 +596,7 @@ var Parser = (function ParserClosure() {
|
|||
}
|
||||
if (name === 'DCTDecode' || name === 'DCT') {
|
||||
xrefStreamStats[StreamType.DCT] = true;
|
||||
return new JpegStream(stream, maybeLength, stream.dict, this.xref);
|
||||
return new JpegStream(stream, maybeLength, stream.dict);
|
||||
}
|
||||
if (name === 'JPXDecode' || name === 'JPX') {
|
||||
xrefStreamStats[StreamType.JPX] = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue