exiftool: alle daten eines bildes anzeigen

das kann man z.b. mit einem kleinen perl script machen

#!/usr/bin/perl -w
use Image::ExifTool ':Public';
my $file = shift or die "Please specify filename";
my $info = ImageInfo($file);
foreach (keys %$info) {
    print "$_ : $info->{$_}\n";
}

bei einem stinknormalen handyfoto sieht das dann z.b. so aus… alphabetisch sortiert.

Aperture : 2.4
BitsPerSample : 8
ColorComponents : 3
ColorSpace : sRGB
ComponentsConfiguration : Y, Cb, Cr, -
Compression : JPEG (old-style)
CreateDate : 2016:10:29 21:41:48
CustomRendered : Normal
DateTimeOriginal : 2016:10:29 21:41:48
DigitalZoomRatio : 1
Directory : ../new
EncodingProcess : Baseline DCT, Huffman coding
ExifByteOrder : Little-endian (Intel, II)
ExifImageHeight : 1458
ExifImageWidth : 2592
ExifToolVersion : 10.10
ExifVersion : 0220
ExposureCompensation : 0
ExposureMode : Auto
ExposureTime : 1/16
FaceInfoLength : 26
FaceInfoOffset : 94
FacesDetected : 0
FileAccessDate : 2016:11:05 18:26:33+01:00
FileInodeChangeDate : 2016:11:05 18:19:25+01:00
FileModifyDate : 2016:10:29 22:41:51+02:00
FileName : DSC_1120.JPG
FilePermissions : rwx------
FileSize : 494 kB
FileTypeExtension : jpg
FileType : JPEG
Flash : No flash function
FlashpixVersion : 0100
FNumber : 2.4
FocalLength : 2.1 mm
FocalLength35efl : 2.1 mm
ImageHeight : 1458
ImageSize : 2592x1458
ImageWidth : 2592
InteropIndex : R98 - DCF basic file (sRGB)
InteropVersion : 0100
ISO : 800
LightSource : Unknown
LightValue : 3.5
Make : Sony
Megapixels : 3.8
MetaVersion : 
MeteringMode : Multi-segment
MIMEType : image/jpeg
Model : E5823
ModifyDate : 2016:10:29 21:41:48
Orientation (1) : Rotate 270 CW
Orientation : Rotate 270 CW
ResolutionUnit (1) : inches
ResolutionUnit : inches
SceneCaptureType : Portrait
ShutterSpeed : 1/16
ShutterSpeedValue : 1/16
SoftSkinEffect : Low
Software : 32.2.A.0.305_0_f500
SonyDateTime : 2016:10:29 21:41:48
SonyImageHeight : 1464
SonyImageWidth : 2592
SubjectDistanceRange : Unknown
SubSecCreateDate : 2016:10:29 21:41:48.658668
SubSecDateTimeOriginal : 2016:10:29 21:41:48.658668
SubSecModifyDate : 2016:10:29 21:41:48.658668
SubSecTime : 658668
SubSecTimeDigitized : 658668
SubSecTimeOriginal : 658668
ThumbnailImage : SCALAR(0x20ec6a0)
ThumbnailLength : 3889
ThumbnailOffset : 8814
WhiteBalance : Auto
XResolution (1) : 72
XResolution : 72
YCbCrPositioning : Centered
YCbCrSubSampling : YCbCr4:2:0 (2 2)
YResolution (1) : 72
YResolution : 72

Author: sd

Leave a Reply

Your email address will not be published. Required fields are marked *