gpt4 book ai didi

linux - 用文本框和图片组合图像

转载 作者:太空宇宙 更新时间:2023-11-04 10:18:04 25 4
gpt4 key购买 nike

我想创建一张 A4 图片 (2480x3508),底部有图片,顶部有文本框。当然,我希望一切都居中对齐。

例子:

+---------------------------------+
| |
| +---------------------------+ |
| | TEXT BOX | | The TEXT BOX size is 2352x376 pixels
| +---------------------------+ | Its offset is +64+64 pixels
| |
| +---------------------------+ |
| | | |
| | | |
| | | |
| | PICTURE | | The PICTURE size is 2352x2940 pixels
| | | | Its offset is +64+504 pixels
| | | |
| +---------------------------+ |
| |
+---------------------------------+

用imagemagick,一行能搞定吗?或者我应该按步骤执行此操作吗?

我尝试将 montage 与标题一起使用,但它仅限于一行,您无法真正控制测试格式。

最佳答案

它可以在 ImageMagick 中用一个命令行完成。您使用的是什么版本的 Imagemagick。如果 IM 6 执行以下操作。如果 IM 7 更改转换为 magick。

convert -size 2480x3508 xc:white \( -size 2352x376 -background pink -gravity center -fill black -font arial label:"TEXT BOX" \) -gravity northwest -geometry +64+64 -compose over -composite \( logo: -resize 2352x2940! \) -geometry +64+504 -compose over -composite result.jpg

enter image description here

在命令中将 (logo: -resize 2352x2940!) 替换为您的实际图像。还要更改您想要使用的文本来代替我使用的文本,并将粉红色背景更改为您想要的任何颜色。如果使用 Windows,请从 ( 和 ) 中删除\,这样您就只有 ( 和 )。确保在带或不带\转义的括号前后都有空格。

如果您的文本是多行的,则使用标题:而不是标签:

参见 http://www.imagemagick.org/Usage/layers/#converthttp://www.imagemagick.org/Usage/text/http://www.imagemagick.org/Usage/basics/#parenthesis

关于linux - 用文本框和图片组合图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45217382/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com