Skip to main content

Yet Another Python wrapper for GraphicsMagick++

Project description

About

pgmagick is a yet another boost.python based wrapper for GraphicsMagick. (PythonMagick is dead?)

Install

$ pip install pgmagick

Require

GraphicsMagick and Boost.Python.

package install on Ubuntu:

$ apt-get install libgraphicsmagick++-dev
$ apt-get install libboost-python1.40-dev

package install on Fedora:

$ yum install GraphicsMagick-c++-devel
$ yum install boost-devel

Usage

scale example:

>>> from pgmagick import Image, FilterTypes
>>> im = Image('input.jpg')
>>> im.quality(100)
>>> im.filterType(FilterTypes.SincFilter)
>>> im.scale('100x100')
>>> im.sharpen(1.0)
>>> im.write('output.jpg')

composite example:

>>> from pgmagick import Image, CompositeOperator as co
>>> base = Image('base.png')
>>> layer = Image('layer_one.png')
>>> base.composite(layer, 100, 100, co.OverCompositeOp)
>>> im.write('output.png')

more API detail… read to Magick++ API for GraphicsMagick document.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pgmagick-0.1.2.tar.gz (21.9 kB view details)

Uploaded Source

File details

Details for the file pgmagick-0.1.2.tar.gz.

File metadata

  • Download URL: pgmagick-0.1.2.tar.gz
  • Upload date:
  • Size: 21.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pgmagick-0.1.2.tar.gz
Algorithm Hash digest
SHA256 24497ac80b4c009cdfc44215ff5136fb98aaed981ecc3e84826cb7dbb4e873eb
MD5 bc0d668684a7504acbbc08f60cc5dc9c
BLAKE2b-256 6d510cade740370cadefb381bebe0de4f6bc2a43dec0e30b3d3b78647a6e56a8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page