我将 strip 方法放在 CarrierWave 初始化程序中:
def strip
manipulate! do |img|
img.strip!
img = yield(img) if block_given?
img
end
end
并调用上传者:
version :thumb do
process :resize_to_fit => [180, nil]
process :quality => 70
process :strip
end
现在 Rails 吐出这个错误:
未定义的方法`strip!为了 #