📜  魔杖 sepia_tone()函数– Python

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

魔杖 sepia_tone()函数– Python

sepia_tone()模拟老式银基化学摄影印刷。 sepia_tone()函数将棕褐色色调应用于图像。

源图像:

示例 1:

wand.image.sepia_tone(threshold)

输出:

示例 2:增加阈值。

# Import Image from wand.image module
from wand.image import Image
  
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
  
    # Sepia simulation using sepia_tone() function
    img.sepia_tone(threshold = 0.6)
    img.save(filename ="sepiakoala2.jpeg")

输出: