Carrierwave,是否可以将图像加载到操作中?

时间:2015-02-26 17:40:43

标签: ruby-on-rails ruby imagemagick carrierwave

是否可以将图像加载到操作中!阻止在Carrierwave上传器中?

例如:

process :cover
def cover
  manipulate! do |img|
  # interesting manipulation code
  img = Magick::Image::read("#{Rails.root}/tmp/doc.jpg").first
  img
end

谢谢, 亚历

1 个答案:

答案 0 :(得分:2)

是的,你可以。请查看代码herehere以获取详细信息。

不要忘记手动销毁传递的图像以释放资源。