0

在我看来,我有以下几点:

<%= image_tag (url_for(:controller => 'app_images', :action => 'picture')) %>

对应的控制器动作是:

  def picture
    image = AppImage.create(:path => ("portrait3.jpeg"))
    image.set_file_from_path
    portrait = Magick::Image::from_blob(image.file)[0]
    send_data portrait.to_blob, :type => "image/jpeg", :disposition => "inline" 
  end

而 set_file_from_path 的模型方法是

  def set_file_from_path
    image = Magick::Image::from_blob(open(self.path).read)[0]
    if image.rows > 400
      resized = image.scale(400 * image.columns / image.rows, 400)
    else
      resized = image
    end
    self.file = resized.to_blob
  end

出于某种原因,这个 image_tag 不在 Heroku 中呈现,而是在本地呈现,并且我的 app/assets/images 文件夹中有“portrait3.jpeg”文件。

编辑:我意识到我在 heroku 中使用了 create 而没有实际连接到 S3 或其他任何东西,这可能不起作用,因为我相信 heroku 不允许在其服务器上存储数据库。我将它更改为新的,它仍然无法正常工作。

4

1 回答 1

0

所以我做了一些愚蠢的事情。首先,我忘记在控制器中要求 RMagick,其次我需要执行 heroku run rake db:migrate。

于 2013-06-11T20:00:00.243 回答