Якщо ви хочете записати дату створення файлу зображення у самому зображенні (якщо це не те, що ви хочете, відредагуйте своє запитання), ви можете використовувати imagemagick
.
Встановіть ImageMagick, якщо він ще не встановлений:
sudo apt-get install imagemagick
Запустіть цикл bash, який отримає дату створення кожної фотографії та використовуйте convert
з imagemagick
набору для редагування зображення:
for img in *jpg; do convert "$img" -gravity SouthEast -pointsize 22 \
-fill white -annotate +30+30 %[exif:DateTimeOriginal] "time_""$img";
done
Для кожного названого зображення foo.jpg
це створить копію, яку називають time_foo.jpg
часовою позначкою в нижній правій частині. Ви можете зробити це більш елегантно, для декількох типів файлів і хороших вихідних імен, але синтаксис є трохи складнішим:
Гаразд, це була проста версія. Я написав сценарій, який може вирішувати складніші ситуації, файли в підкаталогах, дивні назви файлів тощо. Наскільки я знаю, лише .png і .tif зображення можуть містити EXIF-дані, тому немає сенсу запускати це в інших форматах . Однак, як можливе вирішення, ви можете використовувати дату створення файлу замість даних EIF. Це, швидше за все, не є датою зйомки зображення, хоча сценарій нижче містить відповідний розділ. Видаліть коментарі, якщо ви хочете, щоб це було оброблено таким чином.
Збережіть цей сценарій як add_watermark.sh
і запустіть його в каталозі, який містить ваші файли:
bash /path/to/add_watermark.sh
Він використовує, exiv2
що вам може знадобитися для встановлення ( sudo apt-get install exiv2
). Сценарій:
#!/usr/bin/env bash
## This command will find all image files, if you are using other
## extensions, you can add them: -o "*.foo"
find . -iname "*.jpg" -o -iname "*.jpeg" -o -iname "*.tif" -o \
-iname "*.tiff" -o -iname "*.png" |
## Go through the results, saving each as $img
while IFS= read -r img; do
## Find will return full paths, so an image in the current
## directory will be ./foo.jpg and the first dot screws up
## bash's pattern matching. Use basename and dirname to extract
## the needed information.
name=$(basename "$img")
path=$(dirname "$img")
ext="${name/#*./}";
## Check whether this file has exif data
if exiv2 "$img" 2>&1 | grep timestamp >/dev/null
## If it does, read it and add the water mark
then
echo "Processing $img...";
convert "$img" -gravity SouthEast -pointsize 22 -fill white \
-annotate +30+30 %[exif:DateTimeOriginal] \
"$path"/"${name/%.*/.time.$ext}";
## If the image has no exif data, use the creation date of the
## file. CAREFUL: this is the date on which this particular file
## was created and it will often not be the same as the date the
## photo was taken. This is probably not the desired behaviour so
## I have commented it out. To activate, just remove the # from
## the beginning of each line.
# else
# date=$(stat "$img" | grep Modify | cut -d ' ' -f 2,3 | cut -d ':' -f1,2)
# convert "$img" -gravity SouthEast -pointsize 22 -fill white \
# -annotate +30+30 "$date" \
# "$path"/"${name/%.*/.time.$ext}";
fi
done
convert.im6: unknown image property "%[exif:DateTimeOriginal]" @ warning/property.c/InterpretImageProperties/3245. convert.im6: unable to open image `{img/%.*/.time.jpg}': No such file or directory @ error/blob.c/OpenBlob/2638.
Також я ще не вирішив, чи хочу ще використовувати підкаталоги; Ви могли б показати, як користуватисяfind
? Дякую!