ExifTool Forum

General => Metadata => Topic started by: Sawfish on May 04, 2021, 07:31:06 PM

Title: Techinques for adding information that is visible on the digital image
Post by: Sawfish on May 04, 2021, 07:31:06 PM
It might be  very useful to b able to essentially "print" or "stamp" textual info onto an image, so that such things as date, or eve better, parts of a description, would appear in the lower left corner (for example), of an image. This would mean that the common viewer would instantly see the information, rather than having to bring up a metadata viewer.

This information would also be included in  a hardcopy print.

Is anyone familiar with any techniques to do this programmatically, using exiftool?

It would be best if this could be a sort of toggle, where one could remove the information and still retain the unaltered original image.
Title: Re: Techinques for adding information that is visible on the digital image
Post by: StarGeek on May 04, 2021, 08:46:40 PM
Exiftool only edits metadata.  It does not do any image editing.

You might want to look into ImageMagick (https://imagemagick.org/), which does edit image data and can read some metadata and place it on the image.
Title: Re: Techinques for adding information that is visible on the digital image
Post by: Alan Clifford on May 05, 2021, 05:53:21 PM
I use ImageMagick for my watermarks but I had a quick look around the internet for a simpler command.

I modified that to

convert  leffe.jpg -gravity SouthEast -pointsize 50 -annotate +20+20 '%[EXIF:DateTime]'  leffe2.jpg


See attached file for the result.
Title: Re: Techinques for adding information that is visible on the digital image
Post by: Sawfish on May 06, 2021, 08:53:59 AM
Terrific! Thanks!