R
R
re0n2014-04-04 13:04:01
Automation
re0n, 2014-04-04 13:04:01

How to make a card for each of these words in *jpg from a list of words, for example, in * txt and automate the process?

* To get 100 cards from a list of 100 words (a card is a jpg file with a word on it).
* Preferably using Photoshop as an example.
* If you have another option, then it is not necessary to use a txt file for the word list.
Short answer like: "script"; "Isolation by color" is better not to write, because. It's not open and doesn't mean anything to me.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
M
maxaon, 2014-04-04
@re0n

The simplest option is ImageMagik and a batch file.

@echo off
chcp 65001
FOR /F "tokens=*" %%i in (words.txt) do (
echo %%i
convert -background lightblue -fill blue ^
    -pointsize 72 label:"%%i" ^
    "%%i.png"
)
pause

Hello word
Foo bar
Привет мир

There may be problems with encoding - save the file in UTF.
And by the way, never save text in JPG, use PNG.

Z
zooks, 2014-04-04
@zooks

If for printing, then you can do it in Excel.

G
GavriKos, 2014-04-04
@GavriKos

Script in Photoshop. Ready is unlikely to find, you have to write yourself. If you do not know how to write yourself - order. The script must be able to parse a list of words, create a file in Photoshop, add an inscription, save.
The second option is ImageMagic. An example of applying an inscription to a picture is easy to google. But I won’t tell you how to make the list taken from a file without a script.
The third option - in the Word list of words, convert each word into WordArt, save everything as a web page. Perversion is complete.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question