8

我有一个图像文件的base64编码字符串。我需要使用回形针保存它

我的控制器代码是

 @driver = User.find(6)
 encoded_file = Base64.encode64(File.open('/pjt_path/public/test.jpg').read)
 decoded_file = Base64.decode64(encoded_file)

 @driver.profile_pic =  StringIO.open(decoded_file)
 @driver.save

在我的用户模型中

 has_attached_file :profile_pic, :styles => { :medium => "300x300>", :thumb => "100x100>" }, :default_url => '/icon.jpg'

目前该文件保存为文本文件(stringio.txt)。但是当我将扩展名更改为 JPG 时,我可以将其视为图像。如何使用 StringIO 正确命名图像。

我有rails 3.2,ruby 1.9.2,回形针3.0.3

4

2 回答 2

13

我通过使用解决了这个问题

encoded_file = Base64.encode64(File.open('/pjt_path/public/test.jpg').read)
decoded_file = Base64.decode64(params[:encoded_image])
begin
  file = Tempfile.new(['test', '.jpg']) 
  file.binmode
  file.write decoded_file
  file.close
  @user.profile_pic =  file
  if @user.save
    render :json => {:message => "Successfully uploaded the profile picture."}
  else
    render :json => {:message => "Failed to upload image"}
  end
ensure
  file.unlink
end
于 2012-05-14T14:34:07.307 回答
2

尝试设置:path/:url选项has_attached_file并显式覆盖扩展名:

http://rdoc.info/gems/paperclip/Paperclip/ClassMethods#has_attached_file-instance_method

分别

http://rdoc.info/gems/paperclip/Paperclip/Storage/Filesystem

于 2012-05-10T13:19:43.573 回答