Created
July 18, 2013 14:06
-
-
Save marselester/6029595 to your computer and use it in GitHub Desktop.
Resize animated gif by Wand (ctypes-based simple ImageMagick binding for Python).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://docs.wand-py.org | |
from wand.image import Image | |
with Image(filename='original.gif') as img: | |
img.rotate(90) | |
img.resize(150, 150) | |
img.save(filename='converted.gif') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment