- Python Pillow 教程
- Python Pillow - 首页
- Python Pillow - 概述
- Python Pillow - 环境搭建
- 基本图像操作
- Python Pillow - 图像处理
- Python Pillow - 调整图像大小
- Python Pillow - 翻转和旋转图像
- Python Pillow - 裁剪图像
- Python Pillow - 为图像添加边框
- Python Pillow - 识别图像文件
- Python Pillow - 合并图像
- Python Pillow - 图像剪切和粘贴
- Python Pillow - 图像滚动
- Python Pillow - 在图像上写入文本
- Python Pillow - ImageDraw 模块
- Python Pillow - 连接两张图像
- Python Pillow - 创建缩略图
- Python Pillow - 创建水印
- Python Pillow - 图像序列
- Python Pillow 颜色转换
- Python Pillow - 图像上的颜色
- Python Pillow - 使用颜色创建图像
- Python Pillow - 将颜色字符串转换为 RGB 颜色值
- Python Pillow - 将颜色字符串转换为灰度值
- Python Pillow - 通过更改像素值来更改颜色
- 图像处理
- Python Pillow - 降噪
- Python Pillow - 更改图像模式
- Python Pillow - 图像合成
- Python Pillow - 使用 Alpha 通道
- Python Pillow - 应用透视变换
- 图像滤镜
- Python Pillow - 为图像添加滤镜
- Python Pillow - 卷积滤波器
- Python Pillow - 模糊图像
- Python Pillow - 边缘检测
- Python Pillow - 浮雕图像
- Python Pillow - 增强边缘
- Python Pillow - 锐化蒙版滤镜
- 图像增强和校正
- Python Pillow - 增强对比度
- Python Pillow - 增强锐度
- Python Pillow - 增强颜色
- Python Pillow - 校正色彩平衡
- Python Pillow - 去噪
- 图像分析
- Python Pillow - 提取图像元数据
- Python Pillow - 识别颜色
- 高级主题
- Python Pillow - 创建动画 GIF
- Python Pillow - 批量处理图像
- Python Pillow - 转换图像文件格式
- Python Pillow - 为图像添加填充
- Python Pillow - 颜色反转
- Python Pillow - 使用 Numpy 进行机器学习
- Python Pillow 与 Tkinter BitmapImage 和 PhotoImage 对象
- Image 模块
- Python Pillow - 图像混合
- Python Pillow 有用资源
- Python Pillow - 快速指南
- Python Pillow - 函数参考
- Python Pillow - 有用资源
- Python Pillow - 讨论
Pillow - 裁剪图像
在 Pillow(Python 图像库)中裁剪图像涉及选择图像的特定区域或子区域,并从该区域创建新图像。此操作可用于去除图像中不需要的部分,专注于特定主题或将图像调整为特定尺寸。
Pillow 库的 **Image** 模块提供了 **crop()** 方法来对图像执行裁剪操作。
使用 crop() 方法裁剪图像
可以通过使用 crop() 方法裁剪图像,该方法允许我们定义一个框,指定要保留的区域的左、上、右和下角的坐标,然后它会创建一个仅包含原始图像该部分的新图像。
以下是 Pillow 库中 **crop()** 方法的基本语法:
PIL.Image.crop(box)
其中,
**box** - 一个元组,以 (left, upper, right, lower) 的格式指定裁剪框的坐标。这些坐标表示我们要保留的矩形区域的左、上、右和下边缘。
示例
在此示例中,我们通过传递我们要裁剪的图像区域的左、上、右和下角,使用 **crop()** 方法裁剪图像。
from PIL import Image #Open an image image = Image.open("Images/saved_image.jpg") # Display the inaput image image.show() #Define the coordinates for the region to be cropped (left, upper, right, lower) left = 100 upper = 50 right = 300 lower = 250 #Crop the image using the coordinates cropped_image = image.crop((left, upper, right, lower)) #Display the cropped image as a new file cropped_image.show()
输出
以上代码将生成以下输出:
输入图像
输出图像(裁剪后的图像)
示例
这是一个使用 crop() 方法对输入图像的指定部分执行裁剪操作的另一个示例。
from PIL import Image #Open an image image = Image.open("Images/yellow_car.jpg") # Display the inaput image image.show() #Define the coordinates for the region to be cropped (left, upper, right, lower) left = 100 upper = 100 right = 300 lower = 300 #Crop the image using the coordinates cropped_image = image.crop((left, upper, right, lower)) #Display the cropped image cropped_image.show()
输出
执行上述代码后,您将获得以下输出:
输入图像
输出(裁剪后的图像)
广告