Paperclip提示command is not recognized by the 'identify_Ruby_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > Ruby > Paperclip提示command is not recognized by the 'identify

Paperclip提示command is not recognized by the 'identify

 2011/1/8 8:13:23  hot88zh  http://hot88zh.javaeye.com  我要评论(0)
  • 摘要:用Paperclip来裁减图片,会提示如下错误:/tmp/stream20100103-13830-ywmerx-0isnotrecognizedbythe'identify'command解决办法,在config\initializers目录下建立一个custom_requires.rb文件,在里面加入如下语句来指定ImageMagick的安装位置Paperclip.options[:command_path]="xxx/xxxx/xxx"如果不知道ImageMagick安装到什么地方
  • 标签:

用Paperclip来裁减图片,会提示如下错误

/tmp/stream20100103-13830-ywmerx-0 is not recognized by the 'identify' command

解决办法,在config\initializers目录下建立一个custom_requires.rb文件,在里面加入如下语句来指定ImageMagick的安装位置

Paperclip.options[:command_path] = "xxx/xxxx/xxx"

如果不知道ImageMagick安装到什么地方,就输入

$ type identify

来查看。

windows下,如果安装到D:/Program Files/ImageMagick-6.5.6-Q8,那么需要这么来写指定的路径:

Paperclip.options[:command_path] = 'D:/PROGRA~1/ImageMagick-6.5.6-Q8'

目录中不能有空格!!~

  • 相关文章
发表评论
用户名: 匿名