0

必须在图像上添加不同的文本。文本在表中。大约有10,000个。我怎样才能自动化这个过程?也许是 Photoshop 的脚本?或者是其他东西?先感谢您!

4

2 回答 2

2

Indesign,数据合并适用于文本和图像。 https://www.youtube.com/watch?v=ktcbTtC3-Xk

photoshop中有一个变量函数检查本教程 https://www.youtube.com/watch?v=3IzpItHTvyo

于 2017-01-31T23:00:45.877 回答
0

我会推荐ImageMagick。它最简单地使用homebrew安装在 macOS 上,只是:

brew install imagemagick

那么如果你的桌子看起来像这样table.csv

base1.png,180,100,result1.png,I have a dream
base2.png,20,90,result2.png,Four score and seven years ago
base3.png,50,180,result3.png,Gonna build me a wall

您将bash在终端中执行以下操作:

#!/bin/bash
while IFS=, read base x y result text; do
   echo DEBUG: $base $x $y $result $text
   convert "$base" -pointsize 18 -annotate +${x}+${y} "$text" "$result"
done < table.csv

你会得到这个:

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

于 2017-02-01T20:18:08.540 回答