- 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 - 讨论
Python Pillow - 添加图像边框
在图像处理中,添加图像边框是一项常见的任务。边框可以帮助框定内容,吸引对特定区域的注意,或添加装饰元素。在 Pillow (PIL) 中,使用 **ImageOps** 模块的 **expand()** 方法可以增加图像的尺寸,在图像周围添加边框或填充。这对于添加边框、创建特定尺寸的画布或调整图像大小以适应特定纵横比等多种用途都很有帮助。
expand() 方法
**expand()** 方法可用于为图像添加边框并调整其尺寸,同时保持纵横比。我们可以自定义大小和边框颜色以满足我们的特定需求。
以下是 expand() 方法的基本语法:
PIL.Image.expand(size, fill=None)
其中:
**size** - 指定扩展图像的新尺寸(即宽度和高度)的元组。
**fill (可选)** - 用于填充边框区域的可选颜色值。它应指定为颜色元组 (R, G, B) 或表示颜色的整数值。
以下是本章所有示例中使用的输入图像。
示例
在这个示例中,我们使用 **expand()** 方法创建带有边框的扩展图像。
from PIL import Image, ImageOps #Open an image image = Image.open("Images/hand writing.jpg") #Define the new dimensions for the expanded image new_width = image.width + 40 #Add 40 pixels to the width new_height = image.height + 40 #Add 40 pixels to the height #Expand the image with a white border expanded_image = ImageOps.expand(image, border=20, fill="red") #Save or display the expanded image expanded_image.save("output Image/expanded_output.jpg") open_expand = Image.open("output Image/expanded_output.jpg") open_expand.show()
输出
示例
这是另一个示例,我们使用 **Image** 模块的 **expand()** 方法使用蓝色扩展图像边框。
from PIL import Image, ImageOps #Open an image image = Image.open("Images/hand writing.jpg") #Define the new dimensions for the expanded image new_width = image.width + 40 #Add 40 pixels to the width new_height = image.height + 40 #Add 40 pixels to the height #Expand the image with a white border expanded_image = ImageOps.expand(image, border=100, fill="blue") #Save or display the expanded image expanded_image.save("output Image/expanded_output.jpg") open_expand = Image.open("output Image/expanded_output.jpg") open_expand.show()
输出
广告