如何将文字放在图像之上(上图)?

How to put text on top of image (above)?

我想到了这个:

montage -background Orange -label "Faerie Dragon" -gravity South test.png -geometry "100%" -font TREBUC.ttf -pointsize 25 out.png

它在图像 test.png 下方的橙色背景上添加了字体 "Fearie Dragon",字体为 Trebuchet 大小为 25 的文本 test.png,并且不缩放原始图像。

唯一的问题是:如何将文字放在图片上方而不是下方? Gravity 选项似乎没有任何作用。

您可以使用以下命令使用 convert instead of montage 将注释放在图像的上侧:

convert test.png -pointsize 25 -gravity North -background Orange -splice 0x32 -annotate +0+4 "Faerie Dragon" out.png

这是您使用 montage:

命令的输出

这是 convert 命令的输出:

从 400x300 的图像开始,这两个命令都会生成 400x332 的图像。

已在 Windows

上使用 ImageMagick 7.0.5-3 进行测试