imagemagick 无法读取这些文件
我安装了 jasper 和最新版本的 imagemagick。当我尝试处理这两个文件时: 此处 和 此处
我收到解码错误。谁能告诉我还需要安装哪些其他软件包才能让 imagemagick 正确读取这些文件?
I have jasper installed and the lastest version of imagemagick. When I attempt to process these two files: here and here
I get a decode error. Can anyone let me know which other packages I need to install for imagemagick to read these files properly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 IM 是否使用
--with-jpeg=no
或--without-jpeg
进行编译?或者由于缺少安装的解码器库,编译未能包含 JPEG 支持?您需要安装
libjpeg
,以及该库的开发头文件。您可以通过发出以下命令来了解支持哪些格式:
如果您说明您的操作系统(如果是 Linux,则包括发行版)以及如何安装 IM,您可能会获得有关如何解决该问题的更多信息。如果您使用的是 Linux,软件包名称可能是
libjpeg
和libjpeg-devel
。Has your IM been compiled with
--with-jpeg=no
or--without-jpeg
?Or did the compilation fail to include JPEG support because of a lack of decoder libraries being installed? You need
libjpeg
installed, and the development header files for that library.You can find out what formats are supported by issuing the command:
If you state your OS (inc. distribution if Linux) and how you installed IM, you might get more information on how to resolve it. If you are on linux the package names are probably
libjpeg
andlibjpeg-devel
.