我在我的ubuntu 10.04(lucid)上安装了libjpeg62和imagemagick.
使用gif运行identify命令但是使用jpeg运行它会产生以下错误:
identify: no decode delegate for this image format `stream,13307,0.jpg' @ error/constitute.c/ReadImage/532.
有谁知道如何解决这一问题?谢谢!
好吧,花了一整天的时间试图解决这个问题,我终于得到了它,我发布它以防万一其他人有这个类似的问题.以下是它的起源和解决方案;我正在运行Ubuntu 9.10,Karmic Koala并安装了当前版本的ImageMagick并且工作正常,然后我必须通过运行将我的ImageMagick更新到最新版本;
原文链接:/ubuntu/348857.htmlsudo apt-get install imagemagick
那时我不再能够通过回形针在我的ruby on rails app上传jpg.解决方案是获取最新的ImageMagick版本并自行构建;
wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz tar xvfz ImageMagick.tar.gz cd ImageMagick-* ./configure --disable-shared make sudo make install
在运行./configure –disable-shared命令后,查看最后50行并确保看到;
JPEG v1 --with-jpeg=yes yes JPEG-2000 --with-jp2=yes yes
如果它说不,那么你需要安装libjpeg62和可能的libjpeg62-dev.这对我有用,希望它能帮助别人.