Is there a way to ask Windows to print pictures with the filename overlayed on top of the picture? (e.g. in small print on the bottom left corner of the picture). If not what would be an application that would facilitate this task?

link|improve this question

68% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You can do that in Paint (Win+R, pbrush.exe)

ImageMagick can do that from command line if you need mass processing: (Convert tool, "-annotate" or "-draw text" option.) http://www.imagemagick.org/script/command-line-options.php#annotate

Command line loop in Windows:

for %i in (*.png *.jpg *.gif) do convert ... %i

Usually I make dry run before running actual loop:

for %i in (*.png *.jpg *.gif) do echo convert ... %i
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.