08-03-2023, 09:03 AM
(08-03-2023, 08:23 AM)rich2005 Wrote: Vague memory of a Gimp plugin that pastes the layer name into the layer - but I can not find it, so it might not exist.
The usual way is not Gimp but a command line program ImageMagick (IM) http://www.imagemagick.org
For a single image thumb.png where the number space is blank and outputs as a jpeg
Code:
magick thumb.png -font Arial_Bold.ttf -pointsize 22 -fill white -annotate +266+187 "01" 01.jpg
Gives this.
Caveates: You need a matching font and put it in the same folder as the base image
For a sequence of numbers then a batch file and a loop is required. If you do a search you will find examples. Often used for lottery tickets etc. I use linux and very rusty with Windows but see https://superuser.com/questions/908476/c...magemagick Scroll down to the end for a Windows example.
You can ask the question on the IM forum: https://github.com/ImageMagick/ImageMagick/discussions Always very helpful there.
edit: just out of interest, how many of these do you need ?
Thank you for the information I will look into that as well.
It's ok I don't need you to make me any images, but I appreciate it.
I was just using that for a visual example.