Reputation: 4398
How would I install the pythonmagick wand api for a web2py application for the conversion of image type of an upload field ?
Upvotes: 1
Views: 302
Reputation: 19030
Try:
pip install pgmagick
See: https://pypi.python.org/pypi/pgmagick/0.5.7
This seems to be a Python wrapper around GraphcsMagick/ImageMagick.
From the PyPi page:
pgmagick is a yet another boost.python based wrapper for GraphicsMagick
It's not ImageMagick, but you should get equivilent functionality from the looks of it.
Upvotes: 1