栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

PhotoImage不显示与其关联的图像

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

PhotoImage不显示与其关联的图像

您需要使用指定选项

file
PhotoImage(file = "foo.gif")

另外,如effbot在PhotoImage的页面中所述,

您必须在Python程序中保留对图像对象的引用,方法是将其存储在全局变量中,或者将其附加到另一个对象。

from tkinter import *root = Tk()def cheese():    root.destroy()logo = PhotoImage(file = '../Desktop/logothing.gif')background_label = Label(root, image=logo)background_label.image = logobackground_label.place(x=0, y=0, relwidth=1, relheight=1)explanation = """Flaming Arrows whizz over your hair, War rages around you. Suddenly,it charges into you. A 8 foot tall mechanical beast the enemy have been training for war.You have no chance but to fight it. You swing your sword as hard as you can...only toleave a minor dent on it's armor. With one blow from its club, you fall unconscious."""w= Label(root, image=logo).pack(side='right')w1 = Button(root, text = 'Wake Up',command = cheese, fg='blue', font = "Impact 20")w1.pack(side='bottom')w2 = Label(root, justify=LEFT, text=explanation,compound = CENTER,fg="blue", padx=0,font="ComicSansMS 32 bold")w2.pack(side='left')


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/660253.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号