您应该使用
PhotoImage实例作为
image值。另外,您需要保留图像的参考。
im = Image.open(pathToImage)ph = ImageTk.PhotoImage(im)label = Label(window, image=ph)label.image=ph #need to keep the reference of your image to avoid garbage collection
欢迎分享,转载请注明来源:内存溢出
您应该使用
PhotoImage实例作为
image值。另外,您需要保留图像的参考。
im = Image.open(pathToImage)ph = ImageTk.PhotoImage(im)label = Label(window, image=ph)label.image=ph #need to keep the reference of your image to avoid garbage collection
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)