Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@WilliamMayor
Created November 7, 2013 11:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WilliamMayor/7353425 to your computer and use it in GitHub Desktop.
Save WilliamMayor/7353425 to your computer and use it in GitHub Desktop.
from wand.image import Image
with Image(filename='image.gif') as img:
img.modulate(
brightness=0.95,
hue=0.95,
saturation=0.95
)
img.save(filename='modulated.gif')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment