我似乎无法让我的PIL Image在画布上工作。代码:
from Tkinter import*
import Image, ImageTk
root = Tk()
root.geometry('1000x1000')
canvas = Canvas(root,width=999,height=999)
canvas.pack()
image = ImageTk.PhotoImage("ball.gif")
imagesprite = canvas.create_image(400,400,image=image)
root.mainloop()
错误:
Traceback (most recent call last):
File "C:/Users/Mark Malkin/Desktop/3d Graphics Testing/afdds.py", line 7, in <module>
image = ImageTk.PhotoImage("ball.gif")
File "C:\Python27\lib\site-packages\PIL\ImageTk.py", line 109, in __init__
mode = Image.getmodebase(mode)
File "C:\Python27\lib\site-packages\PIL\Image.py", line 245, in getmodebase
return ImageMode.getmode(mode).basemode
File "C:\Python27\lib\site-packages\PIL\ImageMode.py", line 50, in getmode
return _modes[mode]
KeyError: 'ball.gif'
我需要使用PIL图像而非PhotoImages,因为我想调整图像大小。请不要建议切换到Pygame,因为我想使用Tkinter。
答案 0 :(得分:8)
首先尝试创建PIL图像,然后使用它创建PhotoImage。
from Tkinter import *
import Image, ImageTk
root = Tk()
root.geometry('1000x1000')
canvas = Canvas(root,width=999,height=999)
canvas.pack()
pilImage = Image.open("ball.gif")
image = ImageTk.PhotoImage(pilImage)
imagesprite = canvas.create_image(400,400,image=image)
root.mainloop()
答案 1 :(得分:3)
(一个老问题,但到目前为止答案只有一半完成。)
阅读文档:
class PIL.ImageTk.PhotoImage(image=None, size=None, **kw)
image
- PIL图像或模式字符串。 [...] file
- 用于加载图片的文件名(使用Image.open(file)
)。所以在你的例子中,使用
image = ImageTk.PhotoImage(file="ball.gif")
或明确
image = ImageTk.PhotoImage(Image("ball.gif"))
(并记住 - 正如你所做的那样:在你的Python程序中保留对图像对象的引用,否则在你看到它之前就会对它进行垃圾收集。)
答案 2 :(得分:2)
您可以导入多种图像格式,并使用此代码调整大小。 &#34; basewidth&#34;设置图像的宽度。
from Tkinter import *
import PIL
from PIL import ImageTk, Image
root=Tk()
image = Image.open("/path/to/your/image.jpg")
canvas=Canvas(root, height=200, width=200)
basewidth = 150
wpercent = (basewidth / float(image.size[0]))
hsize = int((float(image.size[1]) * float(wpercent)))
image = image.resize((basewidth, hsize), PIL.Image.ANTIALIAS)
photo = ImageTk.PhotoImage(image)
item4 = canvas.create_image(100, 80, image=photo)
canvas.pack(side = TOP, expand=True, fill=BOTH)
root.mainloop()
答案 3 :(得分:0)
在这个问题上,我用头撞墙了一段时间,直到发现以下内容:
http://effbot.org/pyfaq/why-do-my-tkinter-images-not-appear.htm
显然,Python的垃圾收集器可以垃圾ImageTk对象。我想象使用很多小部件(例如我的小部件)的应用更容易受到这种行为的影响。