Open In App

Wand sepia_tone() function – Python

Last Updated : 08 May, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

sepia_tone() simulate old style silver based chemical photography printing. sepia_tone() function apply sepia toning to images.

Syntax :

wand.image.sepia_tone(threshold)

Parameters :

Parameter Input Type Description
threshold numbers.Real The extent of the toning. Value can be between 0 & quantum_range, or 0 & 1.0. Default value is 0.8 or “80%”.

Source Image:

Example 1:




# 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")


Output:

Example 2: Increasing threshold value.




# 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 = 1)
    img.save(filename ="sepiakoala.jpeg")


Output:


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads