在我的项目中,我使用外壳绘制证书,在背景图像上放置了所有3行。我设法为它们应用了不同的颜色,字体大小,但是我不能使用不同的字体。
shell.exec(
`convert ${certificateImage} -resize 800x600 \
-gravity south \
-fill blue -font Candice -pointsize 60 -annotate +0+190 '${certificateHeader}' \
-fill black -font Candice -pointsize 40 -annotate +0+190 '${certificateTxt}' \
-fill red -font SheerBeauty -pointsize 20 -annotate -100+40 '${nextCertNumber}' \
${thumbnailsFolder}/${certificateId}.png`,
{async: true},
() => log('thumbnail created successfully'),
);
我在做什么错?我将不胜感激。我看了imagemagic,但到目前为止,一切都没有。