1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 22:58:07 +02:00

Merge pull request #17795 from calixteman/issue17794

Don't render corrupted inlined images
This commit is contained in:
calixteman 2024-03-18 10:18:44 +01:00 committed by GitHub
commit 10305bf181
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 40 additions and 21 deletions

View file

@ -739,27 +739,36 @@ class PartialEvaluator {
!dict.has("Mask") &&
w + h < SMALL_IMAGE_DIMENSIONS
) {
const imageObj = new PDFImage({
xref: this.xref,
res: resources,
image,
isInline,
pdfFunctionFactory: this._pdfFunctionFactory,
localColorSpaceCache,
});
// We force the use of RGBA_32BPP images here, because we can't handle
// any other kind.
imgData = await imageObj.createImageData(
/* forceRGBA = */ true,
/* isOffscreenCanvasSupported = */ false
);
operatorList.isOffscreenCanvasSupported =
this.options.isOffscreenCanvasSupported;
operatorList.addImageOps(
OPS.paintInlineImageXObject,
[imgData],
optionalContent
);
try {
const imageObj = new PDFImage({
xref: this.xref,
res: resources,
image,
isInline,
pdfFunctionFactory: this._pdfFunctionFactory,
localColorSpaceCache,
});
// We force the use of RGBA_32BPP images here, because we can't handle
// any other kind.
imgData = await imageObj.createImageData(
/* forceRGBA = */ true,
/* isOffscreenCanvasSupported = */ false
);
operatorList.isOffscreenCanvasSupported =
this.options.isOffscreenCanvasSupported;
operatorList.addImageOps(
OPS.paintInlineImageXObject,
[imgData],
optionalContent
);
} catch (reason) {
const msg = `Unable to decode inline image: "${reason}".`;
if (!this.options.ignoreErrors) {
throw new Error(msg);
}
warn(msg);
}
return;
}

View file

@ -0,0 +1,2 @@
https://github.com/mozilla/pdf.js/files/14607428/image1.pdf

View file

@ -9771,5 +9771,13 @@
"rounds": 1,
"annotations": true,
"type": "eq"
},
{
"id": "issue17794",
"file": "pdfs/issue17794.pdf",
"md5": "a66b5b938cb44ae241cad845cc3b5d2d",
"rounds": 1,
"link": true,
"type": "eq"
}
]