2012-01-24 16 views

答えて

2

限り私はペーパークリップは、カスタム・プロセッサを除いて、あなたの問題を解決するための機能で任意のビルドを持っていません知っています。あなたは次のようなことをすることができます:

module Paperclip 
    class ConditionalConverter < Thumbnail 
    def initialize(file, options = {}, attachment = nil) 
     super(file, options, attachment) 
     @format = :jpg unless self.animated? 
    end 
    end 
end 
2

ImageMagickあなたのために行う必要があります。そのために、あなたのスタイルに:jpgを追加する必要があります

has_attached_file :avatar, :styles => { :thumb => ["32x32#", :jpg] } 

Documentation

関連する問題