Python imaging alternatives

Posted by Paul McMillan on Stack Overflow See other posts from Stack Overflow or by Paul McMillan
Published on 2009-09-18T00:05:57Z Indexed on 2010/06/07 0:22 UTC
Read the original article Hit count: 513

Filed under:
|
|
|

I have python code that needs to do just a couple simple things to photographs: crop, resize, and overlay a watermark. I've used PIL, and the resample/resize results are TERRIBLE. I've used imagemagick, and the interface and commands were designed by packaging a cat in a box, and then repeatedly throwing it down a set of stairs at a keyboard.

I'm looking for something which is not PIL or Imagemagick that I can use with python to do simple, high-quality image transformations. For that matter, it doesn't even have to have python bindings if the command line interface is good.

Oh, and it needs to be relatively platform agnostic, our production servers are linux, but some of our devs develop on windows. It can't require the installation of a bunch of silly gui code to use as a library, either.

© Stack Overflow or respective owner

Related posts about python

Related posts about command-line