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


Python PIL logical_xor() and invert()用法及代码示例


PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。的ImageChops模块包含许多算术图像运算,称为通道运算(“chops”)。这些可以用于各种目的,包括特殊效果,图像合成,算法绘画等。

PIL.ImageChops.logical_xor()方法在两个图像之间应用逻辑XOR。至少一张图像必须具有“1”模式。

图片1

图片2:


用法: PIL.ImageChops.logical_xor(image1, image2)

参数:
image1:第一张图片
image2:第二张图片

返回类型:图片

# Importing Image and ImageChops module from PIL package   
from PIL import Image, ImageChops  
     
# creating a image1 object  
im1 = Image.open(r"C:\Users\sadow984\Desktop\a2.PNG") .convert("1") 
     
# creating a image2 object  
im2 = Image.open(r"C:\Users\sadow984\Desktop\x5.PNG") .convert("1") 
     
# applying logical_xor method  
im3 = ImageChops.logical_xor(im1, im2)  
     
im3.show() 

输出:

PIL.ImageChops.invert()方法反转图像(通道)。

用法: PIL.ImageChops.invert(image)

参数:
image1:图片

返回类型:图片

# Importing Image and ImageChops module from PIL package   
from PIL import Image, ImageChops  
     
# creating a image1 object  
im1 = Image.open(r"C:\Users\sadow984\Desktop\a2.PNG") 
     
# applying invert method  
im3 = ImageChops.invert(im1)  
     
im3.show() 

输出:



相关用法


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