Python 使用pillow裁剪图像
在这篇文章中,我们将学习如何使用pillow库裁剪图像。裁剪图像是指在图像中选择一个矩形区域,并删除矩形区域外的所有内容。为了裁剪图像,我们使用了图像对象的crop()方法。
语法: IMG .crop( box_tuple )
参数 :
图像_路径- 图像的位置
IMG- 要裁剪的图像
box_tuple- [左、上、右、下]要裁剪的图像。
返回:一个代表裁剪后的图像的图像对象。
示例 1:
# import Image module
from PIL import Image
# open the image
Image1 = Image.open('D:/cat.jpg')
# crop the image
croppedIm = Image1.crop((130, 120, 200, 200))
# show the image
croppedIm.show()
输入图片:
输出 :
示例 2:
# import Image module
from PIL import Image
# open the image
Image1 = Image.open('D:/cat.jpg')
# crop the image
croppedIm = Image1.crop((130, 50, 250, 150))
# show the image
croppedIm.show()
输入图片:
输出 :