在python中调整图像大小

时间:2013-04-29 10:26:54

标签: python image

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

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

但它会出错TypeError: an integer is required 请告诉我最好的方法。

1 个答案:

答案 0 :(得分:7)

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)