0

我有一个名为 Picture 的模型,上面有一个附件。我正在使用的软件:

*Rails 3
*Ruby 1.9.3
*Paperclip
*ImageMagick

我的模型是:

class Picture < ActiveRecord::Base
    attr_accessible :picturefile,:picturefile_file_name,:picturefile_content_type,:picturefile_file_size,:picturefile_updated_at
    has_attached_file :picturefile,
    :styles => {
        :thumb=> "100x100#"},
        :storage => :s3,
        :s3_credentials => Rails.root.join('config','s3.yml'),
        :path => "/travels/:style/:id/:basename.:extension"
end

在我的控制器中,我有这个:

StringIO.open(Base64.decode64(params[:Route][:CoverPicture][:File][:EncodedContent])) do |data|
fotocov_t=Picture.create({
  :picturefile=>data
})
travel.pictures = [fotocov_t] #this assigns the new picture to a travel i created before the picture
end

可以看出我正在上传一个字符串,但我要上传的是由编码字符串在

params[:Route][:CoverPicture][:File][:EncodedContent]

我尝试了多种方法,但一直保存一个文本文件。

有谁知道我如何将文件作为图像上传而不是上传文本文件?

谢谢 :)

4

1 回答 1

0

找到了 :)

bytes = Base64.decode64(params[:Route][:CoverPicture][:File][:EncodedContent])
img   = Magick::Image.from_blob(bytes).first

关于创纪录:

:picturefile=>img

需要 rmagick。现在我遇到了另一个问题,没有处理程序...

但将搜索和上传信息:)

于 2013-03-08T17:19:04.050 回答