Python中的魔杖tint()函数
tint()函数通过混合给定的颜色为图像的中间色调着色。 alpha 参数控制如何在颜色通道之间进行混合。但是,这可能很难使用,所以如果有疑问,请使用 alpha=”gray(50)” 参数。
Syntax :
Parameters :
Parameter | Input Type | Description |
---|---|---|
color | Color | Color to calculate midtone. |
alpha | Color | Determine how to blend. |
源图像:
示例 1:
wand.image.tint(color, alpha)
输出:
示例 2:增加金额值
# Import Image from wand.image module
from wand.image import Image
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
# tinted image using tint() function
img.tint(color ="yellow", alpha ="rgb(40 %, 60 %, 80 %)")
img.save(filename ="tintkoala.jpeg")
输出: