往往最不容易的记住的就是基础内容,因为简单,所以不在意,因此,在使用时候经常忘记要如何使用,以上说的呢,是小编自己,忘记怎么去使用python去修改图片,因此还专门跑去看了下实例,不知道有没有跟小编一样的小伙伴,如果也忘记了,那就跟着一起来回顾下呀~
问题:python Tkinter实时更改label里的图片?
代码如下:
from tkinter import* from PIL import ImageTk from PIL.ImageTk import PhotoImage def abc(): img = ImageTk.PhotoImage(file="000888.jpg") label.configure(image = img) root=Tk() img = ImageTk.PhotoImage(file="000581.jpg") label=Label(root, image=img, compound=CENTER) label.grid(row=1) buttun01=Button(root,text="change",command=abc) buttun01.grid(row=2) mainloop()
以上的代码运行的效果是一片空白,内容不对,修改后的代码如下所示:
如果不用PIL库,直接下面这样是可行的,没用过PIL库,不过tkinter里面的PhotoImage(file=’000581.jpg’),文件不能是jpg格式,要改成png格式的图片
from tkinter import*def abc(): label.config(image = img2)root=Tk() img = PhotoImage(file='000581.png') #改成png格式的图片 img2=PhotoImage(file='000888.png') label=Label(root,image=img,compound=CENTER) label.grid(row=1)buttun01=Button(root,text="change",command=abc) buttun01.grid(row=2) mainloop(
通过一组实例,大家可以对比看下,注意在修改图片时候以及看下实例的过程,希望大家可以加深关于修改图片的使用技巧哦~
神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试