gpt4 book ai didi

python - 在python中调整图像大小

转载 作者:太空狗 更新时间:2023-10-30 00:50:58 25 4
gpt4 key购买 nike

我有一张尺寸为 (288, 352) 的图片。我想将它的大小调整为 (160, 240)。我尝试了以下代码:

im = imread('abc.png')
img = im.resize((160, 240), Image.ANTIALIAS)

但它给出了一个错误TypeError: an integer is required请告诉我最好的方法。

最佳答案

matplotlib.pyplot.imread(或 scipy.ndimage.imread)返回 NumPy 数组,而不是 PIL 图像。

改为尝试:

In [25]: import Image
In [26]: img = Image.open(FILENAME)
In [32]: img.size
Out[32]: (250, 250)

In [27]: img = img.resize((160, 240), Image.ANTIALIAS)

In [28]: img.size
Out[28]: (160, 240)

关于python - 在python中调整图像大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16276349/

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