没有合适的资源?快使用搜索试试~ 我知道了~
python tkinter canvas 显示图片的示例
18 下载量 14 浏览量
2020-12-26
02:50:11
上传
评论 1
收藏 38KB PDF 举报
温馨提示
先来看一下该方法的说明 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 s
资源推荐
资源详情
资源评论
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)
...
以上这篇python tkinter canvas 显示图片的示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多
支持软件开发网。
您可能感兴趣的文章您可能感兴趣的文章:在python tkinter中Canvas实现进度条显示的方法python tkinter组件使用详解python tkinter组件摆放方式
详解python tkinter基本属性详解Python3 tkinter 实现文件读取及保存功能python+tkinter实现学生管理系统python tkinter
canvas使用实例
资源评论
weixin_38667849
- 粉丝: 7
- 资源: 895
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- bdwptqmxgj11.zip
- onnxruntime-win-x86
- onnxruntime-win-x64-gpu-1.20.1.zip
- vs2019 c++20 语法规范 头文件 <ratio> 的源码阅读与注释,处理分数的存储,加减乘除,以及大小比较等运算
- 首次尝试使用 Win,DirectX C++ 中的形状渲染套件.zip
- 预乘混合模式是一种用途广泛的三合一混合模式 它已经存在很长时间了,但似乎每隔几年就会被重新发现 该项目包括使用预乘 alpha 的描述,示例和工具 .zip
- 项目描述 DirectX 引擎支持版本 9、10、11 库 Microsoft SDK 功能相机视图、照明、加载网格、动画、蒙皮、层次结构界面、动画控制器、网格容器、碰撞系统 .zip
- 项目 wiki 文档中使用的代码教程的源代码库.zip
- 面向对象的通用GUI框架.zip
- 基于Java语言的PlayerBase游戏角色设计源码
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功