本文介绍了imagemagick:在图像下方附加一个带有字体大小的标签的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在带有字体大小的图像下添加标签?
How to append a label under an image with a font size?
convert image.png -label "Test label" -pointsize 100 -gravity center -append image.png
推荐答案
像这样:
convert image.png -pointsize 36 label:"Test label" -gravity center -append result.png
当您使用xc:
,label:
,pattern:
和gradient:
(即,所有开头不带破折号和结尾处带有冒号的那些)时,ImageMagick会创建一个画布供您放置数据上.
When you use xc:
, label:
, pattern:
and gradient:
(i.e. all the ones with no dash at the start and a colon at the end), ImageMagick creates a canvas for you to put the data on.
这篇关于imagemagick:在图像下方附加一个带有字体大小的标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!