详解python tkinter 图片插入问题


Posted in Python onSeptember 03, 2020

通过tkinter.PhotoImage插入GIF, PGM/PPM格式的图片。

import tkinter

class Gui:
  def __init__(self):  
    self.gui=tkinter.Tk()                        # create gui window
    self.gui.title("Image Display")                   # set the title of gui 
    self.gui.geometry("800x600")                    # set the window size of gui 

    img = tkinter.PhotoImage(file="C:/Users/15025/Desktop/bear.gif")  # read image from path

    label1=tkinter.Label(self.gui,image=img)              # create a label to insert this image
    label1.grid()                            # set the label in the main window
 
    self.gui.mainloop()                         # start mainloop

main = Gui()

注意: img = tkinter.PhotoImage(file="C:/Users/15025/Desktop/bear.gif") 中的关键字file不能够省略,否则程序无法正常显示图片。

对于常用的PNG,与JPG格式的图片,我们需要从python image library(pillow)(PIL)导入Image与ImageTk模块来实现,代码如下:

import tkinter
from PIL import Image
from PIL import ImageTk


class Gui:
  def __init__(self):  
    self.gui=tkinter.Tk()                # create gui window
    self.gui.title("Image Display")           # set the title of gui 
    self.gui.geometry("800x600")            # set the window size of gui 

    load = Image.open("C:/Users/15025/Desktop/1.png")  # open image from path
    img = ImageTk.PhotoImage(load)           # read opened image

    label1=tkinter.Label(self.gui,image=img)      # create a label to insert this image
    label1.grid()                    # set the label in the main window
 
    self.gui.mainloop()                 # start mainloop

main = Gui()

然而在实际操作中,本人使用的是Anaconda spyder编译器,当我们在读入图像时程序出错后,再次运行程序就会导致image "pyimage1" doesn't exist错误,每次运行一次,数字就会增加1,如:image "pyimage2" doesn't exist。遇到此错误,可以直接在IPython控制台界面重启IPython内核即可,或者关闭编译器并重新打开。

看似我们已经完全实现了图片的插入,但是这种插入方法是存在隐患的,具体代码如下:

import tkinter as tk
from PIL import Image
from PIL import ImageTk


class Gui(tk.Tk):
  def __init__(self):
    super().__init__()
    self.title("Figure dynamic show v1.01")
    # self.geometry("1000x800+400+100")
    self.mainGui()
    # self.mainloop()
    

  def mainGui(self):
    image = Image.open("C:/Users/15025/Desktop/1.png")
    photo = ImageTk.PhotoImage(image)
    label = tk.Label(self, image=photo)
    label.image = photo     # in case the image is recycled
    label.grid()
    

main = Gui()
main.mainloop()

这里我们可以看到相比较上面的程序,我们将Gui界面的图像插入部分分离到另一个函数中,并且直接定义一个tkinter的类,这样做的好处是我们可以直接用self替代创建的主窗口界面,并且我们可以在不同的地方启动主循环,self.mainloop()和main.mainloop()任选一个即可。并且因为我们想要插入图片,所以我们可以省略指定Gui界面的尺寸,这样做的好处是会创建一个自适应图片大小的Gui界面。最重要的是我们可以看到多了一行代码label.image = photo,我们将选取的图片photo赋值给了label的属性对象image,如果没有这一行代码,图片便无法正常显示,这是因为python会自动回收不使用的对象,所以我们需要使用属性对象进行声明。 上述的程序隐患便是因为缺少了这一行代码。

至此,tkinter的图片插入可暂时告一段落。

到此这篇关于详解python tkinter 图片插入问题的文章就介绍到这了,更多相关python tkinter 图片插入内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
Python中函数的参数传递与可变长参数介绍
Jun 30 Python
python编程嵌套函数实例代码
Feb 11 Python
Python 反转字符串(reverse)的方法小结
Feb 20 Python
详解Python判定IP地址合法性的三种方法
Mar 06 Python
python中实现将多个print输出合成一个数组
Apr 19 Python
python 从csv读数据到mysql的实例
Jun 21 Python
Python将一个Excel拆分为多个Excel
Nov 07 Python
python django生成迁移文件的实例
Aug 31 Python
matplotlib基础绘图命令之bar的使用方法
Aug 13 Python
python list等分并从等分的子集中随机选取一个数
Nov 16 Python
python中HTMLParser模块知识点总结
Jan 25 Python
浅谈tf.train.Saver()与tf.train.import_meta_graph的要点
May 26 Python
解决PyCharm IDE环境下,执行unittest不生成测试报告的问题
Sep 03 #Python
PyTorch中Tensor的数据类型和运算的使用
Sep 03 #Python
python开发入门——set的使用
Sep 03 #Python
使用anaconda安装pytorch的实现步骤
Sep 03 #Python
解决Python安装cryptography报错问题
Sep 03 #Python
解决python打开https出现certificate verify failed的问题
Sep 03 #Python
详解torch.Tensor的4种乘法
Sep 03 #Python
You might like
PHP面向对象之旅:深入理解static变量与方法
2014/01/06 PHP
ThinkPHP之用户注册登录留言完整实例
2014/07/22 PHP
PHP中的类型提示(type hinting)功能介绍
2015/07/01 PHP
PHP设计模式之单例模式定义与用法分析
2019/03/26 PHP
php模拟post提交请求调用接口示例解析
2020/08/07 PHP
jquery异步跨域访问代码
2013/06/28 Javascript
JavaScript数据类型详解
2015/04/01 Javascript
JS组件Bootstrap实现弹出框和提示框效果代码
2015/12/08 Javascript
jquery的ajax提交form表单的两种方法小结(推荐)
2016/05/25 Javascript
Query常用DIV操作获取和设置长度宽度的实现方法
2016/09/19 Javascript
jQuery EasyUI Accordion可伸缩面板组件使用详解
2017/02/28 Javascript
vue-router路由参数刷新消失的问题解决方法
2017/06/17 Javascript
在js代码拼接dom对象到页面上的模板总结
2018/10/21 Javascript
Nodejs实现的操作MongoDB数据库功能完整示例
2019/02/02 NodeJs
Vue插槽原理与用法详解
2019/03/05 Javascript
Flutter部件内部状态管理小结之实现Vue的v-model功能
2019/06/11 Javascript
VUEX-action可以修改state吗
2019/11/19 Javascript
vue实现简易的双向数据绑定
2020/12/29 Vue.js
Python写的Socks5协议代理服务器
2014/08/06 Python
实例探究Python以并发方式编写高性能端口扫描器的方法
2016/06/14 Python
pycharm远程调试openstack代码
2017/11/21 Python
Django模型序列化返回自然主键值示例代码
2019/06/12 Python
Windows10下 python3.7 安装 facenet的教程
2019/09/10 Python
使用python 的matplotlib 画轨道实例
2020/01/19 Python
Python基于BeautifulSoup爬取京东商品信息
2020/06/01 Python
python logging模块的使用
2020/09/07 Python
HTML5在a标签内放置块级元素示例代码
2013/08/23 HTML / CSS
英国最大线上综合鞋类商城:Office
2017/12/08 全球购物
《搭石》教学反思
2014/04/07 职场文书
奥巴马经典演讲稿
2014/09/13 职场文书
税务干部群众路线教育实践活动对照检查材料
2014/09/20 职场文书
村党支部群众路线教育实践活动对照检查材料
2014/09/26 职场文书
2015年妇委会工作总结
2015/05/22 职场文书
nginx location优先级的深入讲解
2021/03/31 Servers
javascript函数式编程基础
2021/09/15 Javascript
Echarts如何重新渲染实例详解
2022/05/30 Javascript