Hello i want to compress a JPG image file with Image Magick but cant get too much difference in size, by default the output size is bigger than the input, dont know why, but after adding some +profile options and setting down the quality i can get an smaller size but still similar to original.

The input image is 255kb, the processed image is 264kb (using +profile to remove profiles and setting quality to 70%) is there any way to compress that image to 150kb at least? is that possible? what image magick options can i use?

Thank you very much.

link|improve this question

Recompressing a JPEG will always result in a degraded image, even if it's larger. It would be better if you could start with the original before it was saved the first time. – Mark Ransom Aug 31 '11 at 18:55
I know, but unfortunately i dont have the original image, all i have is a big jpg file, but i think i can get a good balance between quality and size – Javis Perez Aug 31 '11 at 20:21
feedback

2 Answers

up vote 3 down vote accepted

I use always:

  • quality in 85
  • progressive (comprobed compression)
  • a very tiny gausssian blur to optimize the size (0.05 or 0.5 of radius) depends on the quality and size of the picture, this notably optimizes the size of the jpeg.
  • Strip any comment or exif tag

in imagemagick should be

convert -strip -interlace Plane -gaussian-blur 0.05 -quality 85% source.jpg result.jpg

hope this be useful.

EDIT: source link: http://www.yuiblog.com/blog/2008/12/05/imageopt-4/

link|improve this answer
Thank you! this code got me the image to 170kb, now i can go and experiment with your code thank you, also i've found the -define:extent=MAX_SIZE_IN_KB option that really helps, thank you! – Javis Perez Aug 31 '11 at 20:22
feedback

If the input file is jpeg then it is already compressed, you can't get an output that is smaller without reducing the size or the quality

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.