从pdf创建图像时,Imagmagick不允许使用西班牙语字符和一些空间字符。 显示错误消息“此图像无解码代理”。 我可以在从pdf创建图像时忽略该文本。
对此有何解决方案?
谢谢!
答案 0 :(得分:0)
尝试运行以下内容:
convert -list configure | grep -i "DELEGATES"
这是什么意思?
**convert -list configure** - displays your imagemagick configuration
**grep -i "DELEGATES"** - takes the results from above and does a case insensitive search for what you're looking for, in this case, you're looking for the section marked DELEGATES
这应该返回运行命令所需的所有软件包。
使用您喜欢的包管理(apt,yum,brew等),安装这些包(包括他们的开发包),然后再试一次。
这是一个你可以查看的帖子,其中有人有类似的问题:
http://www.imagemagick.org/discourse-server/viewtopic.php?t=22488
希望这有帮助!