Search found 1 match

by tardus
2015-10-13T23:52:26-07:00
Forum: Users
Topic: Creating a batch of images containing a large text
Replies: 5
Views: 4399

Re: Creating a batch of images containing a large text

Here is a Linux BASH shell script that does the same steps:-

#!/bin/sh

while read TEXT
do
NAME=`echo $TEXT | tr ' ' '_'` # replace spaces with underscores
echo $TEXT " : " $NAME
convert \
-size 300x200 \
-gravity Center \
-background Black -fill White \
caption:"$TEXT" \
$NAME.png
done ...