91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

闵行区| 遂平县| 枣庄市| 苍溪县| 孟津县| 湖北省| 定兴县| 当雄县| 凤山县| 保定市| 平安县| 隆子县| 扎鲁特旗| 邢台县| 岗巴县| 石首市| 白水县| 新民市| 大田县| 五指山市| 濮阳市| 商洛市| 西乡县| 色达县| 永德县| 瑞丽市| 西林县| 随州市| 安图县| 杭锦后旗| 泾源县| 托里县| 桑日县| 巴青县| 高邮市| 昌平区| 定日县| 镇赉县| 盐池县| 西乌珠穆沁旗| 南溪县|