我很难找到一种方法来将使用 RMagick 创建的图像保存在回形针附件中。
imageList = Magick::ImageList.new
imageList.new("images/apple.gif", "images/overlay.png")
...
picture = imageList.flatten_images
我在一个带有附件的模型中
has_attached_file :picture,
:url => ...,
:path => ...
我只想将 imageList.flatten_images 返回的图像保存为我的模型的图片。
有谁知道如何轻松做到这一点?
谢谢