Carrierwave,是否可以加载图像进行操作?

Carrierwave, is it possible to load images into manipulate?

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

例如:

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

谢谢, 亚历克斯

是的,你可以。查看代码 here and here 了解详细信息。

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