Rails-MiniMagick 命令不起作用
我运行的是 Windows XP,并且安装了 MiniMagick 和 ImageMagick(最新版本)。我现在正在使用控制台来测试一切是否正常。使用 ms 命令提示符 image magick 没有问题。我正在使用识别命令对此进行测试。现在,当我尝试通过输入从控制台使用 MiniMagick 时,
image = MiniMagick::Image.new('image.jpg')
它会返回
MiniMagickError,“ImageMagick 命令(“identify \”input.jpg\”)失败:{:status_code => #“'identify' 未被识别为内部或外部命令,\不可运行的程序或批处理文件。 \n"}
有人可以帮忙吗
I'm running windows xp and I've got MiniMagick and ImageMagick installed (latest versions). I'm now using the console to test out that everything works. Using the ms command prompt image magick works no problem. I'm testing this by using the identify command. Now, when I try to use MiniMagick from the console by entering
image = MiniMagick::Image.new('image.jpg')
It returns
MiniMagickError, "ImageMagick command ("identify \"input.jpg\"") failed: {:status_code => #"'identify' is not recognized as an internal or external command,\noperable program or batch file.\n"}
Can anybody help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您在命令提示符中尝试识别命令时,您是否位于安装image magick的目录中?如果是这样,请从不同的目录尝试。如果这不起作用,您必须将包含图像 magick 可执行文件的目录添加到 PATH 环境变量中。
When you tried the identify command in the command prompt, were you in the directoy where image magick is installed? If so, try it from a different directoy. If that does not work, you have to add the directory with the image magick executables to the PATH environment variable.