2014-08-28 50 views
-1

我需要的任何解決方案,減少圖像尺寸Rails的縮小圖像尺寸上有些%

我使用回形針

has_attached_file :image, :styles => { :small =>{ :geometry =>"200 x 123>"}} 

,比如我有原始圖像1 MB和一些魔術後,我要像300 KB ,然後上載在AWS上

回答

1

可以使用convert_options

has_attached_file :image, 
        :convert_options => { :thumb => '-quality 50' } 

,或者你可以試試這個

has_attached_file :image => { :quality => :better } 

參見:Paperclip doc

+0

has_attached_file:image,:styles => {:thumb =>「300x123>」},:convert_options => {:thumb =>' - 質量50'}我做了所有的事情 – sts 2014-08-28 11:59:40