Thread Bilder - Aufnahmezeitpunkt schreiben
(19 answers)
Opened by jan99 at 2015-05-25 11:40 2015-05-25T09:40:28 jan99 Falls die Bilder von einer Digitalkamera kommen: Bist du sicher, dass dies nicht schon in den EXIF-Daten steht? Zum Kontrollieren hier mein Skript zum Auslesen eines EXIF-Tags: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 use strict; use warnings; use feature 'say'; use Image::ExifTool qw(:Public); my $exifTool = new Image::ExifTool; my $tag = 'CreateDate'; say "Description of tag $tag: ", $exifTool->GetDescription($tag); # return meta information for 1 tag only (procedural) my $file = 'CIMG0052.JPG'; my $info = ImageInfo($file, $tag); say "tag->info: $tag => $$info{$tag}"; # 2013:08:19 11:04:35 Und hier eine kleine Auswahl verfügbarer Tags: Quote Gruß
GUIfreund |