所以我只是想学习如何使用Image模块,由于某种原因,即使在我导入了Image模块之后,PyCharm也无法识别Image.Pixel方法。一个简单的问题,我敢肯定,但我在这里做错了什么? (我已经安装了PIL)
from PIL import Image
p = Image.Pixel(45, 76, 200)
print(p.getRed())
PyCharm告诉我'ImportError:没有名为'Pixel'的模块,但是从我在这里读到的(http://interactivepython.org/courselib/static/thinkcspy/MoreAboutIteration/2DimensionalIterationImageProcessing.html#image-objects),我真的不明白为什么这不起作用......
先谢谢你们。