From 156a443cdf8e62ca8e942d024f9bcf212a12180b Mon Sep 17 00:00:00 2001 From: Cezar Sa Espinola Date: Tue, 30 Jul 2013 16:38:56 -0300 Subject: [PATCH] Added IGNORE_DECODING_ERRORS flag to ImageFile allowing corrupted images to load --- PIL/ImageFile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PIL/ImageFile.py b/PIL/ImageFile.py index f5e2a839f..ce86aec5f 100644 --- a/PIL/ImageFile.py +++ b/PIL/ImageFile.py @@ -37,6 +37,7 @@ MAXBLOCK = 65536 SAFEBLOCK = 1024*1024 LOAD_TRUNCATED_IMAGES = False +IGNORE_DECODING_ERRORS = False ERRORS = { -1: "image buffer overrun error", @@ -228,7 +229,7 @@ class ImageFile(Image.Image): self.fp = None # might be shared - if (not LOAD_TRUNCATED_IMAGES or t == 0) and not self.map and e < 0: + if not IGNORE_DECODING_ERRORS and (not LOAD_TRUNCATED_IMAGES or t == 0) and not self.map and e < 0: # still raised if decoder fails to return anything raise_ioerror(e)