小言_互联网的博客

tkinter点击按钮实现图片的切换

444人阅读  评论(0)

tkinter是python的标准Tk GUI工具包的接口,在windows下如果你安装的python3,那在安装python的时候,就已经自动安装了tkinter了

如果是在linux系统中,则不会自动安装tkinter,需要通过

sudo apt-get install python-tk

手动安装

 

首先先介绍一下,tkinter本身只支持gif等少数几个图片格式,如果图片并不复杂,建议直接右击图片,进入编辑,在画图界面将图片另存为gif格式就可以使用了(连png和jpeg都不支持。。。真的有点魔幻)

 

具体的编程操作

如果你尝试直接重写设置图片的有关代码会出问题

比如


  
  1. import tkinter as tk
  2. top = tk.Tk()
  3. top.title( "划水摸鱼") # 设置窗口
  4. width = 260
  5. height = 500
  6. top.geometry( f'{width}x{height}') # 设置窗口大小
  7. img_gif = tk.PhotoImage(file= './动作/问号.gif') # 设置图片
  8. label_img = tk.Label(top, image=img_gif) # 设置预显示图片
  9. label_img.place(x= 30, y= 120)
  10. def change_img(): # 设置按钮事件
  11. img_gif0 = tk.PhotoImage(file= './动作/走.gif')
  12. label_img.configure(image=img_gif0)
  13. label_img.place(x= 30, y= 120)
  14. button = tk.Button(top, text= 'Prediction', command=change_img) # 设置按钮
  15. button.place(x= 90, y= 330)
  16. top.mainloop()

在这里我直接重写了label_img,但是实际效果是

问号.gif能够正常显示,

点击按钮后,走.gif无法显示

 

实际切换图片,应该用configure实现

正确的操作如下


  
  1. import tkinter as tk
  2. top = tk.Tk()
  3. top.title( "划水摸鱼") # 设置窗口
  4. width = 260
  5. height = 500
  6. top.geometry( f'{width}x{height}') # 设置窗口大小
  7. img_gif = tk.PhotoImage(file= './动作/问号.gif') # 设置图片
  8. img_gif0 = tk.PhotoImage(file= './动作/走.gif')
  9. label_img = tk.Label(top, image=img_gif) # 设置预显示图片
  10. label_img.place(x= 30, y= 120)
  11. def change_img():
  12. label_img.configure(image=img_gif0) # 设置按钮事件
  13. button = tk.Button(top, text= 'Prediction', command=change_img) # 设置按钮
  14. button.place(x= 90, y= 330)
  15. top.mainloop()

具体效果

点击按钮后

 

 


转载:https://blog.csdn.net/weixin_39518984/article/details/115480844
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场