0

当我尝试使用蜻蜓上传图像时,我不断收到错误消息。我知道问题出在哪里,因为我在使用回形针时解决了它。但我不知道如何为蜻蜓解决它。

问题是蜻蜓正在执行命令“identify”,它正在“/usr/local”上寻找二进制文件,但它在 Paperclip 中的“/opt/local”上,我可以很容易地解决这个问题。

Paperclip.options[:command_path] = "/opt/local/bin/"

有人知道蜻蜓的等效命令吗?我正在使用rails 3顺便说一句。

4

1 回答 1

0

我解决了它,但进入文件: image_magick_utils.rb 并更改:

  configurable_attr :convert_command, "convert"
  configurable_attr :identify_command, "identify"

至:

  configurable_attr :convert_command, "/opt/local/bin/convert"
  configurable_attr :identify_command, "/opt/local/bin/identify"
于 2011-01-13T20:52:17.443 回答