我正在将ImageMagick命令集成到用Node.js编写的Firebase函数中。我已经安装了Ghostscript并具有可用字体的完整列表:
convert -list font
Path: /usr/local/Cellar/imagemagick/7.0.8-10/etc/ImageMagick-7/type-apple.xml
Font: AndaleMono
family: Andale Mono
style: Undefined
stretch: Undefined
weight: 0
glyphs: /Library/Fonts//Andale Mono.ttf
Font: AppleChancery
family: Apple Chancery
style: Undefined
stretch: Undefined
weight: 0
glyphs: /Library/Fonts//Apple Chancery.ttf
Font: AppleMyungjo
family: AppleMyungjo
style: Undefined
stretch: Undefined
weight: 0
glyphs: /Library/Fonts//AppleMyungjo.ttf
这是我的代码:
exec(`convert ${tempFilePath} -font /Users/emma/Library/Fonts/Nunito-Regular.ttf -fill white -pointsize 60 -gravity center -draw "text 0,300 'this is a label'" ${tempFilePath}`, {stdio: 'ignore'}, (err, stdout) => {
if (err) {
console.error('Failed to label image.', err);
reject(err);
} else {
resolve(stdout);
}
});
我也尝试过:
exec(`convert ${tempFilePath} -font Arial -fill white -pointsize 60 -gravity center -draw "text 0,300 'this is a label'" ${tempFilePath}`, {stdio: 'ignore'}, (err, stdout) => {
if (err) {
console.error('Failed to label image.', err);
reject(err);
} else {
resolve(stdout);
}
});
我得到的错误是:
convert: unable to read font `/Library/Fonts//Andale' @ warning/annotate.c/RenderType/872
答案 0 :(得分:0)
根据@fmw42的建议:
在某些使用Imagemagick的工具上,它们不使用系统 ENV变量。
所以我看到了诸如PHP Imagick之类的无法定位的情况 Ghostscript。
在这种情况下,解决方案是将完整路径放到Ghostscript 它在Imagemagick的
gs
文件中使用delegates.xml
的位置 列出gs
的PS,EPS等行。有关
delegates.xml
,请参见https://imagemagick.org/script/resources.php 及其可能的位置。我的在/usr/local/etc/ImageMagick-6/delegates.xml
因此,可能的解决方案是安装gs
工具。
在MacOS上:brew install gs
。
相关帖子:https://imagemagick.org/discourse-server/viewtopic.php?t=34911。