canvas对象的create_image方法有两个重要的点要注意,一个是格式,第二是要保持持续引用:
1.This should be a PhotoImage or BitmapImage, or a compatible object (such as the PIL PhotoImage).
这应该是一个PhotoImage或BitmapImage,或者是一个兼容的对象(例如PIL PhotoImage)。
2.The application must keep a reference to the image object.
应用程序必须保留对图像对象的引用。
提前声明全局变量,之后在方法里使用global来声明变量为全局变量
image = None
im = None
def method():
global image
global im
image = Image.open("img.jpg")
im = ImageTk.PhotoImage(image)