所以,我已经安装了PIL(至少我认为是正确的)将彩色图像转换为灰度,当我使用此代码时
System.nanoTime()
IDLE告诉我这个......
from PIL import Image
image_file = Image.open("James.png") # open colour image
image_file = image_file.convert('1') # convert image to black and white
image_file.save('Gray.png')
我需要做些什么来解决这个问题?我有Python 2.7,这有什么不同吗?
答案 0 :(得分:1)
你的问题可能是图像文件" James.png"在桌面上的示例中,它与脚本不在同一目录中。是这样的吗?
干杯