How can I reduce the quality of an uploading image using Paperclip?

后端 未结 4 2075
無奈伤痛
無奈伤痛 2021-01-18 08:26

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

4条回答
  •  独厮守ぢ
    2021-01-18 09:01

    From the paperclip wiki, there's an option for quality:

    class User < ActiveRecord::Base
      has_attached_file :photo,
                        :styles => {
                          :small => {
                            :geometry => '38x38#',
                            :quality => 40,
                            :format => 'JPG'
                          },
                          :medium => {
                            :geometry => '92x92#',
                            :quality => 50
                          }
    end
    

提交回复
热议问题