如何使用PIL裁剪图像?

时间:2012-04-02 20:20:59

标签: python python-imaging-library crop

我希望通过从给定图像中删除前30行和最后30行来裁剪图像。我搜索过但没有得到确切的解决方案。有人有什么建议吗?

4 个答案:

答案 0 :(得分:155)

crop()方法:

w, h = yourImage.size
yourImage.crop((0, 30, w, h-30)).save(...)

答案 1 :(得分:31)

您需要为此导入PIL(Pillow)。 假设您的图像大小为1200,1600。我们将裁剪400,400到800,800的图像

from PIL import Image
img = Image.open("ImageName.jpg")
area = (400, 400, 800, 800)
cropped_img = img.crop(area)
cropped_img.show()

答案 2 :(得分:7)

(左,上,右,下)表示两个点,

  1. (左上)
  2. (右下方)

对于800x600像素的图像,图像的左上点是(0,0),右下点是(800,600)。

因此,为了将图像减半:

from PIL import Image
img = Image.open("ImageName.jpg")

img_left_area = (0, 0, 400, 600)
img_right_area = (400, 0, 800, 600)

img_left = img.crop(img_left_area)
img_right = img.crop(img_right_area)

img_left.show()
img_right.show()

enter image description here

Coordinate System

Python Imaging Library使用笛卡尔像素坐标系,左上角为(0,0)。请注意,坐标是指隐含的像素角。寻址为(0,0)的像素的中心实际上位于(0.5,0.5)。

坐标通常以2元组(x,y)的形式传递给库。矩形用4元组表示,左上角在前。例如,将覆盖所有800x600像素图像的矩形写为(0,0,800,600)。

答案 3 :(得分:4)

一种更简单的方法是使用https://www.taniarascia.com/promise-all-with-async-await/中的作物。您可以从每侧输入要裁剪的像素数。

from PIL import ImageOps

border = (0, 30, 0, 30) # left, up, right, bottom
ImageOps.crop(img, border)