Problem in handle PNG by the PIL - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T14:02:23Zhttp://stackoverflow.com/feeds/question/919104http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/919104/problem-in-handle-png-by-the-pil1Problem in handle PNG by the PILAaron2009-05-28T03:52:35Z2009-05-28T05:08:13Z
<pre><code>from PIL import ImageFile as PILImageFile
p = PILImageFile.Parser()
#Parser the data
for chunk in content.chunks():
p.feed(chunk)
try:
image = p.close()
except IOError:
return None
#Here the model is RGBA
if image.mode != "RGB":
image = image.convert("RGB")
</code></pre>
<p>It always get stuck in here:</p>
<pre><code>image = image.convert("RGB")
File "C:\Python25\Lib\site-packages\PIL\Image.py" in convert
653. self.load()
File "C:\Python25\Lib\site-packages\PIL\ImageFile.py" in load
189. s = read(self.decodermaxblock)
File "C:\Python25\Lib\site-packages\PIL\PngImagePlugin.py" in load_read
365. return self.fp.read(bytes)
File "C:\Python25\Lib\site-packages\PIL\ImageFile.py" in read
300. data = self.data[pos:pos+bytes]
Exception Type: TypeError at
Exception Value: 'NoneType' object is unsubscriptable
</code></pre>
http://stackoverflow.com/questions/919104/problem-in-handle-png-by-the-pil/919256#9192563Answer by Alex Martelli for Problem in handle PNG by the PILAlex Martelli2009-05-28T05:08:13Z2009-05-28T05:08:13Z<p>Looks like the bug described at <a href="http://mail.python.org/pipermail/python-list/2008-November/687454.html" rel="nofollow">http://mail.python.org/pipermail/python-list/2008-November/687454.html</a>, and the fix shown at that URL should also work for you.</p>