Rails 将文件另存为图片

Rails save file as image

我使用 webdav 协议。 gem 'net_dav'它很旧但很有用

当我通过它获取文件时,我收到的是这样的 \xFF\xD8\xFF\xE0\x00\x10JFIF\x00\x01\x01\x01\x00H\x00H\x00\x00\xFF\...

如何转换为真实图像.jpg.png

你必须解码这个 base64 字符串然后保存文件,比如

File.open('file_name.jpg', 'wb') do|f|
  f.write(Base64.decode64(base_64_encoded_string))
end