Handle exception from pillow (#16190)
This commit is contained in:
parent
d166f2da80
commit
499bb3f4a2
1 changed files with 4 additions and 1 deletions
|
@ -64,7 +64,10 @@ def _resize_image(image, opts):
|
|||
quality = opts.quality or DEFAULT_QUALITY
|
||||
new_width = opts.max_width
|
||||
|
||||
img = Image.open(io.BytesIO(image))
|
||||
try:
|
||||
img = Image.open(io.BytesIO(image))
|
||||
except IOError:
|
||||
return image
|
||||
imgfmt = str(img.format)
|
||||
if imgfmt not in ('PNG', 'JPEG'):
|
||||
_LOGGER.debug("Image is of unsupported type: %s", imgfmt)
|
||||
|
|
Loading…
Add table
Reference in a new issue