1
這似乎是一個非常簡單的問題,但我在單擊按鈕時顯示jpg圖像時遇到問題。這裏是我的代碼(爲了時間的緣故,沒有按鈕代碼):在Tkinter中單擊按鈕時顯示.jpg圖像?
from tkinter import *
#screen stuff here
canvas = Canvas(app)
canvas.grid(row = 0,column = 0)
photo = PhotoImage(file = "test.jpg")
canvas.create_image(0,0, image = photo)
def show_image():
global canvas
global photo
canvas.create_image(0,0, image = photo)
#button that calls the function down here
謝謝!
我仍然得到相同的錯誤...嗯。有沒有其他的方式來顯示圖像? – codeforfood