I am running Ruby on Rails 3 and I would like to reduce the size (in byte) of an uploading image using the Paperclip plugin/gem. I need that because I would like to improve the performance related to the loading time of web pages in my application.
At this time in my model file I have:
has_attached_file :avatar,
:styles => {
:small => ["250x250#", :jpg]
}
:convert_options => { :small => '-quality 40' }
That will convert images in to the .jpg format, set dimensions and reduce the quality to 40 (this value is just for testing).
However, what I noticed is that, despite the reduction of quality, the size of the file does not change much. For instance I report the size of an image with and without using the option :convert_options => { :small => '-quality 40' }:
# Without using the 'convert_options'
Image size: 57.35 kB (58730 bytes)
# Using the 'convert_options'
Image size: 55.25 kB (56576 bytes)
Why the difference is so little? What is the best practice to reduce the size without losing much quality?
UPDATE: Maybe, as @Matt Gibson said commenting this question, for the compression it is important also the "how an image look like" (e.g. photographic). It seems that compression varies from picture to picture based on backgrounds, number of colors, ... in the image.