魔杖 colorize()函数- Python
彩色图像是指与特定颜色混合的图像。为了生成彩色图像,我们在Python Wand 中使用colorize()函数。 colorize()函数将图像与恒定颜色混合。它需要两个参数color和alpha 。
Syntax :
Parameters :
Parameter | Input Type | Description |
---|---|---|
color | wand.color.Color | Color to paint image with. |
alpha | wand.color.Color | Defines how to blend color. |
源图像:
示例 1:
wand.image.colorize(color, alpha)
输出:
示例 2:
增加 alpha 的值。
# 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")
输出: