I would like to do some image manipulation with Python. I noticed some advanced algorithms which PIL lacks, e.g., Shepard's distortion, were provided by Image Magick.
The latest Python binding for Image Magick, as recommended here, is Wand. The API and documents are indeed well considered.
However, after browsing the doc, I found that the available functionality seemed to be very limited (rotation, flip, resize, crop, etc.).
Is it possible to do something like Shepard's distortion with Wand? Am I missing something?
EDIT
One can always fall back to subprocess
and Image Magick's command line interface (for single step operation).