im正在获得错误'photoImage实例没有属性'调整大小''''',尽管多个在线资源说这是使用pil进行调整图像大小的方法。有什么想法吗?
相关代码:
Deathwing = ImageTk.PhotoImage(Image.open('Deathwing.PNG'))
Deathwing2=Deathwing.resize((100,50),Image.ANTIALIAS)
picture1=Label(pictures_frame,image=Deathwing2)
picture1.grid(column=1,row=1)
和PIL被承担为:
from PIL import Image,ImageTk
对于那些有相同问题的人,我通过:
解决了它: deathwing=Image.open('Deathwing.PNG')
image2=deathwing.resize((100,50),Image.ANTIALIAS)
Deathwing2=ImageTk.PhotoImage(image2)