时间:2021-05-22
先来看一下该方法的说明
create_image(position, **options) [#]Draws an image on the canvas.positionImage position, given as two coordinates.**optionsImage options.activeimage=anchor=Where to place the image relative to the given position. Default is CENTER.disabledimage=image=The image object. This should be a PhotoImage or BitmapImage, or a compatible object (such as the PIL PhotoImage). The application must keep a reference to the image object.state=Item state. One of NORMAL, DISABLED, or HIDDEN.tags=A tag to attach to this item, or a tuple containing multiple tags.Returns:The item id.关于image有两个重要的点要注意,一个是格式,第二是要保持持续引用
The image object. This should be a
1.This should be a PhotoImage or BitmapImage, or a compatible object (such as the PIL PhotoImage).
2.The application must keep a reference to the image object.
因此代码应该这样写,并且变量im应该是全局变量
image = Image.open("img.jpg") im = ImageTk.PhotoImage(image) canvas.create_image(300,50,image = im)但如果我就是想要在方法里调用怎么办?
那么可以提前声明全局变量
image = Noneim = None之后在方法里使用global来声明变量为全局变量
即:
def method(): global image global im image = Image.open("img.jpg") im = ImageTk.PhotoImage(image) ...以上这篇python tkinter canvas 显示图片的示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
使用Tkinter模块来创建简单的GUI程序。Tkinter的Widgets有:Button、Canvas、Checkbutton、Entry、Frame、La
本文实例讲述了python使用Tkinter显示网络图片的方法。分享给大家供大家参考。具体实现方法如下:'''tk_image_view_url_io.pydi
什么是Tkinter?Tkinter是Python的标准GUI库。Python使用Tkinter可以快速的创建GUI应用程序。由于Tkinter是内置到pyth
一、Tkinter的介绍和简单教程Tkinter是Python的标准GUI库。Python使用Tkinter可以快速的创建GUI应用程序。由于Tkinter是内
前言Tkinter是Python的标准GUI库。Python使用Tkinter可以快速的创建GUI应用程序。由于Tkinter是内置到python的安装包中、只