Python PIL logical_xor()和invert()方法

Python PIL logical_xor()和invert()方法

PIL是Python成像库,它为Python解释器提供了图像编辑功能。ImageChops模块包含一些算术图像操作,称为通道操作(”chops”)。这些可以用于各种目的,包括特殊效果、图像合成、算法绘画等等。

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

Image 1:
Python PIL logical_xor()和invert()方法
Image2:
Python PIL logical_xor()和invert()方法

语法: 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() 

输出:
Python PIL logical_xor()和invert()方法

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

语法: PIL.ImageChops.invert(image)

参数:
image1: image

返回类型: Image

# 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() 

输出:
Python PIL logical_xor()和invert()方法

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程