生成 x 张图片

发布于 2024-11-04 21:40:27 字数 110 浏览 2 评论 0原文

我需要生成具有一定尺寸(以像素为单位)的图片。每张图片中都会有一个递增的数字。这就是图片中的全部内容,一个数字。我一直在考虑使用 Photoshop,但我不知道脚本是如何工作的。我可以使用任何建议或示例吗?

I need to generate pictures with a certain size (in pixels). Each picture will have an incrementing number in it. That is all that will be in the picture, a number. I've been thinking of using photoshop but I have no idea how the scripting works. Any suggestions or examples I could use?

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

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

发布评论

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

评论(2

情感失落者 2024-11-11 21:40:27

尝试使用 ImageMagick (http://www.imagemagick.org) 及其文本处理功能 (http://www.imagemagick.org/Usage/text/)。

Try using ImageMagick (http://www.imagemagick.org) and its text handling feautures (http://www.imagemagick.org/Usage/text/).

黑色毁心梦 2024-11-11 21:40:27

这是使用 ImageMagick 执行此操作的一种方法:

#!/bin/bash
for i in {0..3}; do
   echo Generating $i...
   convert -size 256x256 xc:black \
           -gravity south -background orange -splice 0x20 -annotate +0+2 "$i" image-$i.png
done

结果:

在此处输入图像描述
在此处输入图像描述
在此处输入图像描述
在此处输入图像描述

Here is a way of doing that using ImageMagick:

#!/bin/bash
for i in {0..3}; do
   echo Generating $i...
   convert -size 256x256 xc:black \
           -gravity south -background orange -splice 0x20 -annotate +0+2 "$i" image-$i.png
done

And the result:

enter image description here
enter image description here
enter image description here
enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文