Stop warning for non-Name /Filter entries in the PDFImage
constructor (PR 9897 follow-up)
Fixes a stupid oversight on my part, since /Filter may (obviously) contain an Array, which resulted in unnecessary console warning spam in perfectly valid PDF files. Note that it still makes sense to check that /Filter is actually a Name, before attempting to access its `name` property, but the warning should definitely be removed.
This commit is contained in:
parent
8a4be24645
commit
a504befc76
@ -83,7 +83,7 @@ var PDFImage = (function PDFImageClosure() {
|
||||
mask = null, isMask = false, pdfFunctionFactory, }) {
|
||||
this.image = image;
|
||||
var dict = image.dict;
|
||||
if (dict.has('Filter')) {
|
||||
|
||||
const filter = dict.get('Filter');
|
||||
if (isName(filter)) {
|
||||
switch (filter.name) {
|
||||
@ -102,9 +102,6 @@ var PDFImage = (function PDFImageClosure() {
|
||||
image.numComps = 1;
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
warn(`PDFImage - invalid /Filter entry in dictionary: "${filter}".`);
|
||||
}
|
||||
}
|
||||
// TODO cache rendered images?
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user