使用 Pillow 库裁剪图像


在本教程中,我们将使用 Pillow 库裁剪图像。为此,我们将使用 crop() 函数。该函数采用左、上、右、下像素坐标来裁剪图像。

原图像

算法

Step 1: Import Image from Pillow.
Step 2: Read the image.
Step 3: Crop the image using the crop function.
Step 4: Display the output.

示例代码

from PIL import Image

im = Image.open('testimage.jpg')
width, height = im.size

left = 5
top = height / 2
right = 164
bottom = 3 * height / 2

im1 = im.crop((left, top, right, bottom))
im1.show()

输出

更新时间: 2021-03-17

233 次浏览

开启你的职业生涯

完成课程即可获得认证

入门
广告