ImageMagick:垂直居中文本?

发布于 2024-12-02 16:50:02 字数 261 浏览 0 评论 0原文

我正在尝试使用 ImageMagick 将图像中的文本垂直居中。

例如,我想要一张 200 像素高的图像,其中“TEST”一词在图像中垂直居中。

而且我不想指定图像的宽度。我希望 ImageMagick 根据文本的宽度计算图像宽度。

-extent 参数需要宽度和高度,所以我不能使用它。

我正在为 Cygwin 使用 ImageMagick 6.4.0 01/19/10 Q16。这似乎是最新的 Cygwin 版本。

谢谢!

I'm trying to vertically center text in an image using ImageMagick.

For example, I want an image that's 200 pixels high with the word, "TEST," vertically centered in the image.

And I don't want to specify the width of the image. I want ImageMagick to compute the image width based upon the width of the text.

The -extent parameter requires both width and height so I can't use that.

I'm using ImageMagick 6.4.0 01/19/10 Q16 for Cygwin. This appears to be the latest Cygwin version.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你是暖光i 2024-12-09 16:50:02

不要在 -size 参数中指定宽度并使用 标签

convert -size x200 -background red -gravity Center \ 
        -pointsize 10 label:"TEST" test.png

Don't specify width in -size parameter and use label:

convert -size x200 -background red -gravity Center \ 
        -pointsize 10 label:"TEST" test.png
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文