From: Steinar H. Gunderson Date: Wed, 22 Aug 2007 06:24:48 +0000 (+0200) Subject: We want the human-readable values for the EXIF stuff, not the machine-readable X-Git-Url: https://git.sesse.net/?p=pr0n;a=commitdiff_plain;h=94f48b7b936c7958fa58a0d8dc5f3812ac1ce30d We want the human-readable values for the EXIF stuff, not the machine-readable ones. --- diff --git a/perl/Sesse/pr0n/Common.pm b/perl/Sesse/pr0n/Common.pm index 4229829..b00810e 100644 --- a/perl/Sesse/pr0n/Common.pm +++ b/perl/Sesse/pr0n/Common.pm @@ -259,9 +259,9 @@ sub update_image_info { } # Model/Lens - my $model = $exiftool->GetValue('Model', 'ValueConv'); - my $lens = $exiftool->GetValue('Lens', 'ValueConv'); - $lens = $exiftool->GetValue('LensSpec', 'ValueConv') if (!defined($lens)); + my $model = $exiftool->GetValue('Model', 'PrintConv'); + my $lens = $exiftool->GetValue('Lens', 'PrintConv'); + $lens = $exiftool->GetValue('LensSpec', 'PrintConv') if (!defined($lens)); $model =~ s/^\s*//; $model =~ s/\s*$//;