Rails 3 中通过回形针进行 Base64 解码

发布于 2024-11-28 09:29:41 字数 181 浏览 0 评论 0原文

我正在为我的 iPhone 应用程序开发一个服务器后端。我需要将图片从我的 Iphone 应用程序上传到 Rails 服务器

我的应用程序的发布请求中有一个 Base64 编码的图像,我需要解析该图像并将其发送到 Paperclip 插件以重新调整图像的大小。所以任何人都可以建议我该怎么做。

帮我!!!。提前致谢。

I am developing a server backend for my iphone application. I need to upload a picture from my Iphone app to the rails server

I have a base64 encoded image in the post request from my app which I need to parse and send to the Paperclip plugin for the re-sizing of the image.So can anybody suggest me how to do it.

Help me!!!. Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

草莓酥 2024-12-05 09:29:41

为了使用正确的扩展名保存图像,您必须指定内容类型。
在模型中将此作为称为 before_validation 的方法非常好

   StringIO.open(Base64.decode64(self.photo_base64)) do |data|
      data.original_filename = "image_name.jpg"
      data.content_type = "image/jpeg"
      self.photo = data
    end

In order to save image with correct extension you have to specify content type.
It's quite nice to have this in your model as method which is called before_validation

   StringIO.open(Base64.decode64(self.photo_base64)) do |data|
      data.original_filename = "image_name.jpg"
      data.content_type = "image/jpeg"
      self.photo = data
    end
独守阴晴ぅ圆缺 2024-12-05 09:29:41

试试这个:

sio = StringIO.new(Base64.decode64(string))

[来源:base64 照片和回形针 -Rails ]

Try this:

sio = StringIO.new(Base64.decode64(string))

[ source: base64 photo and paperclip -Rails ]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文