纸夹不保存备用样式

时间:2011-08-08 13:22:39

标签: ruby-on-rails imagemagick paperclip

Paperclip不会保存上传图像的任何更改,但可以很好地保存原件。我对所有日志的理解是它无法访问ImageMagick ...我已经安装了RMagick和paperclip。不知何故找不到为什么会这样?有人可以帮我检查回形针是否能够访问ImageMagick。

型号:

has_attached_file :photo,
  :style => {
    :original => "500x500",
    :small => "200x200"
  }

attr_accessible :name, :photo
attr_protected :photo_file_name, :photo_content_type, :photo_size

的Gemfile:

gem 'paperclip', '2.3.16'
gem 'rmagick'

1 个答案:

答案 0 :(得分:4)

愚蠢的错误!!!

:style => {

应该是

:styles => {

抱歉打扰!