中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python中tkinter canvas如何顯示圖片

發布時間:2021-05-20 11:28:51 來源:億速云 閱讀:1177 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關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可以做什么

Python是一種編程語言,內置了許多有效的工具,Python幾乎無所不能,該語言通俗易懂、容易入門、功能強大,在許多領域中都有廣泛的應用,例如最熱門的大數據分析,人工智能,Web開發等。

關于“python中tkinter canvas如何顯示圖片”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

夏邑县| 准格尔旗| 青冈县| 东安县| 科技| 石狮市| 高雄县| 云霄县| 出国| 开原市| 东源县| 罗平县| 察隅县| 葵青区| 闵行区| 苍山县| 颍上县| 安图县| 东丰县| 阳高县| 龙胜| 普兰县| 龙门县| 烟台市| 南皮县| 博乐市| 湘潭县| 南平市| 嘉峪关市| 忻城县| 山西省| 凤凰县| 赞皇县| 福建省| 兴义市| 河东区| 中江县| 尼木县| 略阳县| 海兴县| 海淀区|