📜  Python PIL | ImageChops.lighter() 方法

📅  最后修改于: 2022-05-13 01:55:30.149000             🧑  作者: Mango

Python PIL | ImageChops.lighter() 方法

PIL 是Python Imaging Library,它为Python解释器提供了图像编辑功能。 ImageChops 模块包含许多算术图像操作,称为通道操作(“chops”)。这些可用于各种目的,包括特殊效果、图像合成、算法绘画等。
PIL.ImageChops.lighter()方法逐像素比较这两个图像,并返回一个包含较亮值的新图像。至少其中一个图像必须具有模式“1”。
Syntax: PIL.ImageChops.lighter(image1, image2)

Parameters:
image1: first image
image2: second image

Return Type: Image

图片1:

图片2:

# 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\i3.PNG")
   
# creating a image2 object
im2 = Image.open(r"C:\Users\sadow984\Desktop\c1.PNG")
  
# applying lighter method
im3 = ImageChops.lighter(im1, im2)
  
im3.show()

输出:

# 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\i3.PNG")
   
# creating a image2 object
im2 = Image.open(r"C:\Users\sadow984\Desktop\c1.PNG")
  
# applying lighter method
im3 = ImageChops.lighter(im2, im1)
  
im3.show()

输出: [关于交换参数]