これは非常に簡単な質問のように思えますが、ボタンをクリックしたときに 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
ありがとう!