mirror of
https://github.com/ciromattia/kcc
synced 2025-12-13 17:56:30 +00:00
Detect broken Pillow (close #135)
This commit is contained in:
@@ -898,9 +898,12 @@ def detectCorruption(tmpPath, orgPath):
|
||||
img.verify()
|
||||
img = Image.open(path)
|
||||
img.load()
|
||||
except Exception:
|
||||
except Exception as err:
|
||||
rmtree(os.path.join(tmpPath, '..', '..'), True)
|
||||
raise RuntimeError('Image file %s is corrupted.' % pathOrg)
|
||||
if 'decoder' in err and 'not available' in err:
|
||||
raise RuntimeError('Pillow was compiled without JPG and/or PNG decoder.')
|
||||
else:
|
||||
raise RuntimeError('Image file %s is corrupted.' % pathOrg)
|
||||
else:
|
||||
os.remove(os.path.join(root, name))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user