I would like to have a set contact sheets for 70 photos.
And, each photo would have similar to this label:
n Comment
where n indicates the image number.
My Bash script correctly shows the comment. For the image sequence number I am puzzled.
#!/bin/bash
/usr/bin/montage \
-monitor \
-tile '3X3' \
-label [useless attempts to number images] %c \
'/tmp/*-thumb.jpg' \
~/Desktop/SE-%d.jpg
I have tried various fx:
expressions and percent escapes constructs with results either nothing displayed or the numeral zero
(http://www.imagemagick.org/script/fx.php, http://imagemagick.org/script/escape.php).