Rails 3 和 rmagick
我在 Rails 3 中遇到 rmagick 问题。
似乎一切都已安装,但出现以下错误:
用rmagick操作失败,可能不是图像?原来的 错误:无法打开图像 `kar/public/uploads/tmp/20110825-1348-30304-9150/thumb_1314198312_by_jannnu11_500.jpg': @错误/blob.c/OpenBlob/2588
文件存在。有良好的 chmod。
该代码可以在另一台服务器上运行。
有什么想法吗?
I have problem with rmagick in Rails 3.
Everything seems to be installed, but I get the following error:
Failed to manipulate with rmagick, maybe it is not an image? Original
Error: unable to open image
`kar/public/uploads/tmp/20110825-1348-30304-9150/thumb_1314198312_by_jannnu11_500.jpg':
@ error/blob.c/OpenBlob/2588
File exists. Have good chmod.
This code works on another server.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在某些情况下,ImageMagick 的安装可能会丢失您尝试在该计算机上执行的图像处理所需的某些文件格式。
尝试运行
identify -list format
并查看其中缺少的内容。如果发现您只是缺少文件格式,请尝试卸载/重新安装,然后就可以了。
In some cases the installation of ImageMagick may have missed some of the file formats required for the image manipulation you are trying to do on that machine.
Try to run
identify -list format
and see what you are missing from there.If it turns out that you are just missing the file format, try to uninstall/reinstall and you should be good to go.