tkinter 图片问题 求助
from tkinter import *from PIL import Image,ImageTk
root = Tk()
Label(root,text='这是一只哈士奇~').pack()
img = Image.open('1.jpg')
photo = ImageTk.PhotoImage(img)
Label(root,imge=photo).pack()
mainloop()
报错:_tkinter.TclError: unknown option "-imge"
有大佬知道怎么解决吗? 你把Label(root,imge=photo).pack()改成
Label(root,image=photo).pack()就好了from tkinter import *
from PIL import Image,ImageTk
root = Tk()
Label(root,text='这是一只哈士奇~').pack()
img = Image.open('1.jpg')
photo = ImageTk.PhotoImage(img)
Label(root,image=photo).pack()
mainloop()
qq1151985918 发表于 2020-12-21 13:28
你把Label(root,imge=photo).pack()改成
Label(root,image=photo).pack()就好了
谢了,我也真够奇葩,image 弄成了 imge
页:
[1]