2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-14 22:17:13 +00:00

[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 b4c1d0cbb9
commit a4212632b2
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