怎么用easyGUI显示本地图片啊。求小伙伴指导
就是爬虫登录豆瓣那道题。if captcha_img_url:
img_response = urllib.request.urlopen(captcha_img_url.group(1))
img_captcha = img_response.read()
filename = 'E:\\project\\python\\cp.gif'
with open(filename,'wb') as f:
f.write(img_captcha)
g.buttonbox( image=filename)
我现在把得到的图片存到本地,要怎么显示出来?目前我只知道easygui里面的msgbox和buttonbox可以显示、
但是会报错
_tkinter.TclError: couldn't recognize data in image file "E:\project\python\cat_900_900.gif"
还有其他什么方法么
@鱼的泪 @冬雪雪冬 @不二如是 @李金龙 @lumber2388779 自己解决了,安装pip然后在安装个PIL库就行了。就可以看到很多格式的图片了 buttonbox('大家说我长得帅吗?', image='turtle.gif', choices=('帅', '不帅', '!@#$%'))
同志,使用这个模块中的buttonbox,里面有一个参数 image 在里面加上图片地址 新手·ing 发表于 2017-3-15 17:00
同志,使用这个模块中的buttonbox,里面有一个参数 image 在里面加上图片地址
思路是这样的。但是会报错,看我上面的答案。安装PIL库后,就可以随便格式的图片都能显示了 你msgbox是怎么插入图片的? @jackche0214 @zltzlt @Twilight6 @嘉岳呀 @不二如是 快一点
明天要用
页:
[1]