在你提出问题之前,我确实尝试过将图像放入其中,而且看起来并没有这样做。
import Image
Image = Image.open('clerky.jpeg')
Image.show()
以上此代码在下面出现此错误。
import Image
ImportError: No module named 'Image'
答案 0 :(得分:3)
如果您使用的是Pillow,则correct usage是
from PIL import Image
要在Windows上安装Pillow,请启动Command Prompt
应用程序(或按 Win R 并键入cmd
,然后按 Enter )。型
pip install Pillow
点击输入,一切都应自动安装。
答案 1 :(得分:2)
我认为你的意思是from PIL import Image
答案 2 :(得分:-3)
来自PIL导入图像
PIL(Python图像库)必须安装在您的系统上,AKA" pil"和" Pillow"时。 effbot.org/imagingbook/pil-index.htm