使用PIL在Python中转换为灰度时出现错误信息?

时间:2016-07-14 23:04:28

标签: python image python-imaging-library

所以,我已经安装了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,这有什么不同吗?

1 个答案:

答案 0 :(得分:1)

你的问题可能是图像文件" James.png"在桌面上的示例中,它与脚本不在同一目录中。是这样的吗?

干杯