I am running Ruby on Rails 3 and I would like to reduce the quality of an uploading image using the Paperclip plugin/gem. How can I do that?
A
Except -quality, the -strip option of ImageMagick can remove all profile and other fluff from the image which may reduce more size
-quality
-strip
ImageMagick
has_attached_file :photo, :styles => { :thumb => "100x100#" }, :convert_options => { :thumb => "-quality 75 -strip" }