我正在尝试在此代码中显示图像“picture.gif”:
from graphics import *
import tkinter
win = GraphWin("Self Portrait", "1000", "500")
image = Image(Point(5,5), "picture.gif")
image.draw(win)
window.mainloop()
但是,我不断收到此错误:
Traceback (most recent call last):
File "/Users/jstorrke/Desktop/Python/graphicsProject.py", line 6, in <module>
image = Image(Point(5,5), "picture.gif")
File "/Users/jstorrke/Desktop/Python/graphics.py", line 827, in __init__
self.img = tk.PhotoImage(file=pixmap[0], master=_root)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/tkinter/__init__.py", line 3394, in __init__
Image.__init__(self, 'photo', name, cnf, master, **kw)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/tkinter/__init__.py", line 3350, in __init__
self.tk.call(('image', 'create', imgtype, name,) + options)
_tkinter.TclError: couldn't recognize data in image file "picture.gif"