[svn] Make the workaround to avoid parsing interlaced pngs actually work (see issue # 14)

This commit is contained in:
substantialnoninfringinguser
2009-05-15 03:56:11 +01:00
parent f27d5988f0
commit 7566faf77b
2 changed files with 6 additions and 3 deletions

View File

@@ -126,5 +126,8 @@ def parseSurveys(logfile=None):
def isInterlacedPNG(filePath): #We need to check for interlaced PNGs because the thumbnail engine can't handle them (uses PIL)
file=Image.open(filePath)
return file.info['interlace']
print filePath
if 'interlace' in file.info:
return file.info['interlace']
else:
return False