gpt4 book ai didi

Python tkinter PhotoImage 无法正常工作

转载 作者:太空宇宙 更新时间:2023-11-03 14:49:54 29 4
gpt4 key购买 nike

我正在尝试使用 tkinter,但这段代码不起作用,我想知道是否有人知道为什么,谢谢。

from tkinter import *
window = Tk()
window.title("tkinter stuff")
photo1 = PhotoImage("file=hs.gif")
Label(window, image=photo1).grid(row=0,column=0,sticky=W)
window.mainloop()

澄清一下,出现了一个名为“tkinter stuff”的窗口,但没有显示图像。此外,在与我的代码相同的文件夹中有一个名为“hs.gif”的文件。

感谢帮助

最佳答案

你需要移动引号:

photo1 = PhotoImage(file="hs.gif")

关于Python tkinter PhotoImage 无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46624594/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com