mapping
create images from lines in a text file (need an "imgs" subfolder)
while read line; do convert -background transparent -fill '#5733af' -pointsize 10 -font Unifont +antialias label:$line imgs/$line.png; done < list.txt
once these are created they can be imported elsewhere
more abt IM fonts:
https://legacy.imagemagick.org/Usage/fonts/
+
(to-do) need to figure out sorting by row; e.g.
https://www.geeksforgeeks.org/sort-command-linuxunix-examples/
No Comments