PhotoImage实例没有属性'resize'

时间:2017-04-16 09:33:56

标签: python-2.7 tkinter python-imaging-library

我发现错误'PhotoImage实例没有属性'resize''尽管有多个在线资源声明这是使用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

1 个答案:

答案 0 :(得分:3)

对于有同样问题的人,我通过这样做来修复它:

 deathwing=Image.open('Deathwing.PNG')
 image2=deathwing.resize((100,50),Image.ANTIALIAS)
 Deathwing2=ImageTk.PhotoImage(image2)