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


Python Wand colorize()用法及代码示例


彩色图像是指与特定颜色混合的图像。为了生成彩色图像,我们在python魔杖中使用了colorize()函数。 colorize()函数可将色彩恒定的图像融合在一起。它带有两个参数color和alpha。

用法:
wand.image.colorize(color, alpha)

参数:

参数 输入类型 描述
color wand.color.Colorl 用于绘制图像的颜色。
alpha wand.color.Color 定义如何混合颜色。

源图像:

范例1:



# import Image with wand.image module 
from wand.image import Image 
  
# read image using Image() function 
with Image(filename ="koala.jpeg") as img:
    # generate colorized image 
    img.colorize(color ="yellow", alpha ="rgb(10 %, 0 %, 20 %)") 
    img.save(filename ="colorizedkoala.jpeg")

输出:

范例2:
增加alpha值。

from wand.image import Image 
  
# read image using Image() function 
with Image(filename ="koala.jpeg") as img:
    # generate colorized image 
    img.colorize(color ="yellow", alpha ="rgb(25 %, 0 %, 20 %)") 
    img.save(filename ="colorizedkoala2.jpeg")

输出:

相关用法


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