mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
[svn] Make the workaround to avoid parsing interlaced pngs actually work (see issue # 14)
This commit is contained in:
parent
f27d5988f0
commit
7566faf77b
@ -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
|
@ -13,7 +13,7 @@
|
||||
|
||||
{% block head %}{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
<body onLoad="contentHeight()">
|
||||
|
||||
<div id="header">
|
||||
<h1>CUCC Expeditions to Austria: 1976 - 2009</h1>
|
||||
|
Loading…
Reference in New Issue
Block a user