gpt4 book ai didi

ruby-on-rails - 从 rmagick 图像创建回形针附件

转载 作者:数据小太阳 更新时间:2023-10-29 06:48:44 26 4
gpt4 key购买 nike

我在寻找将使用 RMagick 创建的图像保存在回形针附件中的方法时遇到了问题。

imageList = Magick::ImageList.new
imageList.new("images/apple.gif", "images/overlay.png")
...
picture = imageList.flatten_images

我在一个有附件的模型中

has_attached_file : 图片,
:网址=> ...,
:path => ...

我只想将 imageList.flatten_images 返回的图像保存为模型的图片。

有没有人知道如何轻松做到这一点?

谢谢

最佳答案

看看是不是你需要的

picture = imageList.flatten_images
file = Tempfile.new('my_picture.jpg')
picture.write(file.path)
YourModel.create(:picture => file, ...)

YourModel 更改为您正在使用的模型...

关于ruby-on-rails - 从 rmagick 图像创建回形针附件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4035212/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com