我試圖加載我的.jpg文件,它引發錯誤,但是如果我再試一次,就沒關係!爲什麼??Python PIL,圖片。 image.load()後出現錯誤
我的代碼和錯誤:
>>> import Image
>>> im1 = Image.open('/tmp/test.jpg')
>>> im1.load()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib64/python2.7/site-packages/PIL/ImageFile.py", line 201, in load
raise IOError("image file is truncated (%d bytes not processed)" % len(b))
IOError: image file is truncated (0 bytes not processed)
>>> im1.load()
<PixelAccess object at 0x7feffc2a1170>
>>>
謝謝!
的消息表明你綁加載圖像是(可能)缺少一些尾隨字節。爲什麼它會互相影響,我不知道,因爲你不說圖像是靜態的,等等。 – 2012-02-09 13:41:59
謝謝你的回答!圖像是靜態的。 – Hare 2012-02-09 15:20:11