gpt4 book ai didi

python-2.7 - PhotoImage 实例没有属性 'resize'

转载 作者:行者123 更新时间:2023-12-05 00:49:20 24 4
gpt4 key购买 nike

我收到错误'PhotoImage instance has no attribute '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

最佳答案

对于遇到相同问题的人,我通过以下方式解决了它:

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

关于python-2.7 - PhotoImage 实例没有属性 'resize',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43435805/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com