I compared ImageMagick with other tools. In my example I just want to resize and compress images. The goal is an acceptable file size with good quality.
Original file size: 127 Kb
Comparison between ImageMagick and Caesium
Unscaled, quality set to 80%
- ImageMagick:
convert image.jpg -strip -quality 80 optImage.jpg
=> 123 Kb - Casesium: 101 Kb
Scaled to 640x359, quality set to 80%
- ImageMagick:
convert image.jpg -strip -resize 640x359! -quality 80 optImage.jpg
=> 48 Kb - Caesium: 33.6 Kb
So what is wrong with that? Is there any ImageMagick-option I should include? Or is the quality parameter different between these tools?
EDIT: is there any Linux shell tool which is able to resize (maybe crop) and compress as good as Caesium?