在我的 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
删除样式属性,则一切正常。我需要能够调整我的图像大小,为什么样式属性会破坏我的上传?