03-20-2023, 01:44 PM
Well lets see what replies get posted for Gimp use
but as a possible alternative there is ImageMagick (IM) http://www.imagemagick.org command line.
The bare bones
There is a linux utility sed and as far as I know a Windows version exists that can extract a line of text
That takes the second line from a text file and writes to a new file temp
then using IM
That writes the text from temp into the graphic tile.png using the font and font size
Those would have to be wrapped up in a batch file to cycle through the lines of text and the tiles. The place to ask questions about IM is https://github.com/ImageMagick/ImageMagick/discussions
but as a possible alternative there is ImageMagick (IM) http://www.imagemagick.org command line.
The bare bones
There is a linux utility sed and as far as I know a Windows version exists that can extract a line of text
Code:
sed '2q;d' lots-of-lines.txt > temp
then using IM
Code:
magick mogrify -font Futura-Bold.ttf -pointsize 30 -gravity Center -annotate +0+0 @temp tile.png
Those would have to be wrapped up in a batch file to cycle through the lines of text and the tiles. The place to ask questions about IM is https://github.com/ImageMagick/ImageMagick/discussions