随风~ 发表于 2019-4-1 14:46:21

如何在 buttonbox 里边显示图片

如何在 buttonbox 里边显示图片

当你调用一个 buttonbox 函数(例如 msgbox(), ynbox(), indexbox() 等等)的时候,你还可以为关键字参数 image 赋值,可以设置一个 .gif 格式的图像(PNG 格式的图像也是支持的哦^_^):

buttonbox('大家说我长得帅吗?', image='turtle.gif', choices=('帅', '不帅', '!@#$%'))

求助大佬turtle.gif这个图片该放在哪里才能被python寻找到啊

塔利班 发表于 2019-4-1 14:53:43

和你的py文件一个路径,或者你的gif文件路径写全

AINIDEREN 发表于 2020-2-20 10:24:50

import easygui as g
g.buttonbox("你喜欢下面哪一种水果?",image='C:\\Users\Administrator\Desktop\崇智广场.gif',choices=('西瓜','草莓','火龙果'))


我的也是打不开

L.Hernández 发表于 2020-7-6 19:35:29

import easygui as g
msg='我最喜欢哪支球队'
title='我最喜欢的球队'
choices=['拜仁慕尼黑']
print('我还是支持'+g.buttonbox(msg, title, choices))
print('李傕又打'+str(g.indexbox(msg, title, choices))+'了')
g.buttonbox('大家说萨内长得帅吗', image='D:\python\python-project\035\Sane.gif', choices=('帅', '超帅', '非常帅'))
我的也不行
页: [1]
查看完整版本: 如何在 buttonbox 里边显示图片