以下是代码:
from PIL import Image
img = Image.open("test.png")
pix = img.load()
(r,g,b) = pix[10,20]
print "R[%d],G[%d],B[%d]" % (r,g,b)
昨天工作正常。现在,如果我运行它:
$ python test.py
Traceback (most recent call last):
File "test.py", line 4, in <module>
(r,g,b) = pix[10,20]
TypeError: 'int' object is not iterable
我不知道为什么它不再起作用了。 任何帮助都会很感激。
编辑:解决:sudo apt-get install --reinstall python-imaging