使用Python在两侧大于1280时调整图像大小

时间:2015-02-11 10:47:10

标签: python python-imaging-library pillow

我想使用Python根据以下两个条件调整任何图像的大小。

1)如果图像是横向的,请获取宽度,如果大于1280将图像宽度调整为1280 保持纵横比

2)如果图像是纵向的,请获得高度,如果大于1280调整高度,则高度为1280 保持纵横比

在Python中,实现这一目标的最佳方法/方法是什么?不知道该用什么,这就是我看到它的运作方式。

伪代码:

If image.height > image.width:
  size = image.height

If image.height < image.width:
  size = image.width

If size > 1280:
  resize maintaining aspect ratio

我在看Pillow(PIL)。

1 个答案:

答案 0 :(得分:3)

你可以通过PIL这样做:

import Image

MAX_SIZE = 1280
image = Image.open(image_path)
original_size = max(image.size[0], image.size[1])

if original_size >= MAX_SIZE:
    resized_file = open(image_path.split('.')[0] + '_resized.jpg', "w")
    if (image.size[0] > image.size[1]):
        resized_width = MAX_SIZE
        resized_height = int(round((MAX_SIZE/float(image.size[0]))*image.size[1])) 
    else:
        resized_height = MAX_SIZE
        resized_width = int(round((MAX_SIZE/float(image.size[1]))*image.size[0]))

    image = image.resize((resized_width, resized_height), Image.ANTIALIAS)
    image.save(resized_file, 'JPEG')

另外,您可以删除原始图像并重命名已调整大小。