Here is simple way how add time take or file modifed to picture

# 1
sudo apt install imagemagick
# 2
ls | awk '{print "convert "$0" -gravity SouthEast -pointsize 60 -fill orange -annotate +30+30 %[exif:DateTimeOriginal] dated_"$0}' | sh
Back