4

我想在我的 Django 应用程序中裁剪缩略图图像,以便获得显示图像中心的二次图像。这不是很难,我同意。

我已经写了一些代码来做到这一点,但不知何故它缺乏某种……优雅。我不想玩代码高尔夫,但我认为必须有一种方法来表达这种更短、更 Python 的方式。

x = y = 200 # intended size
image = Image.open(filename)
width = image.size[0]
height = image.size[1]
if (width > height):
    crop_box = ( ((width - height)/2), 0, ((width - height)/2)+height, height )
    image = image.crop(crop_box)
elif (height > width):
    crop_box = ( 0, ((height - width)/2), width, ((height - width)/2)+width )
    image = image.crop(crop_box)
image.thumbnail([x, y], Image.ANTIALIAS)

你有什么想法吗?

编辑:解释 x, y

4

4 回答 4

9

我认为应该这样做。

size = min(image.Size)

originX = image.Size[0] / 2 - size / 2
originY = image.Size[1] / 2 - size / 2

cropBox = (originX, originY, originX + size, originY + size)
于 2009-04-02T12:06:23.230 回答
6

fit()PIL ImageOps模块中的功能可以满足您的需求:

ImageOps.fit(image, (min(*image.size),) * 2, Image.ANTIALIAS, 0, (.5, .5))
于 2009-04-02T12:05:43.200 回答
1
width, height = image.size
if width > height:
    crop_box = # something 1
else:
    crop_box = # something 2
image = image.crop(crop_box)
image.thumbnail([x, x], Image.ANTIALIAS)   # explicitly show "square" thumbnail
于 2009-04-02T11:56:26.827 回答
0

我想对 jepg 图像进行内容分析。我想拿一个 jpeg imafe 说 251 x 261 并通过一个算法将其裁剪为 96 x 87。这个程序可以像编写智能裁剪算法一样做到这一点,并提示重新调整图像。

于 2009-08-24T01:14:21.357 回答