Due to recommendations for using adaptive-sharpen (http://imagemagick.org/discourse-server ... =1&t=10266) I decided to give it a try.
I'm using "Version: ImageMagick 6.8.3-10 2013-03-22 Q16" on Mac OSX 10.8.3 with this command-line:
Code: Select all
convert source.jpg -resize 150x150 -adaptive-sharpen 0x0.6 -quality 80 target.jpg
What's interesting: this resulting target.jpg is identical to the version used with this command-line (without -adaptive-sharpen):
Code: Select all
convert source.jpg -resize 150x150 -quality 80 target.jpg
Am I doing something wrong or is there really a bug in this function?