यदि आप छवि फ़ाइल के निर्माण की तारीख छवि में ही लिखना चाहते हैं (यदि ऐसा नहीं है, तो कृपया अपना प्रश्न संपादित करें), आप उपयोग कर सकते हैं imagemagick
।
पहले से स्थापित नहीं है, तो ImageMagick स्थापित करें:
sudo apt-get install imagemagick
एक पार्टी पाश है कि प्रत्येक तस्वीर और उपयोग की निर्माण तिथि मिल जाएगा भागो 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
? धन्यवाद!