Python PIL ImageChops.constant()

Python PIL ImageChops.constant()

PIL是Python图像库,它为Python解释器提供了图像编辑功能。图像模块提供了一个同名的类,用来表示一个PIL图像。该模块还提供了一些工厂函数,包括从文件加载图像和创建新图像的函数。

PIL.ImageChops.constant()用给定的灰度水平填充一个通道。

语法: PIL.ImageChops.constant(image, value)

参数:
image – 用那里的扩展类型取一个图像。

返回:一个图像。

使用的图片:
Python PIL ImageChops.constant()

   
  
# importing image object from PIL
from PIL import Image, ImageChops  
  
# creating an image object 
img = Image.open(r"C:\Users\System-Pc\Desktop\TREE.JPG") 
img1 = ImageChops.constant(img, 60) 
    
img1.show() 

输出:
Python PIL ImageChops.constant()

另一个例子:用不同的值拍摄另一张图片,看看灰色强度的变化。

使用的图片:
Python PIL ImageChops.constant()

   
  
# importing image object from PIL
from PIL import Image, ImageChops  
  
# creating an image object 
img = Image.open(r"C:\Users\System-Pc\Desktop\rose.jpg") 
img1 = ImageChops.constant(img, 200) 
    
img1.show() 

输出:
Python PIL ImageChops.constant()

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Python pil