标签: 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
谢谢, 亚历
答案 0 :(得分:2)
是的,你可以。请查看代码here和here以获取详细信息。
不要忘记手动销毁传递的图像以释放资源。