亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

庄浪县| 巴林右旗| 乌审旗| 南丹县| 崇明县| 南澳县| 丹寨县| 昆明市| 永胜县| 新田县| 乌兰浩特市| 汉沽区| 宣恩县| 吴忠市| 嘉善县| 南木林县| 孟州市| 乌兰浩特市| 西吉县| 三江| 安福县| 乐山市| 乌鲁木齐市| 东方市| 义马市| 玉树县| 中西区| 历史| 铁岭县| 格尔木市| 沁阳市| 武定县| 南澳县| 岱山县| 阳曲县| 启东市| 宝坻区| 都昌县| 西和县| 休宁县| 喜德县|