Introduction to Wand, a ctypes-based simple ImageMagick binding for Python. You can find the original of the presentation in this link: http://j.mp/pykr2012-wand
ImageMagick Modern PythonicTM API Supports CPython 2.6+, PyPy☆, Jython (soon) Well Documented Properly Packaged MIT Licensed Competitior of Python Imaging Library (PIL)
Image with Color('white') as bg: with Image(width=480, height=320, background=bg) as i: assert i.size == (480, 320) i.save(filename='white-480x320.jpg')
Image(file=urlopen('http://j.mp/wand-iu-2')) as image: image.save(filename='wand-iu-2.jpg') assert image.size == (720, 887) with image[:230, :] as cropped: cropped.save(filename='cropped.jpg')