2

在我的 gemfile 中,我有gem "paperclip", :git => "git://github.com/thoughtbot/paperclip.git"gem "cocaine", "~> 0.5.1"(报告可卡因破坏回形针的其他问题已在此版本中修复)在我的模型has_attached_file :photo , :styles => { :thumb => "32x32#" } 中 在我的 development.rbPaperclip.options[:command_path] = "/user/local/bin"

Photo Paperclip::Errors::NotIdentifiedByImageMagickError尝试上传时出现错误。

但是,如果我将模型更改为has_attached_file :photo删除样式属性,则一切正常。我需要能够调整我的图像大小,为什么样式属性会破坏我的上传?

4

1 回答 1

0

看起来你没有安装ImageMagick

当回形针尝试创建缩略图时,它需要 ImageMagick 来调整图像大小。如果没有:styles,回形针只会保存原始图像,不需要 ImageMagick。

于 2014-03-11T09:16:33.037 回答