Welcome to pgmagick

pgmagick is a GraphicsMagick(Magick++) binding for Python.

Example

example of resizing JPEG image.

from pgmagick import Image

img = Image('input.jpg')
img.quality(80)
img.scale('20%')
img.write('output.jpg')

Community

There is mailinglist for discussion about pgmagick hosted on librelist.

To subscribe, send a mail to pgmagick@librelist.com and reply to the confirmation mail.

[pgmagick] archives

Development

pgmagick is written by Hideo Hattori. contact the author by e-mail to hhatto.jp@gmail.com

License

pgmagick is under the MIT License. see the LICENSE file.