python tkinter 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.

关于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 = None
im = None

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

def method():
    global image
    global im
    image = Image.open("img.jpg")  
    im = ImageTk.PhotoImage(image)  
    ...

--------------------- 
作者:Sailist 
来源:CSDN 
原文:https://blog.csdn.net/sailist/article/details/79459185 
版权声明:本文为博主原创文章,转载请附上博文链接!

  • 1
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值