pgmagick is a GraphicsMagick(Magick++) binding for Python.
example of resizing JPEG image.
from pgmagick import Image
img = Image('input.jpg')
img.quality(80)
img.scale('20%')
img.write('output.jpg')
pgmagick is written by Hideo Hattori . contact the author by e-mail to hhatto.jp@gmail.com
pgmagick is under the MIT License. see the LICENSE file .