- 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 - ImageChops.duplicate() 函数
PIL.ImageChops.duplicate() 函数是 PIL.Image.Image.copy() 方法的别名。两者执行相同的操作,它们创建输入图像的副本(复制)。复制的目的是允许修改复制的图像,同时保持原始图像不变。
语法
以下是函数的语法:
PIL.ImageChops.duplicate(image)
或者
PIL.Image.Image.copy()
参数
以下是其参数的详细信息:
Image - 要创建副本的图像对象。
返回值
该函数返回一个 Image 对象,它是输入图像的副本(复制)。
示例
示例 1
此示例演示了以两种不同方式复制图像的过程:使用 ImageChops.duplicate() 函数和使用 copy() 方法。
from PIL import Image, ImageChops # Open the original image original_image = Image.open('Images/Car_2.jpg') # Duplicate the original image using the ImageChops.duplicate() function duplicated_image = ImageChops.duplicate(original_image) # Duplicate the original image using the copy() method image_copy = original_image.copy() # Print the IDs of the original and duplicated images print('IDs of the Image objects') print('Original Image:', id(original_image)) print('Duplicated Image:',id(duplicated_image)) print('Copied Image:', id(image_copy))
输出
IDs of the Image objects Original Image: 1568872675552 Duplicated Image: 1568861890592 Copied Image: 1568861889968
您可以看到,这两种方法都创建了原始图像的独立副本,每个副本都有唯一的标识。
示例 2
以下示例演示如何使用 ImageChops.duplicate() 方法创建图像副本,然后将另一个图像粘贴到副本上,而不会影响原始图像,然后显示两张图像进行比较。
from PIL import Image, ImageChops # Open the original image and logo image = Image.open('Images/Car_2.jpg') logo = Image.open('Images/tutorialspoint2.jpg') # Duplicate the original image image_copy = ImageChops.duplicate(image) # Get the position to paste the logo position = ((image_copy.width - logo.width), (image_copy.height - logo.height)) # Paste the logo onto the duplicated image image_copy.paste(logo, position) # Display the duplicated and original images image_copy.show() image.show()
输出
原始图像
复制的图像
您可以观察到,即使在对副本进行修改后,原始图像也保持不变。
示例 3
以下示例演示如何使用 Image.copy() 方法创建图像副本,然后将另一个图像粘贴到副本上,而不会影响原始图像。之后,显示两张图像进行比较。
from PIL import Image, ImageDraw # Open the original image and logo original_image = Image.open('Images/Car_2.jpg') logo = Image.open('Images/tutorialspoint2.jpg') # Duplicate the original image duplicated_image = original_image.copy() # Get the position to paste the logo position = ((duplicated_image.width - logo.width), (duplicated_image.height - logo.height)) # Paste the logo onto the duplicated image duplicated_image.paste(logo, position) # Display both the duplicated and original images duplicated_image.show() original_image.show()
输出
原始图像
复制的图像
python_pillow_function_reference.htm
广告