|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
我在看那个0基础学习,但是我这里却显示无法识别gif这是为什么呀?我的图片已经和这个py文件放在同一个文件夹了呀。。。
这是我上课抄的那个代码
from tkinter import *
root = Tk()
textLabel = Label(root,text="miss")
textLabel.pack()
pt = PhotoImage(file="em.gif")
imageLabel = Label(root,image=pt)
imageLabel.pack()
mainloop()
这是错误原因
Traceback (most recent call last):
File "D:\Program Files (x86)\python\save\self\night\tk1.py", line 8, in <module>
pt = PhotoImage(file="em.gif")
File "C:\Python27\ArcGIS10.7\lib\lib-tk\Tkinter.py", line 3371, in __init__
Image.__init__(self, 'photo', name, cnf, master, **kw)
File "C:\Python27\ArcGIS10.7\lib\lib-tk\Tkinter.py", line 3325, in __init__
self.tk.call(('image', 'create', imgtype, name,) + options)
TclError: couldn't recognize data in image file "em.gif"
|
|