ImageMagick multiple operations in single invocation
I'm trying to get ImageMagick to perform multiple operations (in this case, crops) in a single invocation, but it doesn't seem to be possible. For example, I can do a crop, rotate, and then another crop as two separate commands: $ convert test.jpg -crop 223x187+588+757 -rotate 330 crop2.jpg $ convert crop2.jpg -crop 200x100+43+87 crop3.jpg But if I try to combine them into a single command, I get an error: $ convert test.jpg -crop 223x187+588+757 -rotate 330 -crop 200x100+43+87 crop3.jpg convert: geometry does not contain image `test.jpg' @ warning/transform.c/CropImage/666. Obviously I could