-1
我需要的任何解決方案,減少圖像尺寸Rails的縮小圖像尺寸上有些%
我使用回形針
has_attached_file :image, :styles => { :small =>{ :geometry =>"200 x 123>"}}
,比如我有原始圖像1 MB和一些魔術後,我要像300 KB ,然後上載在AWS上
我需要的任何解決方案,減少圖像尺寸Rails的縮小圖像尺寸上有些%
我使用回形針
has_attached_file :image, :styles => { :small =>{ :geometry =>"200 x 123>"}}
,比如我有原始圖像1 MB和一些魔術後,我要像300 KB ,然後上載在AWS上
可以使用convert_options
has_attached_file :image,
:convert_options => { :thumb => '-quality 50' }
,或者你可以試試這個
has_attached_file :image => { :quality => :better }
在這個 https://github.com/janfoeh/paperclip-optimizer
看看這對圖像做出優化的瑰寶。
如果您需要更好的優化,請使用Google PageSpeed模塊進行apache或Nginx!
has_attached_file:image,:styles => {:thumb =>「300x123>」},:convert_options => {:thumb =>' - 質量50'}我做了所有的事情 – sts 2014-08-28 11:59:40