To work around Espen's corrupted image bug, we simply try to copy the image twice. The second time will usually work, unless the file is totally borked.

master
Jason A. Donenfeld 2011-05-09 09:33:30 -04:00
parent 76b43690f2
commit 6d75a3ed64
1 changed files with 8 additions and 1 deletions

View File

@ -207,7 +207,14 @@ class Photo(object):
if os.path.exists(thumb_path) and file_mtime(thumb_path) >= self._attributes["dateTimeFile"]:
return
gc.collect()
image = image.copy()
try:
image = image.copy()
except:
try:
image = image.copy() # we try again to work around PIL bug
except:
print "Image is corrupted. %s will not be created." % thumb_path
return
if square:
if image.size[0] > image.size[1]:
left = (image.size[0] - image.size[1]) / 2