I then tried to change the command to use the new "^" feature (which is described here: http://www.imagemagick.org/Usage/thumbnails/#cut), like this:
-define jpeg:size=X*2xY*2 source.jpg -auto-orient -thumbnail XxY^+offsetX+offsetY -gravity center -unsharp 0x.5 jpeg:output.jpg
Unfortunately, the +offsetX and +offsetY parameters for the -thumbnail geometry are ignored.
for example (should show a thumbnail that has been pushed downwards by 50px, but its not):
Code: Select all
convert -define jpeg:size=200x200 source.jpg -auto-orient -thumbnail 100x100^+0+50 -gravity center -unsharp 0x.5 jpeg:output.jpg