代码拉取完成,页面将自动刷新
from PIL import Image
def crop(image):
"""
This function just takes a variable containing the name of the
image to be worked on, then using the fixed coordinates, crops
the image so that there wouldn't be any excess black on the
image any more and returns the name of the cropped image
"""
image_obj = Image.open(image)
# coords = (600, 600, 700, 1050)
coords = (400, 400, 706, 1050)
cropped = "cropped.png"
cropped_image = image_obj.crop(coords)
cropped_image.save(cropped)
return cropped
# crop("img_2.jpg")
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。