gpt4 book ai didi

python - 属性错误: 'Image' object has no attribute 'thumbnail'

转载 作者:太空宇宙 更新时间:2023-11-03 20:31:40 30 4
gpt4 key购买 nike

我一次又一次地收到此错误,我不知道我在哪里做错了

from skimage import io
from PIL import Image
size= 363, 310
img = io.imread(url)
image = img.thumbnail(size, Image.ANTIALIAS)

最佳答案

我尝试了您的代码并收到错误:AttributeError:“Array”对象没有属性“thumbnail”。我通过执行以下操作将 io 的 imread 方法返回的数组转换为 Image 对象来更正代码:

from skimage import io
from PIL import Image
size= 363, 310
img_array = io.imread(url) # this actually returns an image array
img = Image.fromarray(img_array) # turn the array into Image object
image = img.thumbnail(size, Image.ANTIALIAS)

我不确定您是否写错了标题,其中显示“图像”对象没有属性“缩略图”,但这是我最好的建议。如果您实际上没有错误地编写错误并且错误仍然存​​在,也许您应该重新安装您的 PIL 版本?希望能帮助到你! :)

关于python - 属性错误: 'Image' object has no attribute 'thumbnail' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57465102/

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