|
Modify
Using Graphics Magick to bulk modify
If you are a python programmer you might be interested in some code here. I wrote a small routine in python to go through the images to crop, rotate, and resize a list of images. http://code.google.com/p/key-train/source/browse/photos/modify.py Shows the following:
Note that the order you pass the parameters is important. If you crop then rotate, for instance, you'll see some white borders on your image. Graphics Magick is a better version of Image Magick. It has no direct python support, but it's not necessary anyway, learning the command line way is the best and most of the time is spent converting the image and not in the time taken to load up the executable. |