def show():
file = raw_input("What is the name of the image file? ")
picture = Image(file)
width, height = picture.size()
pix = picture.getPixels()
我正在尝试编写代码来显示此图像,但此代码不提供图像。 如何更改我的代码才能显示此图像?
答案 0 :(得分:41)
import Image
image = Image.open('File.jpg')
image.show()
答案 1 :(得分:18)
不要忘记包含
import Image
为了表明它使用:
Image.open('pathToFile').show()