我不熟悉python,在我的第一个项目中,我决定使用Pillow做一些事情。我刚开始遇到这个问题之前,
Traceback (most recent call last):
File "C:/Users/Daniel Li/images/test.py", line 5, in <module>
print(cookie.size())
TypeError: 'tuple' object is not callable
这是我的代码,
from PIL import Image
cookie = Image.open("image.ppm")
print(cookie.size())
cookie.show()
我尝试卸载并重新安装Pillow,我敢肯定我已正确安装了它。 请帮助
答案 0 :(得分:1)
print(cookie.size())
Image.size
是一个字段,而不是函数或方法。删除括号:
print(cookie.size)