python裁剪图片

from PIL import Image

left = 763
top = 863
right = 1258
bottom = 962

im = Image.open("img.jpg")
im = im.crop((left, top, right, bottom))
im.save("img_corp.jpg")

 

posted @ 2021-01-25 11:31  OTAKU_nicole  阅读(167)  评论(0编辑  收藏  举报