当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python PIL copy()用法及代码示例


PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。PIL.Image.copy()方法将图像复制到另一个图像对象,该方法在我们既需要复制图像又要保留原始图像时很有用。
用法:Image.copy()

参数: no arguments

返回:An image object
# Importing Image module from PIL package 
from PIL import Image 
  
# creating a image object 
im1 = Image.open(r"C:\Users\sadow984\Desktop\i3.PNG") 
  
# copying image to another image object 
im2 = im1.copy() 
  
# shows the copied image 
im2.show()

输出:

# Importing Image module from PIL package 
from PIL import Image 
  
# creating a image object 
im1 = Image.open(r"C:\Users\sadow984\Desktop\i3.PNG") 
  
# copying image to another image object 
im2 = im1.copy() 
  
# shows the original image 
im1.show()

输出:



相关用法


注:本文由纯净天空筛选整理自ravikishor大神的英文原创作品 Python PIL | copy() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。