gpt4 book ai didi

python - 在Python PIL中使用可设置的中心和比例裁剪图像

转载 作者:行者123 更新时间:2023-11-30 23:10:07 27 4
gpt4 key购买 nike

我想使用 PIL 裁剪图像,尽管它可能是其他模块。我需要使用比例因子进行裁剪的方法,即 1.5 意味着输出将放大 1.5 倍。此外,我需要设置缩放的中心。这意味着将 x/2,y/2 设置为中心将直接缩放到中心,但其他 x,y 值将放大到这些像素。

如果有人知道如何做到这一点,我将非常感谢任何帮助。

现在我有一些裁剪工作与 ims = im.crop((int((x-x/i)/2), int((y-y/i)/2), int((x+(x/i))/2), int((y+(y/i))/2)))但这只放大到中心,而“i”并没有给出很好的比例因子。

再次感谢您的帮助。

最佳答案

这只是获得正确的中心和尺寸的问题。

  1. 确定要裁剪的位置的中心
  2. 使用比例因子确定新尺寸
  3. 确定裁剪图像的边界框

下面的脚本应该可以解决问题。

import os.path
from PIL import Image

def get_img_dir():
src_dir = os.path.dirname(__file__)
img_dir = os.path.join(src_dir, '..', 'img')
return img_dir

def open_img():
img_dir = get_img_dir()
img_name = 'amsterdam.jpg'
full_img_path = os.path.join(img_dir, img_name)
img = Image.open(full_img_path)
return img

def crop_image(img, xy, scale_factor):
'''Crop the image around the tuple xy

Inputs:
-------
img: Image opened with PIL.Image
xy: tuple with relative (x,y) position of the center of the cropped image
x and y shall be between 0 and 1
scale_factor: the ratio between the original image's size and the cropped image's size
'''
center = (img.size[0] * xy[0], img.size[1] * xy[1])
new_size = (img.size[0] / scale_factor, img.size[1] / scale_factor)
left = max (0, (int) (center[0] - new_size[0] / 2))
right = min (img.size[0], (int) (center[0] + new_size[0] / 2))
upper = max (0, (int) (center[1] - new_size[1] / 2))
lower = min (img.size[1], (int) (center[1] + new_size[1] / 2))
cropped_img = img.crop((left, upper, right, lower))
return cropped_img

def save_img(img, img_name):
img_dir = get_img_dir()
full_img_path = os.path.join(img_dir, img_name)
img.save(full_img_path)

if __name__ == '__main__':
ams = open_img()

crop_ams = crop_image(ams, (0.50, 0.50), 0.95)
save_img(crop_ams, 'crop_amsterdam_01.jpg')

crop_ams = crop_image(ams, (0.25, 0.25), 2.5)
save_img(crop_ams, 'crop_amsterdam_02.jpg')

crop_ams = crop_image(ams, (0.75, 0.45), 3.5)
save_img(crop_ams, 'crop_amsterdam_03.jpg')

原图: amsterdam.jpg

crop_amsterdam_01.jpg: crop_amsterdam_01.jpg

crop_amsterdam_02.jpg: crop_amsterdam_02.jpg

crop_amsterdam_03.jpg: crop_amsterdam_03.jpg

关于python - 在Python PIL中使用可设置的中心和比例裁剪图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30832654/

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