当前位置:   article > 正文

python tkinter canvas 显示图片_python canvas显示图片

python canvas显示图片

先来看一下该方法的说明

create_image(position, **options) [#]
Draws an image on the canvas.

position
Image position, given as two coordinates.
**options
Image 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.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

关于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)  
  • 1
  • 2
  • 3
  • 4

但如果我就是想要在方法里调用怎么办?
那么可以提前声明全局变量

image = None
im = None
  • 1
  • 2

之后在方法里使用global来声明变量为全局变量
即:

def method():
    global image
    global im
    image = Image.open("img.jpg")  
    im = ImageTk.PhotoImage(image)  
    ...
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/918303
推荐阅读
相关标签
  

闽ICP备14008679号