diff options
-rw-r--r-- | mupdf/pdf_interpret.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mupdf/pdf_interpret.c b/mupdf/pdf_interpret.c index 8ee794cd..63516572 100644 --- a/mupdf/pdf_interpret.c +++ b/mupdf/pdf_interpret.c @@ -578,6 +578,11 @@ Lsetcolorspace: pdf_dropimage(img); } + else if (!strcmp(fz_toname(subtype), "PS")) + { + fz_warn("ignoring XObject with subtype PS"); + } + else { return fz_throw("unknown XObject subtype: %s", fz_toname(subtype)); |