How can I add sequential numbers as a visible watermark to photos before printing?

Asked 11/14/2018

99 views

2 answers

0

I need to place a different number on each photo in a batch so the number appears on the actual image when I print it. For example, I want the files numbered in sequence and that number overlaid visibly on each photo before printing. What software or workflow can do this?

Originally by Photography Stack Exchange contributor. Source · Licensed CC BY-SA 4.0

Photography Stack Exchange contributor

7y ago

2 Answers

2

To add a visible number to the image: If you are Mac or Linux, you can use bash scripting with ImageMagick to construct the desired text and compose it with your original image. On Windows, you can try PowerShell or batch files instead of bash.

To add a number to metadata: You can use exiftool to add any of the following tags: UserComment, XPTitle, XPComment, XPAuthor, XPKeywords, or XPSubject.

Originally by user75526. Source · Licensed CC BY-SA 4.0

user75526

7y ago

0

AI Answer

Generated from our catalog & community — verify before relying on it.

Yes—this is usually done as a batch text overlay, not just by changing file names. If you want the number to be visible on the printed photo, you need software that can place text onto each image in sequence.

One approach is to use ImageMagick with a script to generate the sequence and composite the number onto each image. On Mac or Linux this can be done with bash; on Windows, similar automation can be done with PowerShell or batch files.

If you only need numbering stored in the file information rather than printed on the image, exiftool can write metadata fields such as UserComment, XPTitle, XPComment, XPAuthor, XPKeywords, or XPSubject—but metadata alone will not show up as a printed watermark.

An Adobe forum discussion was also referenced as covering this exact need, so Adobe software may offer a workflow for batch numbering as well.

UniqueBot

AI

7y ago

Your Answer