使用回形针上传图片错误:
命令 :: identify -format %wx%h '/tmp/103120121106-20384-i7dnzy.png[0]' [paperclip] 处理时收到错误: # < Paperclip::Errors::NotIdentifiedByImageMagickError: /tmp/103120121106- 20384-i7dnzy.png 无法被“识别”命令识别。>
我发现识别:
joinall@nxbbs-server:/nxbbs$ type identify
identify is hashed (/usr/local/bin/identify)
joinall@nxbbs-server:/nxbbs$ convert logo: 2.jpg
joinall@nxbbs-server:/nxbbs$ identify 2.jpg
2.jpg GIF 640x480 640x480+0+0 8-bit sRGB 256c 31.7KB 0.000u 0:00.000
在 config/environments/development.rb
Paperclip.options[:command_path] = "/user/local/bin"
在 app/models/user.rb
attr_accessible :avatar
has_attached_file :avatar, :styles=> {:s120 => "120x120>",:s48 => "48x48>",:s16 => "16x16>"}
请帮助我,我找不到问题