summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorexiftool <phil@work3.phy.queensu.ca>2015-11-06 09:08:38 -0500
committerexiftool <phil@work3.phy.queensu.ca>2015-11-06 09:08:38 -0500
commite294b14e2e21211ce59696c13f9e93d3827b4faf (patch)
tree779b6a26b03eeba158be28719126b17451e99d3a /lib
parent3277f4555db830b7e1aad4de24fb8d863d671d27 (diff)
Update to 10.05
Diffstat (limited to 'lib')
-rw-r--r--lib/Image/ExifTool.pm51
-rw-r--r--lib/Image/ExifTool.pod86
-rw-r--r--lib/Image/ExifTool/APP12.pm4
-rw-r--r--lib/Image/ExifTool/Apple.pm1
-rw-r--r--lib/Image/ExifTool/BuildTagLookup.pm10
-rw-r--r--lib/Image/ExifTool/Canon.pm3
-rw-r--r--lib/Image/ExifTool/CanonCustom.pm6
-rw-r--r--lib/Image/ExifTool/CanonVRD.pm18
-rw-r--r--lib/Image/ExifTool/DNG.pm4
-rw-r--r--lib/Image/ExifTool/FotoStation.pm4
-rw-r--r--lib/Image/ExifTool/GIF.pm6
-rw-r--r--lib/Image/ExifTool/Geotag.pm10
-rw-r--r--lib/Image/ExifTool/ICC_Profile.pm4
-rw-r--r--lib/Image/ExifTool/Jpeg2000.pm4
-rw-r--r--lib/Image/ExifTool/Lang/en_ca.pm96
-rw-r--r--lib/Image/ExifTool/Lang/en_gb.pm119
-rw-r--r--lib/Image/ExifTool/MIE.pm4
-rw-r--r--lib/Image/ExifTool/MPF.pm6
-rw-r--r--lib/Image/ExifTool/MakerNotes.pm12
-rw-r--r--lib/Image/ExifTool/Motorola.pm62
-rw-r--r--lib/Image/ExifTool/Nikon.pm12
-rw-r--r--lib/Image/ExifTool/NikonCapture.pm4
-rw-r--r--lib/Image/ExifTool/PNG.pm6
-rw-r--r--lib/Image/ExifTool/PPM.pm4
-rw-r--r--lib/Image/ExifTool/Pentax.pm3
-rw-r--r--lib/Image/ExifTool/QuickTime.pm4
-rw-r--r--lib/Image/ExifTool/Shortcuts.pm3
-rw-r--r--lib/Image/ExifTool/Sony.pm3
-rw-r--r--lib/Image/ExifTool/SonyIDC.pm7
-rw-r--r--lib/Image/ExifTool/TagLookup.pm5878
-rw-r--r--lib/Image/ExifTool/TagNames.pod19
-rw-r--r--lib/Image/ExifTool/WriteCanonRaw.pl4
-rw-r--r--lib/Image/ExifTool/WriteExif.pl12
-rw-r--r--lib/Image/ExifTool/WriteIPTC.pl4
-rw-r--r--lib/Image/ExifTool/WritePDF.pl2
-rw-r--r--lib/Image/ExifTool/WritePNG.pl2
-rw-r--r--lib/Image/ExifTool/WritePhotoshop.pl4
-rw-r--r--lib/Image/ExifTool/WritePostScript.pl4
-rw-r--r--lib/Image/ExifTool/WriteXMP.pl8
-rw-r--r--lib/Image/ExifTool/Writer.pl56
-rw-r--r--lib/Image/ExifTool/XMP.pm16
41 files changed, 3457 insertions, 3108 deletions
diff --git a/lib/Image/ExifTool.pm b/lib/Image/ExifTool.pm
index d0bdf41a..0a2717b2 100644
--- a/lib/Image/ExifTool.pm
+++ b/lib/Image/ExifTool.pm
@@ -27,7 +27,7 @@ use vars qw($VERSION $RELEASE @ISA @EXPORT_OK %EXPORT_TAGS $AUTOLOAD @fileTypes
%mimeType $swapBytes $swapWords $currentByteOrder %unpackStd
%jpegMarker %specialTags);
-$VERSION = '10.04';
+$VERSION = '10.05';
$RELEASE = '';
@ISA = qw(Exporter);
%EXPORT_TAGS = (
@@ -58,6 +58,7 @@ Exporter::export_ok_tags(keys %EXPORT_TAGS);
# autoloaded when any of them is called.
sub SetNewValue($;$$%);
sub SetNewValuesFromFile($$;@);
+sub GetNewValue($$;$);
sub GetNewValues($$;$);
sub CountNewValues($);
sub SaveNewValues($);
@@ -1783,6 +1784,7 @@ sub ClearOptions($)
ExtendedXMP => 1, # strategy for reading extended XMP
ExtractEmbedded =>undef,# flag to extract information from embedded documents
FastScan => undef, # flag to avoid scanning for trailer
+ Filter => undef, # output filter for all tag values
FixBase => undef, # fix maker notes base offsets
GeoMaxIntSecs => 1800, # geotag maximum interpolation time (secs)
GeoMaxExtSecs => 1800, # geotag maximum extrapolation time (secs)
@@ -2453,7 +2455,7 @@ sub GetValue($$;$)
require 'Image/ExifTool/XMPStruct.pl';
# convert strucure field values
unless ($type eq 'Both') {
- # (note: ConvertStruct handles the escape too if necessary)
+ # (note: ConvertStruct handles the filtering and escaping too if necessary)
return Image::ExifTool::XMP::ConvertStruct($self,$tagInfo,$value,$type);
}
$valueConv = Image::ExifTool::XMP::ConvertStruct($self,$tagInfo,$value,'ValueConv');
@@ -2547,6 +2549,9 @@ sub GetValue($$;$)
# disable escape of source values so we don't double escape them
my $oldEscape = $$self{ESCAPE_PROC};
delete $$self{ESCAPE_PROC};
+ # temporarily delete filter so it isn't applied to the Require'd values
+ my $oldFilter = $$self{OPTIONS}{Filter};
+ delete $$self{OPTIONS}{Filter};
foreach (keys %$val) {
$raw[$_] = $$self{VALUE}{$$val{$_}};
($val[$_], $prt[$_]) = $self->GetValue($$val{$_}, 'Both');
@@ -2554,6 +2559,7 @@ sub GetValue($$;$)
$$self{ESCAPE_PROC} = $oldEscape;
return wantarray ? () : undef;
}
+ $$self{OPTIONS}{Filter} = $oldFilter if defined $oldFilter;
$$self{ESCAPE_PROC} = $oldEscape;
# set $val to $val[0], or \@val for a CODE ref conversion
$val = ref $conv eq 'CODE' ? \@val : $val[0];
@@ -2651,12 +2657,16 @@ sub GetValue($$;$)
# $valueConv is undefined if there was no print conversion done
$valueConv = $value;
}
+ $self->Filter(\$value) if defined $$self{OPTIONS}{Filter};
# return Both values as a list (ValueConv, PrintConv)
return ($valueConv, $value);
}
# escape value if necessary
DoEscape($value, $$self{ESCAPE_PROC}) if $$self{ESCAPE_PROC};
+ # filter if necessary
+ $self->Filter(\$value) if defined $$self{OPTIONS}{Filter} and $type eq 'PrintConv';
+
if (ref $value eq 'ARRAY') {
if (defined $$self{OPTIONS}{ListItem}) {
$value = $$value[$$self{OPTIONS}{ListItem}];
@@ -4632,6 +4642,39 @@ sub GetDescriptions($$)
}
#------------------------------------------------------------------------------
+# Apply filter to value(s) if necessary
+# Inputs: 0) ExifTool ref, 1-N) references to values(s) to filter
+# Returns: nothing, but changes values if necessary
+sub Filter($@)
+{
+ local $_;
+ my $self = shift;
+ return unless defined $$self{OPTIONS}{Filter};
+ while (@_) {
+ my $valPt = shift;
+ next unless defined $$valPt;
+ if (not ref $$valPt) {
+ $_ = $$valPt;
+ #### eval Filter ($_)
+ eval $$self{OPTIONS}{Filter};
+ $$valPt = $_;
+ } elsif (ref $$valPt eq 'SCALAR') {
+ my $val = $$$valPt; # make a copy to avoid filtering twice
+ $self->Filter(\$val);
+ $$valPt = \$val;
+ } elsif (ref $$valPt eq 'ARRAY') {
+ my @val = @{$$valPt}; # make a copy to avoid filtering twice
+ $self->Filter(\$_) foreach @val;
+ $$valPt = \@val;
+ } elsif (ref $$valPt eq 'HASH') {
+ my %val = %{$$valPt}; # make a copy to avoid filtering twice
+ $self->Filter(\$val{$_}) foreach keys %val;
+ $$valPt = \%val;
+ }
+ }
+}
+
+#------------------------------------------------------------------------------
# Return printable value
# Inputs: 0) ExifTool object reference
# 1) value to print, 2) line length limit (undef defaults to 60, 0=unlimited)
@@ -5482,8 +5525,8 @@ sub ProcessJPEG($$)
# avoid looking for preview unless necessary because it really slows
# us down -- only look for it if we found pointer, and preview is
# outside EXIF, and PreviewImage is specifically requested
- my $start = $self->GetValue('PreviewImageStart');
- my $plen = $self->GetValue('PreviewImageLength');
+ my $start = $self->GetValue('PreviewImageStart', 'ValueConv');
+ my $plen = $self->GetValue('PreviewImageLength', 'ValueConv');
if (not $start or not $plen and $$self{PreviewError}) {
$start = $$self{PreviewImageStart};
$plen = $$self{PreviewImageLength};
diff --git a/lib/Image/ExifTool.pod b/lib/Image/ExifTool.pod
index e35401ff..635757ef 100644
--- a/lib/Image/ExifTool.pod
+++ b/lib/Image/ExifTool.pod
@@ -611,6 +611,13 @@ MakerNote information. When set to 3, the file is not actually parsed, and
only an initial guess at FileType and some pseudo tags are returned.
Default is undef.
+=item Filter
+
+Perl expression used to filter values for all tags. The expression acts on
+the value of the Perl default variable ($_), and changes the value of this
+variable as required. Applies to all returned values unless PrintConv
+option is disabled.
+
=item FixBase
Fix maker notes base offset. A common problem with image editing software
@@ -943,9 +950,10 @@ is given. The following options are effective in the call to
L</ExtractInfo>:
Binary, Charset, CharsetEXIF, CharsetFileName, CharsetID3, CharsetIPTC,
-CharsetPhotoshop, CharsetQuickTime, Composite, ExtractEmbedded, FastScan,
-FixBase, HtmlDump, HtmlDumpBase, IgnoreMinorErrors, Lang, LargeFileSupport,
-MakerNotes, PNGEarlyXMP, ScanForXMP, Struct, TextOut, Unknown and Verbose.
+CharsetPhotoshop, CharsetQuickTime, Composite, ExtendedXMP, ExtractEmbedded,
+FastScan, FixBase, HtmlDump, HtmlDumpBase, IgnoreMinorErrors, Lang,
+LargeFileSupport, MakerNotes, NoPDFList, PNGEarlyXMP, ScanForXMP, Struct,
+TextOut, Unknown and Verbose.
=item Return Value:
@@ -979,9 +987,9 @@ L</ImageInfo>.
Inputs are the same as L</ExtractInfo> and L</ImageInfo> except that an
image can not be specified. Options in effect are:
-Charset, CoordFormat, DateFormat, Duplicates, Escape, Exclude, Group#,
-GlobalTimeShift, Lang, List, ListSep, PrintConv, Sort (if a tag list
-reference is given) and StrictDate.
+Charset, CoordFormat, DateFormat, Duplicates, Escape, Exclude, Filter,
+Group#, GlobalTimeShift, Lang, List, ListItem, ListSep, PrintConv, Sort (if
+a tag list reference is given) and StrictDate.
=item Return Value:
@@ -1189,8 +1197,8 @@ optional group specifier), use L</GetInfo> instead.
The following options are in effect when L</GetValue> is called:
-Charset, CoordFormat, DateFormat, Escape, GlobalTimeShift, Lang, List,
-ListSep, PrintConv and StrictDate.
+Charset, CoordFormat, DateFormat, Escape, Filter, GlobalTimeShift, Lang,
+List, ListItem, ListSep, PrintConv and StrictDate.
=over 4
@@ -1436,6 +1444,32 @@ The following ExifTool options are effective in the call to L</SetNewValue>:
Charset, Escape, IgnoreMinorErrors, Lang, ListSep, ListSplit, PrintConv,
Verbose and WriteMode.
+=head2 GetNewValue
+
+Get the new Raw value for a tag. This is the value set by L</SetNewValue>
+this is queued to be written to file. List-type tags may return multiple
+values in list context.
+
+ $rawVal = $exifTool->GetNewValue($tag);
+
+ @rawVals = $exifTool->GetNewValue($tag);
+
+=over 4
+
+=item Inputs:
+
+0) ExifTool object reference
+
+1) Tag name (case sensitive, may be prefixed by family 0 or 1 group name)
+
+=item Return Values:
+
+List of new Raw tag values, or first value in list when called in scalar
+context. The list may be empty either if the tag isn't being written, or if
+it is being deleted (ie. if L</SetNewValue> was called without a value).
+
+=back
+
=head2 SetNewValuesFromFile
A very powerful routine that sets new values for tags from information found
@@ -1567,32 +1601,6 @@ behaviour and copy as flattened tags instead.
=back
-=head2 GetNewValues
-
-Get list of new Raw values for the specified tag. These are the values that
-will be written to file. Most tags return only a single value, but
-List-type tags may return multiple values.
-
- $rawVal = $exifTool->GetNewValues($tag);
-
- @rawVals = $exifTool->GetNewValues($tag);
-
-=over 4
-
-=item Inputs:
-
-0) ExifTool object reference
-
-1) Tag name (case sensitive, may be prefixed by family 0 or 1 group name)
-
-=item Return Values:
-
-List of new Raw tag values, or first value in list when called in scalar
-context. The list may be empty either if the tag isn't being written, or if
-it is being deleted (ie. if L</SetNewValue> was called without a value).
-
-=back
-
=head2 CountNewValues
Return the total number of new values set.
@@ -2096,11 +2104,11 @@ MIE-Doc, MIE-Extender, MIE-Flash, MIE-GPS, MIE-Geo, MIE-Image, MIE-Lens,
MIE-Main, MIE-MakerNotes, MIE-Meta, MIE-Orient, MIE-Preview, MIE-Thumbnail,
MIE-UTM, MIE-Unknown, MIE-Video, MIFF, MNG, MOBI, MOI, MPC, MPEG, MPF0,
MPImage, MXF, MakerNotes, MakerUnknown, Matroska, MediaJukebox, MetaIFD,
-Microsoft, Minolta, MinoltaRaw, NITF, Nikon, NikonCapture, NikonCustom,
-NikonScan, Nintendo, Ocad, Ogg, Olympus, OpenEXR, PDF, PICT, PNG, PNG-pHYs,
-PSP, Palm, Panasonic, PanasonicRaw, Pentax, PhaseOne, PhotoCD,
-PhotoMechanic, Photoshop, PictureInfo, PostScript, PreviewIFD, PrintIM,
-ProfileIFD, Qualcomm, QuickTime, RAF, RAF2, RIFF, RMETA, RSRC, RTF,
+Microsoft, Minolta, MinoltaRaw, Motorola, NITF, Nikon, NikonCapture,
+NikonCustom, NikonScan, Nintendo, Ocad, Ogg, Olympus, OpenEXR, PDF, PICT,
+PNG, PNG-pHYs, PSP, Palm, Panasonic, PanasonicRaw, Pentax, PhaseOne,
+PhotoCD, PhotoMechanic, Photoshop, PictureInfo, PostScript, PreviewIFD,
+PrintIM, ProfileIFD, Qualcomm, QuickTime, RAF, RAF2, RIFF, RMETA, RSRC, RTF,
Radiance, Rawzor, Real, Real-CONT, Real-MDPR, Real-PROP, Real-RA3, Real-RA4,
Real-RA5, Real-RJMD, Reconyx, Ricoh, SPIFF, SR2, SR2DataIFD, SR2SubIFD,
SRF#, SVG, Samsung, Sanyo, Scalado, Sigma, SigmaRaw, Sony, SonyIDC, Stim,
diff --git a/lib/Image/ExifTool/APP12.pm b/lib/Image/ExifTool/APP12.pm
index 7c9699c3..ebd81af3 100644
--- a/lib/Image/ExifTool/APP12.pm
+++ b/lib/Image/ExifTool/APP12.pm
@@ -14,7 +14,7 @@ use strict;
use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
-$VERSION = '1.12';
+$VERSION = '1.13';
sub ProcessAPP12($$$);
sub ProcessDucky($$$);
@@ -183,7 +183,7 @@ sub WriteDucky($$$)
$isNew = 1;
}
if ($isNew) {
- $val = $et->GetNewValues($nvHash);
+ $val = $et->GetNewValue($nvHash);
++$$et{CHANGED};
next unless defined $val; # next if tag is being deleted
$et->VerboseValue("+ Ducky:$$tagInfo{Name}", $val);
diff --git a/lib/Image/ExifTool/Apple.pm b/lib/Image/ExifTool/Apple.pm
index 81a0d6bb..ca9057a2 100644
--- a/lib/Image/ExifTool/Apple.pm
+++ b/lib/Image/ExifTool/Apple.pm
@@ -10,6 +10,7 @@ package Image::ExifTool::Apple;
use strict;
use vars qw($VERSION);
+use Image::ExifTool::Exif;
use Image::ExifTool::PLIST;
$VERSION = '1.02';
diff --git a/lib/Image/ExifTool/BuildTagLookup.pm b/lib/Image/ExifTool/BuildTagLookup.pm
index 81cae2c3..60e0396f 100644
--- a/lib/Image/ExifTool/BuildTagLookup.pm
+++ b/lib/Image/ExifTool/BuildTagLookup.pm
@@ -32,7 +32,7 @@ use Image::ExifTool::XMP;
use Image::ExifTool::Canon;
use Image::ExifTool::Nikon;
-$VERSION = '2.90';
+$VERSION = '2.91';
@ISA = qw(Exporter);
sub NumbersFirst($$);
@@ -71,11 +71,12 @@ my %tweakOrder = (
'Kodak::TextualInfo' => 'Kodak::IFD',
'Kodak::Processing' => 'Kodak::TextualInfo',
Leaf => 'Kodak',
- Nikon => 'Minolta',
+ Minolta => 'Leaf',
+ Motorola => 'Minolta',
+ Nikon => 'Motorola',
NikonCustom => 'Nikon',
NikonCapture => 'NikonCustom',
Nintendo => 'NikonCapture',
- Minolta => 'Leaf',
Pentax => 'Panasonic',
SonyIDC => 'Sony',
Unknown => 'SonyIDC',
@@ -590,7 +591,8 @@ my %shortcutNotes = (
},
Unsafe => q{
"unsafe" tags in JPEG images which are normally not copied. Defined here
- as a shortcut to use when rebuilding JPEG EXIF from scratch
+ as a shortcut to use when rebuilding JPEG EXIF from scratch. See
+ L<FAQ number 20|../faq.html#Q20> for more information
},
LargeTags => q{
large binary data tags which may be excluded to reduce memory usage if
diff --git a/lib/Image/ExifTool/Canon.pm b/lib/Image/ExifTool/Canon.pm
index 7af45629..05c4eff1 100644
--- a/lib/Image/ExifTool/Canon.pm
+++ b/lib/Image/ExifTool/Canon.pm
@@ -83,7 +83,7 @@ sub ProcessSerialData($$$);
sub ProcessFilters($$$);
sub SwapWords($);
-$VERSION = '3.54';
+$VERSION = '3.55';
# Note: Removed 'USM' from 'L' lenses since it is redundant - PH
# (or is it? Ref 32 shows 5 non-USM L-type lenses)
@@ -317,6 +317,7 @@ $VERSION = '3.54';
180.2 => 'Sigma 24mm f/1.4 DG HSM | A', #53
180.3 => 'Zeiss Milvus 50mm f/1.4', #52
180.4 => 'Zeiss Milvus 85mm f/1.4', #52
+ 180.5 => 'Zeiss Otus 28mm f/1.4', #PH
181 => 'Canon EF 100-400mm f/4.5-5.6L IS + 1.4x or Sigma Lens', #15
181.1 => 'Sigma 150-600mm f/5-6.3 DG OS HSM | S + 1.4x', #50
182 => 'Canon EF 100-400mm f/4.5-5.6L IS + 2x or Sigma Lens',
diff --git a/lib/Image/ExifTool/CanonCustom.pm b/lib/Image/ExifTool/CanonCustom.pm
index 0ef5db18..fc3f4f2d 100644
--- a/lib/Image/ExifTool/CanonCustom.pm
+++ b/lib/Image/ExifTool/CanonCustom.pm
@@ -19,7 +19,7 @@ use Image::ExifTool qw(:DataAccess);
use Image::ExifTool::Canon;
use Image::ExifTool::Exif;
-$VERSION = '1.50';
+$VERSION = '1.51';
sub ProcessCanonCustom($$$);
sub ProcessCanonCustom2($$$);
@@ -2394,7 +2394,7 @@ sub ProcessCanonCustom2($$$)
$tagInfo = $et->GetTagInfo($tagTablePtr, $tag, \$val, undef, $num) or next;
my $nvHash = $et->GetNewValueHash($tagInfo) or next;
next unless $et->IsOverwriting($nvHash, $val);
- my $newVal = $et->GetNewValues($nvHash);
+ my $newVal = $et->GetNewValue($nvHash);
next unless defined $newVal; # can't delete from a custom table
WriteValue($newVal, 'int32s', $num, $dataPt, $recPos);
$et->VerboseValue("- CanonCustom:$$tagInfo{Name}", $val);
@@ -2523,7 +2523,7 @@ sub WriteCanonCustom($$$)
my $nvHash = $et->GetNewValueHash($tagInfo);
$val = ($val & 0xff);
next unless $et->IsOverwriting($nvHash, $val);
- my $newVal = $et->GetNewValues($nvHash);
+ my $newVal = $et->GetNewValue($nvHash);
next unless defined $newVal; # can't delete from a custom table
Set16u(($newVal & 0xff) + ($tag << 8), $dataPt, $pos);
$et->VerboseValue("- $dirName:$$tagInfo{Name}", $val);
diff --git a/lib/Image/ExifTool/CanonVRD.pm b/lib/Image/ExifTool/CanonVRD.pm
index ba273f9c..3ea249f9 100644
--- a/lib/Image/ExifTool/CanonVRD.pm
+++ b/lib/Image/ExifTool/CanonVRD.pm
@@ -22,7 +22,7 @@ use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
use Image::ExifTool::Canon;
-$VERSION = '1.26';
+$VERSION = '1.27';
sub ProcessCanonVRD($$;$);
sub WriteCanonVRD($$;$);
@@ -1698,7 +1698,7 @@ sub ProcessDR4($$;$)
# write CanonDR4 as a block if specified
if ($isWriting) {
my $nvHash;
- my $newVal = $et->GetNewValues('CanonDR4', \$nvHash);
+ my $newVal = $et->GetNewValue('CanonDR4', \$nvHash);
if ($newVal) {
$et->VPrint(0, " Writing CanonDR4 as a block\n");
$$et{DidCanonVRD} = 1; # set flag so we don't add this twice
@@ -1825,7 +1825,7 @@ sub ProcessDR4($$;$)
}
$val = ReadValue($dataPt, $off, $format, undef, $len) unless defined $val;
my $nvHash;
- my $newVal = $et->GetNewValues($tagInfo, \$nvHash);
+ my $newVal = $et->GetNewValue($tagInfo, \$nvHash);
if ($et->IsOverwriting($nvHash, $val) and defined $newVal) {
my $count = int($len / Image::ExifTool::FormatSize($format));
my $rtnVal = WriteValue($newVal, $format, $count, $dataPt, $off);
@@ -1878,7 +1878,7 @@ sub ProcessVRD($$)
if (not $num and $$dirInfo{OutFile}) {
# create new VRD file from scratch
- my $newVal = $et->GetNewValues('CanonVRD');
+ my $newVal = $et->GetNewValue('CanonVRD');
if ($newVal) {
$et->VPrint(0, " Writing CanonVRD as a block\n");
Write($$dirInfo{OutFile}, $newVal) or return -1;
@@ -1918,7 +1918,7 @@ sub WriteCanonVRD($$;$)
my ($et, $dirInfo, $tagTablePtr) = @_;
$et or return 1; # allow dummy access
my $nvHash = $et->GetNewValueHash($Image::ExifTool::Extra{CanonVRD});
- my $val = $et->GetNewValues($nvHash);
+ my $val = $et->GetNewValue($nvHash);
$val = '' unless defined $val;
return undef unless $et->IsOverwriting($nvHash, $val);
++$$et{CHANGED};
@@ -2024,7 +2024,7 @@ sub ProcessCanonVRD($$;$)
}
if ($doDel) {
if ($$et{FILE_TYPE} eq 'VRD') {
- my $newVal = $et->GetNewValues('CanonVRD');
+ my $newVal = $et->GetNewValue('CanonVRD');
if ($newVal) {
$verbose and print $out " Writing CanonVRD as a block\n";
if ($outfile eq $dataPt) {
@@ -2045,9 +2045,9 @@ sub ProcessCanonVRD($$;$)
return 1;
}
# write now and return if CanonVRD was set as a block
- my $val = $et->GetNewValues('CanonVRD');
+ my $val = $et->GetNewValue('CanonVRD');
unless ($val) {
- $val = $et->GetNewValues('CanonDR4');
+ $val = $et->GetNewValue('CanonDR4');
$vrdType = 'DR4' if $val;
}
if ($val) {
@@ -2138,7 +2138,7 @@ sub ProcessCanonVRD($$;$)
if ($$et{NEW_VALUE}{$tagInfo}) {
# write as a block
$et->VPrint(0, "Writing $$tagInfo{Name} as a block\n");
- $dat = $et->GetNewValues($tagInfo);
+ $dat = $et->GetNewValue($tagInfo);
$dat = '' unless defined $dat;
++$$et{CHANGED};
} else {
diff --git a/lib/Image/ExifTool/DNG.pm b/lib/Image/ExifTool/DNG.pm
index abe06259..759c5999 100644
--- a/lib/Image/ExifTool/DNG.pm
+++ b/lib/Image/ExifTool/DNG.pm
@@ -17,7 +17,7 @@ use Image::ExifTool::Exif;
use Image::ExifTool::MakerNotes;
use Image::ExifTool::CanonRaw;
-$VERSION = '1.21';
+$VERSION = '1.22';
sub ProcessOriginalRaw($$$);
sub ProcessAdobeData($$$);
@@ -420,7 +420,7 @@ sub ProcessAdobeCRW($$$)
} elsif ($$newTags{$tagID}) {
my $nvHash = $et->GetNewValueHash($tagInfo);
if ($et->IsOverwriting($nvHash, $val)) {
- my $newVal = $et->GetNewValues($nvHash);
+ my $newVal = $et->GetNewValue($nvHash);
my $verboseVal;
$verboseVal = $newVal if $verbose > 1;
# convert to specified format if necessary
diff --git a/lib/Image/ExifTool/FotoStation.pm b/lib/Image/ExifTool/FotoStation.pm
index b56c95e8..b7b0720f 100644
--- a/lib/Image/ExifTool/FotoStation.pm
+++ b/lib/Image/ExifTool/FotoStation.pm
@@ -12,7 +12,7 @@ use strict;
use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
-$VERSION = '1.03';
+$VERSION = '1.04';
sub ProcessFotoStation($$);
@@ -195,7 +195,7 @@ sub ProcessFotoStation($$)
} else {
my $nvHash = $et->GetNewValueHash($tagInfo);
if ($et->IsOverwriting($nvHash) > 0) {
- $newVal = $et->GetNewValues($nvHash);
+ $newVal = $et->GetNewValue($nvHash);
$newVal = '' unless defined $newVal;
if ($verbose > 1) {
my $n = length $newVal;
diff --git a/lib/Image/ExifTool/GIF.pm b/lib/Image/ExifTool/GIF.pm
index 3239a8cd..6b321fc4 100644
--- a/lib/Image/ExifTool/GIF.pm
+++ b/lib/Image/ExifTool/GIF.pm
@@ -19,7 +19,7 @@ use strict;
use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
-$VERSION = '1.11';
+$VERSION = '1.12';
# road map of directory locations in GIF images
my %gifMap = (
@@ -137,7 +137,7 @@ sub ProcessGIF($$)
$addDirs = $$et{ADD_DIRS};
# determine if we are editing the File:Comment tag
my $delGroup = $$et{DEL_GROUP};
- $newComment = $et->GetNewValues('Comment', \$nvComment);
+ $newComment = $et->GetNewValue('Comment', \$nvComment);
$setComment = 1 if $nvComment or $$delGroup{File};
# change to GIF 89a if adding comment, XMP or ICC_Profile
$buff = 'GIF89a' if $$addDirs{XMP} or $$addDirs{ICC_Profile} or defined $newComment;
@@ -290,7 +290,7 @@ Block:
if ($nvComment) {
$isOverwriting = $et->IsOverwriting($nvComment,$comment);
# get new comment again (may have been shifted)
- $newComment = $et->GetNewValues($nvComment) if defined $newComment;
+ $newComment = $et->GetNewValue($nvComment) if defined $newComment;
} else {
# group delete, or deleting additional comments after writing one
$isOverwriting = 1;
diff --git a/lib/Image/ExifTool/Geotag.pm b/lib/Image/ExifTool/Geotag.pm
index a0ba943e..5c10b9a6 100644
--- a/lib/Image/ExifTool/Geotag.pm
+++ b/lib/Image/ExifTool/Geotag.pm
@@ -23,7 +23,7 @@ use strict;
use vars qw($VERSION);
use Image::ExifTool qw(:Public);
-$VERSION = '1.47';
+$VERSION = '1.48';
sub JITTER() { return 2 } # maximum time jitter
@@ -120,7 +120,7 @@ sub LoadTrackLog($$;$)
return 'Geotag feature requires Time::Local installed';
}
# add data to existing track
- my $geotag = $et->GetNewValues('Geotag') || { };
+ my $geotag = $et->GetNewValue('Geotag') || { };
# get lookup for available information types
my $has = $$geotag{Has};
$has or $has = $$geotag{Has} = { 'pos' => 1 };
@@ -612,7 +612,7 @@ DoneFix: $isDate = 1;
sub ApplySyncCorr($$)
{
my ($et, $time) = @_;
- my $sync = $et->GetNewValues('Geosync');
+ my $sync = $et->GetNewValue('Geosync');
if (ref $sync eq 'HASH') {
my $syncTimes = $$sync{Times};
if ($syncTimes) {
@@ -706,7 +706,7 @@ sub SetGeoValues($$;$)
{
local $_;
my ($et, $val, $writeGroup) = @_;
- my $geotag = $et->GetNewValues('Geotag');
+ my $geotag = $et->GetNewValue('Geotag');
my $verbose = $et->Options('Verbose');
my ($fix, $time, $fsec, $noDate, $secondTry, $iExt, $iDir);
@@ -1013,7 +1013,7 @@ Category: foreach $category (qw{pos track alt orient}) {
sub ConvertGeosync($$)
{
my ($et, $val) = @_;
- my $sync = $et->GetNewValues('Geosync') || { };
+ my $sync = $et->GetNewValue('Geosync') || { };
my ($syncFile, $gpsTime, $imgTime);
if ($val =~ /(.*?)\@(.*)/) {
diff --git a/lib/Image/ExifTool/ICC_Profile.pm b/lib/Image/ExifTool/ICC_Profile.pm
index 4d98c669..98e4d556 100644
--- a/lib/Image/ExifTool/ICC_Profile.pm
+++ b/lib/Image/ExifTool/ICC_Profile.pm
@@ -23,7 +23,7 @@ use strict;
use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
-$VERSION = '1.29';
+$VERSION = '1.30';
sub ProcessICC($$);
sub ProcessICC_Profile($$$);
@@ -716,7 +716,7 @@ sub WriteICC_Profile($$;$)
# (don't write AsShotICCProfile or CurrentICCProfile here)
return undef unless $dirName eq 'ICC_Profile';
my $nvHash = $et->GetNewValueHash($Image::ExifTool::Extra{$dirName});
- my $val = $et->GetNewValues($nvHash);
+ my $val = $et->GetNewValue($nvHash);
$val = '' unless defined $val;
return undef unless $et->IsOverwriting($nvHash, $val);
++$$et{CHANGED};
diff --git a/lib/Image/ExifTool/Jpeg2000.pm b/lib/Image/ExifTool/Jpeg2000.pm
index a70b800b..e3503b3b 100644
--- a/lib/Image/ExifTool/Jpeg2000.pm
+++ b/lib/Image/ExifTool/Jpeg2000.pm
@@ -16,7 +16,7 @@ use strict;
use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
-$VERSION = '1.24';
+$VERSION = '1.25';
sub ProcessJpeg2000Box($$$);
@@ -514,7 +514,7 @@ sub CreateNewBoxes($$)
# (native JPEG2000 information is always preferred, so don't check IsCreating)
next unless $$tagInfo{List} or $et->IsOverwriting($nvHash) > 0;
next if $$nvHash{EditOnly};
- my @vals = $et->GetNewValues($nvHash);
+ my @vals = $et->GetNewValue($nvHash);
my $val;
foreach $val (@vals) {
my $boxhdr = pack('N', length($val) + 8) . $$tagInfo{TagID};
diff --git a/lib/Image/ExifTool/Lang/en_ca.pm b/lib/Image/ExifTool/Lang/en_ca.pm
index 611716c8..9428615e 100644
--- a/lib/Image/ExifTool/Lang/en_ca.pm
+++ b/lib/Image/ExifTool/Lang/en_ca.pm
@@ -11,10 +11,21 @@ package Image::ExifTool::Lang::en_ca;
use strict;
use vars qw($VERSION);
-$VERSION = '1.09';
+$VERSION = '1.10';
%Image::ExifTool::Lang::en_ca::Translate = (
'AboveColor' => 'Above Colour',
+ 'AdvancedFilter' => {
+ PrintConv => {
+ 'Partial Color Blue' => 'Partial Colour Blue',
+ 'Partial Color Green' => 'Partial Colour Green',
+ 'Partial Color Orange' => 'Partial Colour Orange',
+ 'Partial Color Purple' => 'Partial Colour Purple',
+ 'Partial Color Red' => 'Partial Colour Red',
+ 'Partial Color Yellow' => 'Partial Colour Yellow',
+ 'Pop Color' => 'Pop Colour',
+ },
+ },
'AdvancedSceneMode' => {
PrintConv => {
'Color Select' => 'Colour Select',
@@ -28,11 +39,25 @@ $VERSION = '1.09';
'ArtFilter' => {
PrintConv => {
'Pale & Light Color' => 'Pale & Light Colour',
+ 'Pale & Light Color II' => 'Pale & Light Colour II',
+ 'Partial Color' => 'Partial Colour',
+ 'Partial Color II' => 'Partial Colour II',
+ 'Partial Color III' => 'Partial Colour III',
+ 'Watercolor' => 'Watercolour',
+ 'Watercolor I' => 'Watercolour I',
+ 'Watercolor II' => 'Watercolour II',
},
},
'ArtFilterEffect' => {
PrintConv => {
'Pale & Light Color' => 'Pale & Light Colour',
+ 'Pale & Light Color II' => 'Pale & Light Colour II',
+ 'Partial Color' => 'Partial Colour',
+ 'Partial Color II' => 'Partial Colour II',
+ 'Partial Color III' => 'Partial Colour III',
+ 'Watercolor' => 'Watercolour',
+ 'Watercolor I' => 'Watercolour I',
+ 'Watercolor II' => 'Watercolour II',
},
},
'BackgroundColor' => 'Background Colour',
@@ -74,7 +99,17 @@ $VERSION = '1.09';
'CanonColorInfo1' => 'Canon Colour Info 1',
'CanonColorInfo2' => 'Canon Colour Info 2',
'ChromaticityColorant' => 'Chromaticity Colourant',
- 'Color' => 'Colour',
+ 'CodingMethods' => {
+ PrintConv => {
+ 'JBIG color' => 'JBIG colour',
+ },
+ },
+ 'Color' => {
+ Description => 'Colour',
+ PrintConv => {
+ 'Color' => 'Colour',
+ },
+ },
'ColorAberrationControl' => 'Colour Aberration Control',
'ColorAdjustment' => 'Colour Adjustment',
'ColorAdjustmentMode' => 'Colour Adjustment Mode',
@@ -89,6 +124,7 @@ $VERSION = '1.09';
'ColorBalanceVersion' => 'Colour Balance Version',
'ColorBitDepth' => 'Colour Bit Depth',
'ColorBlur' => 'Colour Blur',
+ 'ColorBlurOn' => 'Colour Blur On',
'ColorBoostLevel' => 'Colour Boost Level',
'ColorBoostType' => 'Colour Boost Type',
'ColorBooster' => 'Colour Booster',
@@ -97,6 +133,7 @@ $VERSION = '1.09';
'ColorCharacterization' => 'Colour Characterization',
'ColorClass' => 'Colour Class',
'ColorCompensationFilter' => 'Colour Compensation Filter',
+ 'ColorCompensationFilterCustom' => 'Colour Compensation Filter Custom',
'ColorCompensationFilterSet' => 'Colour Compensation Filter Set',
'ColorComponents' => 'Colour Components',
'ColorControl' => 'Colour Control',
@@ -154,9 +191,15 @@ $VERSION = '1.09';
'ColorResponseUnit' => 'Colour Response Unit',
'ColorSamplersResource' => 'Colour Samplers Resource',
'ColorSamplersResource2' => 'Colour Samplers Resource 2',
+ 'ColorSaturationAdj' => 'Colour Saturation Adj',
'ColorSequence' => 'Colour Sequence',
'ColorSiting' => 'Colour Siting',
- 'ColorSpace' => 'Colour Space',
+ 'ColorSpace' => {
+ Description => 'Colour Space',
+ PrintConv => {
+ 'No color space specified' => 'No colour space specified',
+ },
+ },
'ColorSpaceData' => 'Colour Space Data',
'ColorSpecApproximation' => 'Colour Spec Approximation',
'ColorSpecData' => 'Colour Spec Data',
@@ -202,7 +245,17 @@ $VERSION = '1.09';
'ColorTempUnknown19' => 'Colour Temp Unknown 19',
'ColorTempUnknown2' => 'Colour Temp Unknown 2',
'ColorTempUnknown20' => 'Colour Temp Unknown 20',
+ 'ColorTempUnknown21' => 'Colour Temp Unknown 21',
+ 'ColorTempUnknown22' => 'Colour Temp Unknown 22',
+ 'ColorTempUnknown23' => 'Colour Temp Unknown 23',
+ 'ColorTempUnknown24' => 'Colour Temp Unknown 24',
+ 'ColorTempUnknown25' => 'Colour Temp Unknown 25',
+ 'ColorTempUnknown26' => 'Colour Temp Unknown 26',
+ 'ColorTempUnknown27' => 'Colour Temp Unknown 27',
+ 'ColorTempUnknown28' => 'Colour Temp Unknown 28',
+ 'ColorTempUnknown29' => 'Colour Temp Unknown 29',
'ColorTempUnknown3' => 'Colour Temp Unknown 3',
+ 'ColorTempUnknown30' => 'Colour Temp Unknown 30',
'ColorTempUnknown4' => 'Colour Temp Unknown 4',
'ColorTempUnknown5' => 'Colour Temp Unknown 5',
'ColorTempUnknown6' => 'Colour Temp Unknown 6',
@@ -212,7 +265,9 @@ $VERSION = '1.09';
'ColorTemperature' => 'Colour Temperature',
'ColorTemperatureAdj' => 'Colour Temperature Adj',
'ColorTemperatureBG' => 'Colour Temperature BG',
+ 'ColorTemperatureCustom' => 'Colour Temperature Custom',
'ColorTemperatureRG' => 'Colour Temperature RG',
+ 'ColorTemperatureSet' => 'Colour Temperature Set',
'ColorTemperatureSetting' => {
Description => 'Colour Temperature Setting',
PrintConv => {
@@ -287,6 +342,7 @@ $VERSION = '1.09';
'Vibrant (Color Film) or Expressive (My Color)' => 'Vibrant (Colour Film) or Expressive (My Colour)',
},
},
+ 'CustomColorTone' => 'Custom Colour Tone',
'D-LightingHQColorBoost' => 'D-Lighting HQ Colour Boost',
'D-LightingHSColorBoost' => 'D-Lighting HS Colour Boost',
'DefHilite' => 'Use Default Highlight Colour',
@@ -499,7 +555,13 @@ $VERSION = '1.09';
'FlagColor' => 'Flag Colour',
'FlashColorFilter' => 'Flash Colour Filter',
'FocalPlaneColorimetryEstimates' => 'Focal Plane Colourimetry Estimates',
+ 'GammaColorTone' => 'Gamma Colour Tone',
'GenOpColor' => 'Gen Op Colour',
+ 'GenreID' => {
+ PrintConv => {
+ 'Books|Kids|Basic Concepts|Colors' => 'Books|Kids|Basic Concepts|Colours',
+ },
+ },
'GreenPaletteColorTableData' => 'Green Palette Colour Table Data',
'GreenPaletteColorTableDescriptor' => 'Green Palette Colour Table Descriptor',
'HasColorMap' => 'Has Colour Map',
@@ -542,6 +604,13 @@ $VERSION = '1.09';
'MagicFilter' => {
PrintConv => {
'Pale & Light Color' => 'Pale & Light Colour',
+ 'Pale & Light Color II' => 'Pale & Light Colour II',
+ 'Partial Color' => 'Partial Colour',
+ 'Partial Color II' => 'Partial Colour II',
+ 'Partial Color III' => 'Partial Colour III',
+ 'Watercolor' => 'Watercolour',
+ 'Watercolor I' => 'Watercolour I',
+ 'Watercolor II' => 'Watercolour II',
},
},
'MandatoryBackground' => {
@@ -635,6 +704,13 @@ $VERSION = '1.09';
'RawDevArtFilter' => {
PrintConv => {
'Pale & Light Color' => 'Pale & Light Colour',
+ 'Pale & Light Color II' => 'Pale & Light Colour II',
+ 'Partial Color' => 'Partial Colour',
+ 'Partial Color II' => 'Partial Colour II',
+ 'Partial Color III' => 'Partial Colour III',
+ 'Watercolor' => 'Watercolour',
+ 'Watercolor I' => 'Watercolour I',
+ 'Watercolor II' => 'Watercolour II',
},
},
'RawDevColorSpace' => 'Raw Dev Colour Space',
@@ -730,6 +806,7 @@ $VERSION = '1.09';
},
},
'TextColor' => 'Text Colour',
+ 'ToneCurveColorSpace' => 'Tone Curve Colour Space',
'ToningEffect' => {
PrintConv => {
'Color' => 'Colour',
@@ -773,20 +850,29 @@ $VERSION = '1.09';
'WBAdjColorTemp' => 'WB Adj Colour Temp',
'WBAdjLighting' => {
PrintConv => {
- 'High Color Rendering Fluorescent (warm white)' => 'High Colour Rendering Fluorescent (0)',
'High Color Rendering Fluorescent (3700K)' => 'High Colour Rendering Fluorescent (1)',
- 'High Color Rendering Fluorescent (cool white)' => 'High Colour Rendering Fluorescent (2)',
'High Color Rendering Fluorescent (5000K)' => 'High Colour Rendering Fluorescent (3)',
+ 'High Color Rendering Fluorescent (cool white)' => 'High Colour Rendering Fluorescent (2)',
'High Color Rendering Fluorescent (daylight)' => 'High Colour Rendering Fluorescent (4)',
+ 'High Color Rendering Fluorescent (warm white)' => 'High Colour Rendering Fluorescent (0)',
'Sodium Vapor Lamps' => 'Sodium Vapour Lamps',
+ 'Standard Fluorescent (high temperature mercury vapor)' => 'Standard Fluorescent (high temperature mercury vapour)',
},
},
+ 'WatercolorFilter' => 'Watercolour Filter',
'WhiteBalance' => {
PrintConv => {
+ 'Color Filter' => 'Colour Filter',
+ 'Color Temperature' => 'Colour Temperature',
'Color Temperature Enhancement' => 'Colour Temperature Enhancement',
'Color Temperature/Color Filter' => 'Colour Temperature/Colour Filter',
},
},
+ 'WhiteBalance2' => {
+ PrintConv => {
+ 'Auto (Keep Warm Color Off)' => 'Auto (Keep Warm Colour Off)',
+ },
+ },
'WhiteBalanceSet' => {
PrintConv => {
'Set Color Temperature 1' => 'Set Colour Temperature 1',
diff --git a/lib/Image/ExifTool/Lang/en_gb.pm b/lib/Image/ExifTool/Lang/en_gb.pm
index 445cdaef..57081037 100644
--- a/lib/Image/ExifTool/Lang/en_gb.pm
+++ b/lib/Image/ExifTool/Lang/en_gb.pm
@@ -11,10 +11,21 @@ package Image::ExifTool::Lang::en_gb;
use strict;
use vars qw($VERSION);
-$VERSION = '1.09';
+$VERSION = '1.10';
%Image::ExifTool::Lang::en_gb::Translate = (
'AboveColor' => 'Above Colour',
+ 'AdvancedFilter' => {
+ PrintConv => {
+ 'Partial Color Blue' => 'Partial Colour Blue',
+ 'Partial Color Green' => 'Partial Colour Green',
+ 'Partial Color Orange' => 'Partial Colour Orange',
+ 'Partial Color Purple' => 'Partial Colour Purple',
+ 'Partial Color Red' => 'Partial Colour Red',
+ 'Partial Color Yellow' => 'Partial Colour Yellow',
+ 'Pop Color' => 'Pop Colour',
+ },
+ },
'AdvancedSceneMode' => {
PrintConv => {
'Color Select' => 'Colour Select',
@@ -28,13 +39,28 @@ $VERSION = '1.09';
'ArtFilter' => {
PrintConv => {
'Pale & Light Color' => 'Pale & Light Colour',
+ 'Pale & Light Color II' => 'Pale & Light Colour II',
+ 'Partial Color' => 'Partial Colour',
+ 'Partial Color II' => 'Partial Colour II',
+ 'Partial Color III' => 'Partial Colour III',
+ 'Watercolor' => 'Watercolour',
+ 'Watercolor I' => 'Watercolour I',
+ 'Watercolor II' => 'Watercolour II',
},
},
'ArtFilterEffect' => {
PrintConv => {
'Pale & Light Color' => 'Pale & Light Colour',
+ 'Pale & Light Color II' => 'Pale & Light Colour II',
+ 'Partial Color' => 'Partial Colour',
+ 'Partial Color II' => 'Partial Colour II',
+ 'Partial Color III' => 'Partial Colour III',
+ 'Watercolor' => 'Watercolour',
+ 'Watercolor I' => 'Watercolour I',
+ 'Watercolor II' => 'Watercolour II',
},
},
+ 'AudioIsInitialized' => 'Audio Is Initialised',
'AutoLightingOptimizer' => 'Auto Lighting Optimiser',
'AutoLightingOptimizerOn' => 'Auto Lighting Optimiser On',
'BackgroundColor' => 'Background Colour',
@@ -76,7 +102,17 @@ $VERSION = '1.09';
'CanonColorInfo1' => 'Canon Colour Info 1',
'CanonColorInfo2' => 'Canon Colour Info 2',
'ChromaticityColorant' => 'Chromaticity Colourant',
- 'Color' => 'Colour',
+ 'CodingMethods' => {
+ PrintConv => {
+ 'JBIG color' => 'JBIG colour',
+ },
+ },
+ 'Color' => {
+ Description => 'Colour',
+ PrintConv => {
+ 'Color' => 'Colour',
+ },
+ },
'ColorAberrationControl' => 'Colour Aberration Control',
'ColorAdjustment' => 'Colour Adjustment',
'ColorAdjustmentMode' => 'Colour Adjustment Mode',
@@ -91,6 +127,7 @@ $VERSION = '1.09';
'ColorBalanceVersion' => 'Colour Balance Version',
'ColorBitDepth' => 'Colour Bit Depth',
'ColorBlur' => 'Colour Blur',
+ 'ColorBlurOn' => 'Colour Blur On',
'ColorBoostLevel' => 'Colour Boost Level',
'ColorBoostType' => 'Colour Boost Type',
'ColorBooster' => 'Colour Booster',
@@ -99,6 +136,7 @@ $VERSION = '1.09';
'ColorCharacterization' => 'Colour Characterization',
'ColorClass' => 'Colour Class',
'ColorCompensationFilter' => 'Colour Compensation Filter',
+ 'ColorCompensationFilterCustom' => 'Colour Compensation Filter Custom',
'ColorCompensationFilterSet' => 'Colour Compensation Filter Set',
'ColorComponents' => 'Colour Components',
'ColorControl' => 'Colour Control',
@@ -156,9 +194,15 @@ $VERSION = '1.09';
'ColorResponseUnit' => 'Colour Response Unit',
'ColorSamplersResource' => 'Colour Samplers Resource',
'ColorSamplersResource2' => 'Colour Samplers Resource 2',
+ 'ColorSaturationAdj' => 'Colour Saturation Adj',
'ColorSequence' => 'Colour Sequence',
'ColorSiting' => 'Colour Siting',
- 'ColorSpace' => 'Colour Space',
+ 'ColorSpace' => {
+ Description => 'Colour Space',
+ PrintConv => {
+ 'No color space specified' => 'No colour space specified',
+ },
+ },
'ColorSpaceData' => 'Colour Space Data',
'ColorSpecApproximation' => 'Colour Spec Approximation',
'ColorSpecData' => 'Colour Spec Data',
@@ -204,7 +248,17 @@ $VERSION = '1.09';
'ColorTempUnknown19' => 'Colour Temp Unknown 19',
'ColorTempUnknown2' => 'Colour Temp Unknown 2',
'ColorTempUnknown20' => 'Colour Temp Unknown 20',
+ 'ColorTempUnknown21' => 'Colour Temp Unknown 21',
+ 'ColorTempUnknown22' => 'Colour Temp Unknown 22',
+ 'ColorTempUnknown23' => 'Colour Temp Unknown 23',
+ 'ColorTempUnknown24' => 'Colour Temp Unknown 24',
+ 'ColorTempUnknown25' => 'Colour Temp Unknown 25',
+ 'ColorTempUnknown26' => 'Colour Temp Unknown 26',
+ 'ColorTempUnknown27' => 'Colour Temp Unknown 27',
+ 'ColorTempUnknown28' => 'Colour Temp Unknown 28',
+ 'ColorTempUnknown29' => 'Colour Temp Unknown 29',
'ColorTempUnknown3' => 'Colour Temp Unknown 3',
+ 'ColorTempUnknown30' => 'Colour Temp Unknown 30',
'ColorTempUnknown4' => 'Colour Temp Unknown 4',
'ColorTempUnknown5' => 'Colour Temp Unknown 5',
'ColorTempUnknown6' => 'Colour Temp Unknown 6',
@@ -214,7 +268,9 @@ $VERSION = '1.09';
'ColorTemperature' => 'Colour Temperature',
'ColorTemperatureAdj' => 'Colour Temperature Adj',
'ColorTemperatureBG' => 'Colour Temperature BG',
+ 'ColorTemperatureCustom' => 'Colour Temperature Custom',
'ColorTemperatureRG' => 'Colour Temperature RG',
+ 'ColorTemperatureSet' => 'Colour Temperature Set',
'ColorTemperatureSetting' => {
Description => 'Colour Temperature Setting',
PrintConv => {
@@ -289,11 +345,17 @@ $VERSION = '1.09';
'Vibrant (Color Film) or Expressive (My Color)' => 'Vibrant (Colour Film) or Expressive (My Colour)',
},
},
+ 'CustomColorTone' => 'Custom Colour Tone',
'D-LightingHQColorBoost' => 'D-Lighting HQ Colour Boost',
'D-LightingHSColorBoost' => 'D-Lighting HS Colour Boost',
+ 'D-RangeOptimizerHighlight' => 'D-Range Optimiser Highlight',
+ 'D-RangeOptimizerMode' => 'D-Range Optimiser Mode',
+ 'D-RangeOptimizerShadow' => 'D-Range Optimiser Shadow',
+ 'D-RangeOptimizerValue' => 'D-Range Optimiser Value',
'DateTimeDigitized' => 'Date/Time Digitised',
'DefHilite' => 'Use Default Highlight Colour',
'DefaultImageColor' => 'Default Image Colour',
+ 'DefineQuantizationTable' => 'Define Quantisation Table',
'DeltaType' => {
PrintConv => {
'Color Addition' => 'Colour Addition',
@@ -465,7 +527,23 @@ $VERSION = '1.09';
'meters' => 'Metres',
},
},
+ 'DriveMode' => {
+ PrintConv => {
+ 'D-Range Optimizer Bracketing High' => 'D-Range Optimiser Bracketing High',
+ 'D-Range Optimizer Bracketing Low' => 'D-Range Optimiser Bracketing Low',
+ },
+ },
+ 'DriveMode2' => {
+ PrintConv => {
+ 'D-Range Optimizer Bracketing High' => 'D-Range Optimiser Bracketing High',
+ 'D-Range Optimizer Bracketing Low' => 'D-Range Optimiser Bracketing Low',
+ },
+ },
'DynamicRangeOptimizer' => 'Dynamic Range Optimiser',
+ 'DynamicRangeOptimizerBracket' => 'Dynamic Range Optimiser Bracket',
+ 'DynamicRangeOptimizerLevel' => 'Dynamic Range Optimiser Level',
+ 'DynamicRangeOptimizerMode' => 'Dynamic Range Optimiser Mode',
+ 'DynamicRangeOptimizerSetting' => 'Dynamic Range Optimiser Setting',
'EasyMode' => {
PrintConv => {
'Color Accent' => 'Colour Accent',
@@ -509,7 +587,13 @@ $VERSION = '1.09';
'FlagColor' => 'Flag Colour',
'FlashColorFilter' => 'Flash Colour Filter',
'FocalPlaneColorimetryEstimates' => 'Focal Plane Colourimetry Estimates',
+ 'GammaColorTone' => 'Gamma Colour Tone',
'GenOpColor' => 'Gen Op Colour',
+ 'GenreID' => {
+ PrintConv => {
+ 'Books|Kids|Basic Concepts|Colors' => 'Books|Kids|Basic Concepts|Colours',
+ },
+ },
'GreenPaletteColorTableData' => 'Green Palette Colour Table Data',
'GreenPaletteColorTableDescriptor' => 'Green Palette Colour Table Descriptor',
'HasColorMap' => 'Has Colour Map',
@@ -554,6 +638,13 @@ $VERSION = '1.09';
'MagicFilter' => {
PrintConv => {
'Pale & Light Color' => 'Pale & Light Colour',
+ 'Pale & Light Color II' => 'Pale & Light Colour II',
+ 'Partial Color' => 'Partial Colour',
+ 'Partial Color II' => 'Partial Colour II',
+ 'Partial Color III' => 'Partial Colour III',
+ 'Watercolor' => 'Watercolour',
+ 'Watercolor I' => 'Watercolour I',
+ 'Watercolor II' => 'Watercolour II',
},
},
'MandatoryBackground' => {
@@ -635,6 +726,7 @@ $VERSION = '1.09';
},
},
'PseudoColorType' => 'Pseudo Colour Type',
+ 'QuantizationDefault' => 'Quantisation Default',
'QuantizationMethod' => {
Description => 'Quantisation Method',
PrintConv => {
@@ -648,6 +740,13 @@ $VERSION = '1.09';
'RawDevArtFilter' => {
PrintConv => {
'Pale & Light Color' => 'Pale & Light Colour',
+ 'Pale & Light Color II' => 'Pale & Light Colour II',
+ 'Partial Color' => 'Partial Colour',
+ 'Partial Color II' => 'Partial Colour II',
+ 'Partial Color III' => 'Partial Colour III',
+ 'Watercolor' => 'Watercolour',
+ 'Watercolor I' => 'Watercolour I',
+ 'Watercolor II' => 'Watercolour II',
},
},
'RawDevColorSpace' => 'Raw Dev Colour Space',
@@ -744,6 +843,7 @@ $VERSION = '1.09';
},
},
'TextColor' => 'Text Colour',
+ 'ToneCurveColorSpace' => 'Tone Curve Colour Space',
'ToningEffect' => {
PrintConv => {
'Color' => 'Colour',
@@ -788,20 +888,29 @@ $VERSION = '1.09';
'WBAdjColorTemp' => 'WB Adj Colour Temp',
'WBAdjLighting' => {
PrintConv => {
- 'High Color Rendering Fluorescent (warm white)' => 'High Colour Rendering Fluorescent (0)',
'High Color Rendering Fluorescent (3700K)' => 'High Colour Rendering Fluorescent (1)',
- 'High Color Rendering Fluorescent (cool white)' => 'High Colour Rendering Fluorescent (2)',
'High Color Rendering Fluorescent (5000K)' => 'High Colour Rendering Fluorescent (3)',
+ 'High Color Rendering Fluorescent (cool white)' => 'High Colour Rendering Fluorescent (2)',
'High Color Rendering Fluorescent (daylight)' => 'High Colour Rendering Fluorescent (4)',
+ 'High Color Rendering Fluorescent (warm white)' => 'High Colour Rendering Fluorescent (0)',
'Sodium Vapor Lamps' => 'Sodium Vapour Lamps',
+ 'Standard Fluorescent (high temperature mercury vapor)' => 'Standard Fluorescent (high temperature mercury vapour)',
},
},
+ 'WatercolorFilter' => 'Watercolour Filter',
'WhiteBalance' => {
PrintConv => {
+ 'Color Filter' => 'Colour Filter',
+ 'Color Temperature' => 'Colour Temperature',
'Color Temperature Enhancement' => 'Colour Temperature Enhancement',
'Color Temperature/Color Filter' => 'Colour Temperature/Colour Filter',
},
},
+ 'WhiteBalance2' => {
+ PrintConv => {
+ 'Auto (Keep Warm Color Off)' => 'Auto (Keep Warm Colour Off)',
+ },
+ },
'WhiteBalanceSet' => {
PrintConv => {
'Set Color Temperature 1' => 'Set Colour Temperature 1',
diff --git a/lib/Image/ExifTool/MIE.pm b/lib/Image/ExifTool/MIE.pm
index 73e931e2..897f0029 100644
--- a/lib/Image/ExifTool/MIE.pm
+++ b/lib/Image/ExifTool/MIE.pm
@@ -14,7 +14,7 @@ use Image::ExifTool qw(:DataAccess :Utils);
use Image::ExifTool::Exif;
use Image::ExifTool::GPS;
-$VERSION = '1.44';
+$VERSION = '1.45';
sub ProcessMIE($$);
sub ProcessMIEGroup($$$);
@@ -1242,7 +1242,7 @@ sub WriteMIEGroup($$$)
and not $$nvHash{EditOnly}));
}
# get the new value to write (undef to delete)
- push @newVals, $et->GetNewValues($nvHash);
+ push @newVals, $et->GetNewValue($nvHash);
next unless @newVals;
$writable = $$newInfo{Writable} || $$tagTablePtr{WRITABLE};
if ($writable eq 'string') {
diff --git a/lib/Image/ExifTool/MPF.pm b/lib/Image/ExifTool/MPF.pm
index b3ff859d..5d2df26f 100644
--- a/lib/Image/ExifTool/MPF.pm
+++ b/lib/Image/ExifTool/MPF.pm
@@ -15,7 +15,7 @@ use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
use Image::ExifTool::Exif;
-$VERSION = '1.11';
+$VERSION = '1.12';
sub ProcessMPImageList($$$);
@@ -191,8 +191,8 @@ sub ExtractMPImages($)
for ($i=1; $xtra or not defined $xtra; ++$i) {
# run through MP images in the same order they were extracted
$xtra = defined $$et{VALUE}{"MPImageStart ($i)"} ? " ($i)" : '';
- my $off = $et->GetValue("MPImageStart$xtra");
- my $len = $et->GetValue("MPImageLength$xtra");
+ my $off = $et->GetValue("MPImageStart$xtra", 'ValueConv');
+ my $len = $et->GetValue("MPImageLength$xtra", 'ValueConv');
if ($off and $len) {
my $type = $et->GetValue("MPImageType$xtra", 'ValueConv');
my $tag = "MPImage$i";
diff --git a/lib/Image/ExifTool/MakerNotes.pm b/lib/Image/ExifTool/MakerNotes.pm
index de84a98d..a8dc9dab 100644
--- a/lib/Image/ExifTool/MakerNotes.pm
+++ b/lib/Image/ExifTool/MakerNotes.pm
@@ -481,6 +481,16 @@ my $debug; # set to 1 to enable debugging code
Notes => 'not EXIF-based',
},
{
+ Name => 'MakerNoteMotorola',
+ Condition => '$$valPt=~/^MOT\0/',
+ SubDirectory => {
+ TagTable => 'Image::ExifTool::Motorola::Main',
+ Start => '$valuePtr + 8',
+ Base => '$start - 8',
+ ByteOrder => 'Unknown',
+ },
+ },
+ {
# older Nikon maker notes
Name => 'MakerNoteNikon2',
Condition => '$$valPt=~/^Nikon\x00\x01/',
@@ -1649,7 +1659,7 @@ sub WriteUnknownOrPreview($$$)
if ($dirLen > 6 and substr($$dataPt, $dirStart, 3) eq "\xff\xd8\xff") {
if ($$et{NEW_VALUE}{$Image::ExifTool::Extra{PreviewImage}}) {
# write or delete new preview (if deleted, it can't currently be added back again)
- $newVal = $et->GetNewValues('PreviewImage') || '';
+ $newVal = $et->GetNewValue('PreviewImage') || '';
if ($et->Options('Verbose') > 1) {
$et->VerboseValue("- MakerNotes:PreviewImage", substr($$dataPt, $dirStart, $dirLen));
$et->VerboseValue("+ MakerNotes:PreviewImage", $newVal) if $newVal;
diff --git a/lib/Image/ExifTool/Motorola.pm b/lib/Image/ExifTool/Motorola.pm
new file mode 100644
index 00000000..aa32e8a5
--- /dev/null
+++ b/lib/Image/ExifTool/Motorola.pm
@@ -0,0 +1,62 @@
+#------------------------------------------------------------------------------
+# File: Motorola.pm
+#
+# Description: Read Motorola meta information
+#
+# Revisions: 2015/10/29 - P. Harvey Created
+#------------------------------------------------------------------------------
+
+package Image::ExifTool::Motorola;
+
+use strict;
+use vars qw($VERSION);
+use Image::ExifTool::Exif;
+
+$VERSION = '1.00';
+
+# Motorola makernotes tags (ref PH)
+%Image::ExifTool::Motorola::Main = (
+ WRITE_PROC => \&Image::ExifTool::Exif::WriteExif,
+ CHECK_PROC => \&Image::ExifTool::Exif::CheckExif,
+ GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
+ WRITABLE => 1,
+ # 0x5570 - some sort of picture mode (auto,hdr)
+ # 0x6400 - HDR? (OFF,ON)
+ # 0x6410 - HDR? (NO,YES)
+ # 0x6420 - only exists in HDR images
+ 0x665e => { Name => 'Sensor', Writable => 'string' }, # (eg. "BACK,IMX230")
+ # 0x6700 - serial number?
+ 0x6705 => { Name => 'ManufactureDate', Writable => 'string' }, # (NC, eg. "03Jun2015")
+ # 0x6706 - serial number?
+);
+
+1; # end
+
+__END__
+
+=head1 NAME
+
+Image::ExifTool::Motorola - Read Motorola meta information
+
+=head1 SYNOPSIS
+
+This module is loaded automatically by Image::ExifTool when required.
+
+=head1 DESCRIPTION
+
+This module contains the definitions to read meta information from Motorola
+cell phone images.
+
+=head1 AUTHOR
+
+Copyright 2003-2015, Phil Harvey (phil at owl.phy.queensu.ca)
+
+This library is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+=head1 SEE ALSO
+
+L<Image::ExifTool::TagNames/Motorola Tags>,
+L<Image::ExifTool(3pm)|Image::ExifTool>
+
+=cut
diff --git a/lib/Image/ExifTool/Nikon.pm b/lib/Image/ExifTool/Nikon.pm
index bd9cd730..4f0b3475 100644
--- a/lib/Image/ExifTool/Nikon.pm
+++ b/lib/Image/ExifTool/Nikon.pm
@@ -58,7 +58,7 @@ use vars qw($VERSION %nikonLensIDs %nikonTextEncoding);
use Image::ExifTool qw(:DataAccess :Utils);
use Image::ExifTool::Exif;
-$VERSION = '3.11';
+$VERSION = '3.12';
sub LensIDConv($$$);
sub ProcessNikonAVI($$$);
@@ -285,7 +285,6 @@ sub GetAFPointGrid($$;$);
'AD 3C 2D 8E 2C 3C AF 0E' => 'AF-S DX Nikkor 18-300mm f/3.5-5.6G ED VR',
'AE 54 62 62 0C 0C B0 06' => 'AF-S Nikkor 85mm f/1.4G',
'AF 54 44 44 0C 0C B1 06' => 'AF-S Nikkor 35mm f/1.4G',
- 'AF 4C 37 37 14 14 CC 06' => 'AF-S Nikkor 24mm f/1.8G ED', #33
'B0 4C 50 50 14 14 B2 06' => 'AF-S Nikkor 50mm f/1.8G',
'B1 48 48 48 24 24 B3 06' => 'AF-S DX Micro Nikkor 40mm f/2.8G', #27
'B2 48 5C 80 30 30 B4 0E' => 'AF-S Nikkor 70-200mm f/4G ED VR', #35
@@ -305,7 +304,9 @@ sub GetAFPointGrid($$;$);
'A9 4C 31 31 14 14 C4 06' => 'AF-S Nikkor 20mm f/1.8G ED', #30
'AA 48 37 5C 24 24 C5 4E' => 'AF-S Nikkor 24-70mm f/2.8E ED VR',
'AD 48 28 60 24 30 C8 4E' => 'AF-S VR DX 16-80mm f/2.8-4.0E ED',
+ 'AE 3C 80 A0 3C 3C C9 4E' => 'AF-S Nikkor 200-500mm f/5.6E ED VR', #PH
'AE 3C 80 A0 3C 3C C9 0E' => 'AF-S Nikkor 200-500mm f/5.6E ED VR',
+ 'AF 4C 37 37 14 14 CC 06' => 'AF-S Nikkor 24mm f/1.8G ED', #33
'01 00 00 00 00 00 02 00' => 'TC-16A',
'01 00 00 00 00 00 08 00' => 'TC-16A',
'00 00 00 00 00 00 F1 0C' => 'TC-14E [II] or Sigma APO Tele Converter 1.4x EX DG or Kenko Teleplus PRO 300 DG 1.4x',
@@ -599,8 +600,11 @@ sub GetAFPointGrid($$;$);
'00 54 72 72 18 18 00 00' => 'Carl Zeiss Apo Sonnar T* 2/135 ZF.2',
'00 54 53 53 0C 0C 00 00' => 'Zeiss Otus 1.4/55', #33
'01 54 62 62 0C 0C 00 00' => 'Zeiss Otus 1.4/85',
+ '52 54 44 44 18 18 00 00' => 'Zeiss Milvus 35mm f/2',
'53 54 50 50 0C 0C 00 00' => 'Zeiss Milvus 50mm f/1.4', #33
+ '54 54 50 50 18 18 00 00' => 'Zeiss Milvus 50mm f/2 Macro',
'55 54 62 62 0C 0C 00 00' => 'Zeiss Milvus 85mm f/1.4', #33
+ '56 54 68 68 18 18 00 00' => 'Zeiss Milvus 100mm f/2 Macro',
#
'00 54 56 56 30 30 00 00' => 'Coastal Optical Systems 60mm 1:4 UV-VIS-IR Macro Apo',
#
@@ -6675,8 +6679,8 @@ sub ProcessNikon($$$)
my $rtnVal;
if ($$dirInfo{IsWriting}) {
# get new decryptino keys if they are being changed
- my $serial = $et->GetNewValues($Image::ExifTool::Nikon::Main{0x001d});
- my $count = $et->GetNewValues($Image::ExifTool::Nikon::Main{0x00a7});
+ my $serial = $et->GetNewValue($Image::ExifTool::Nikon::Main{0x001d});
+ my $count = $et->GetNewValue($Image::ExifTool::Nikon::Main{0x00a7});
$$et{NewNikonSerialKey} = SerialKey($et, $serial);
$$et{NewNikonCountKey} = $count;
$rtnVal = Image::ExifTool::Exif::WriteExif($et, $dirInfo, $tagTablePtr);
diff --git a/lib/Image/ExifTool/NikonCapture.pm b/lib/Image/ExifTool/NikonCapture.pm
index 028230b0..a0e7845d 100644
--- a/lib/Image/ExifTool/NikonCapture.pm
+++ b/lib/Image/ExifTool/NikonCapture.pm
@@ -18,7 +18,7 @@ use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
use Image::ExifTool::Exif;
-$VERSION = '1.13';
+$VERSION = '1.14';
sub ProcessNikonCapture($$$);
@@ -770,7 +770,7 @@ sub WriteNikonCapture($$$)
my $oldVal = ReadValue($dataPt,$pos+22,$format,1,$size);
my $nvHash = $et->GetNewValueHash($tagInfo);
if ($et->IsOverwriting($nvHash, $oldVal)) {
- my $val = $et->GetNewValues($tagInfo);
+ my $val = $et->GetNewValue($tagInfo);
$newVal = WriteValue($val, $$tagInfo{Writable}) if defined $val;
if (defined $newVal and length $newVal) {
++$$et{CHANGED};
diff --git a/lib/Image/ExifTool/PNG.pm b/lib/Image/ExifTool/PNG.pm
index 4d348664..0b152c26 100644
--- a/lib/Image/ExifTool/PNG.pm
+++ b/lib/Image/ExifTool/PNG.pm
@@ -26,7 +26,7 @@ use strict;
use vars qw($VERSION $AUTOLOAD);
use Image::ExifTool qw(:DataAccess :Utils);
-$VERSION = '1.35';
+$VERSION = '1.36';
sub ProcessPNG_tEXt($$$);
sub ProcessPNG_iTXt($$$);
@@ -723,7 +723,7 @@ sub FoundPNG($$$$;$$$$)
my $nvHash = $et->GetNewValueHash($tagInfo);
$isOverwriting = $et->IsOverwriting($nvHash);
if (defined $deflateErr) {
- $newVal = $et->GetNewValues($nvHash);
+ $newVal = $et->GetNewValue($nvHash);
# can only write tag now if always overwriting
if ($isOverwriting > 0) {
$val = '<deflate error>';
@@ -736,7 +736,7 @@ sub FoundPNG($$$$;$$$$)
$isOverwriting = $et->IsOverwriting($nvHash, $val);
}
# (must get new value after IsOverwriting() in case it was shifted)
- $newVal = $et->GetNewValues($nvHash);
+ $newVal = $et->GetNewValue($nvHash);
}
}
if ($isOverwriting) {
diff --git a/lib/Image/ExifTool/PPM.pm b/lib/Image/ExifTool/PPM.pm
index 4200a079..981090b7 100644
--- a/lib/Image/ExifTool/PPM.pm
+++ b/lib/Image/ExifTool/PPM.pm
@@ -16,7 +16,7 @@ use strict;
use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
-$VERSION = '1.07';
+$VERSION = '1.08';
#------------------------------------------------------------------------------
# Read or write information in a PPM/PGM/PBM image
@@ -85,7 +85,7 @@ sub ProcessPPM($$)
#
if ($outfile) {
my $nvHash;
- my $newComment = $et->GetNewValues('Comment', \$nvHash);
+ my $newComment = $et->GetNewValue('Comment', \$nvHash);
my $oldComment = $info{Comment};
if ($et->IsOverwriting($nvHash, $oldComment)) {
++$$et{CHANGED};
diff --git a/lib/Image/ExifTool/Pentax.pm b/lib/Image/ExifTool/Pentax.pm
index 2f527269..45f74db2 100644
--- a/lib/Image/ExifTool/Pentax.pm
+++ b/lib/Image/ExifTool/Pentax.pm
@@ -56,7 +56,7 @@ use vars qw($VERSION %pentaxLensTypes);
use Image::ExifTool::Exif;
use Image::ExifTool::HP;
-$VERSION = '2.96';
+$VERSION = '2.97';
sub CryptShutterCount($$);
sub PrintFilter($$$);
@@ -511,6 +511,7 @@ my %pentaxModelID = (
0x13024 => 'K-S2', #29 (Ricoh)
0x1302e => 'Q-S1',
0x13056 => 'WG-30', # (Ricoh)
+ 0x1307e => 'WG-30W', # (Ricoh)
0x13088 => 'WG-5 GPS', # (Ricoh)
0x1309c => 'K-3 II', #29 (Ricoh)
);
diff --git a/lib/Image/ExifTool/QuickTime.pm b/lib/Image/ExifTool/QuickTime.pm
index 75deb868..308030cd 100644
--- a/lib/Image/ExifTool/QuickTime.pm
+++ b/lib/Image/ExifTool/QuickTime.pm
@@ -41,7 +41,7 @@ use vars qw($VERSION $AUTOLOAD);
use Image::ExifTool qw(:DataAccess :Utils);
use Image::ExifTool::Exif;
-$VERSION = '1.92';
+$VERSION = '1.93';
sub FixWrongFormat($);
sub ProcessMOV($$;$);
@@ -5539,7 +5539,7 @@ my %graphicsMode = (
my $size = $val[0];
for (;;) {
$key = $self->NextTagKey($key) or last;
- $size += $self->GetValue($key);
+ $size += $self->GetValue($key, 'ValueConv');
}
return int($size * 8 / $val[1] + 0.5);
},
diff --git a/lib/Image/ExifTool/Shortcuts.pm b/lib/Image/ExifTool/Shortcuts.pm
index 6f013795..efb4e7c1 100644
--- a/lib/Image/ExifTool/Shortcuts.pm
+++ b/lib/Image/ExifTool/Shortcuts.pm
@@ -19,7 +19,7 @@ package Image::ExifTool::Shortcuts;
use strict;
use vars qw($VERSION);
-$VERSION = '1.56';
+$VERSION = '1.57';
# this is a special table used to define command-line shortcuts
# (documentation Notes may be added for these via %shortcutNotes in BuildTagLookup.pm)
@@ -149,6 +149,7 @@ $VERSION = '1.56';
'MakerNoteMinolta',
'MakerNoteMinolta2',
'MakerNoteMinolta3',
+ 'MakerNoteMotorola',
'MakerNoteNikon',
'MakerNoteNikon2',
'MakerNoteNikon3',
diff --git a/lib/Image/ExifTool/Sony.pm b/lib/Image/ExifTool/Sony.pm
index 90b7ef1c..c0080e3c 100644
--- a/lib/Image/ExifTool/Sony.pm
+++ b/lib/Image/ExifTool/Sony.pm
@@ -31,7 +31,7 @@ use Image::ExifTool qw(:DataAccess :Utils);
use Image::ExifTool::Exif;
use Image::ExifTool::Minolta;
-$VERSION = '2.26';
+$VERSION = '2.27';
sub ProcessSRF($$$);
sub ProcessSR2($$$);
@@ -101,6 +101,7 @@ my %sonyLensTypes2 = (
49216 => 'Zeiss Batis 25mm F2', #JR
49217 => 'Zeiss Batis 85mm F1.8', #JR
+ 49234 => 'Zeiss Loxia 21mm f/2.8', #PH
);
# ExposureProgram values (ref PH, mainly decoded from A200)
diff --git a/lib/Image/ExifTool/SonyIDC.pm b/lib/Image/ExifTool/SonyIDC.pm
index d4a9bd21..d39429c9 100644
--- a/lib/Image/ExifTool/SonyIDC.pm
+++ b/lib/Image/ExifTool/SonyIDC.pm
@@ -11,8 +11,9 @@ package Image::ExifTool::SonyIDC;
use strict;
use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
+use Image::ExifTool::Exif;
-$VERSION = '1.04';
+$VERSION = '1.05';
# Sony IDC tags (ref PH)
%Image::ExifTool::SonyIDC::Main = (
@@ -273,8 +274,8 @@ sub ExtractPreviews($)
next;
}
# run through IDC preview images in the same order they were extracted
- my $off = $et->GetValue($key) or last;
- my $len = $et->GetValue("IDCPreviewLength$xtra") or last;
+ my $off = $et->GetValue($key, 'ValueConv') or last;
+ my $len = $et->GetValue("IDCPreviewLength$xtra", 'ValueConv') or last;
# get stack version from number in group 1 name
my $grp1 = $et->GetGroup($key, 1);
if ($grp1 =~ /(\d+)$/) {
diff --git a/lib/Image/ExifTool/TagLookup.pm b/lib/Image/ExifTool/TagLookup.pm
index cb5c28d8..6a2de8e4 100644
--- a/lib/Image/ExifTool/TagLookup.pm
+++ b/lib/Image/ExifTool/TagLookup.pm
@@ -198,6 +198,7 @@ my @tableList = (
'Image::ExifTool::MinoltaRaw::PRD',
'Image::ExifTool::MinoltaRaw::RIF',
'Image::ExifTool::MinoltaRaw::WBG',
+ 'Image::ExifTool::Motorola::Main',
'Image::ExifTool::Nikon::AFInfo',
'Image::ExifTool::Nikon::AFInfo2',
'Image::ExifTool::Nikon::AFTune',
@@ -462,446 +463,446 @@ my @tableList = (
# lookup for all writable tags
my %tagLookup = (
'aberrationcorrectiondistance' => { 96 => 0x69 },
- 'about' => { 413 => 'about' },
- 'aboutcvterm' => { 404 => 'AboutCvTerm' },
- 'aboutcvtermcvid' => { 404 => [\'AboutCvTerm','AboutCvTermCvId'] },
- 'aboutcvtermid' => { 404 => [\'AboutCvTerm','AboutCvTermCvTermId'] },
- 'aboutcvtermname' => { 404 => [\'AboutCvTerm','AboutCvTermCvTermName'] },
- 'aboutcvtermrefinedabout' => { 404 => [\'AboutCvTerm','AboutCvTermCvTermRefinedAbout'] },
- 'abspeakaudiofilepath' => { 419 => 'absPeakAudioFilePath' },
+ 'about' => { 414 => 'about' },
+ 'aboutcvterm' => { 405 => 'AboutCvTerm' },
+ 'aboutcvtermcvid' => { 405 => [\'AboutCvTerm','AboutCvTermCvId'] },
+ 'aboutcvtermid' => { 405 => [\'AboutCvTerm','AboutCvTermCvTermId'] },
+ 'aboutcvtermname' => { 405 => [\'AboutCvTerm','AboutCvTermCvTermName'] },
+ 'aboutcvtermrefinedabout' => { 405 => [\'AboutCvTerm','AboutCvTermCvTermRefinedAbout'] },
+ 'abspeakaudiofilepath' => { 420 => 'absPeakAudioFilePath' },
'accelerationtracking' => { 72 => 0x518 },
- 'accelerometer' => { 326 => 0x3 },
- 'accelerometerx' => { 267 => 0x8d },
- 'accelerometery' => { 267 => 0x8e },
- 'accelerometerz' => { 267 => 0x8c },
- 'accessoryserialnumber' => { 267 => 0x54 },
- 'accessorytype' => { 267 => 0x53 },
- 'acedemicfield' => { 409 => 'acedemicField' },
+ 'accelerometer' => { 327 => 0x3 },
+ 'accelerometerx' => { 268 => 0x8d },
+ 'accelerometery' => { 268 => 0x8e },
+ 'accelerometerz' => { 268 => 0x8c },
+ 'accessoryserialnumber' => { 268 => 0x54 },
+ 'accessorytype' => { 268 => 0x53 },
+ 'acedemicfield' => { 410 => 'acedemicField' },
'actionadvised' => { 112 => 0x2a },
'activearea' => { 104 => 0xc68d },
- 'actived-lighting' => { 191 => 0x22, 225 => 0x24 },
- 'actived-lightingmode' => { 225 => 0x25 },
+ 'actived-lighting' => { 192 => 0x22, 226 => 0x24 },
+ 'actived-lightingmode' => { 226 => 0x25 },
'adaptervoltage' => { 118 => 0x407 },
'addaspectratioinfo' => { 72 => 0x80e },
- 'additionalmodelinformation' => { 404 => 'AddlModelInfo' },
+ 'additionalmodelinformation' => { 405 => 'AddlModelInfo' },
'addoriginaldecisiondata' => { 72 => 0x80f, 73 => 0x11, 74 => 0x13, 77 => 0x14 },
'address' => { 139 => 'Address' },
- 'adjustmentmode' => { 332 => 0x15 },
+ 'adjustmentmode' => { 333 => 0x15 },
'adobe' => { 105 => 'Adobe' },
- 'adultcontentwarning' => { 407 => 'AdultContentWarning', 412 => 'adultContentWarning' },
+ 'adultcontentwarning' => { 408 => 'AdultContentWarning', 413 => 'adultContentWarning' },
'advancedfilter' => { 109 => 0x1201 },
- 'advancedraw' => { 227 => 0x76a43203 },
- 'advancedscenetype' => { 267 => 0x3d },
- 'advisory' => { 417 => 'Advisory' },
- 'ae_iso' => { 274 => 0x2, 275 => 0x4, 276 => 0x12 },
- 'aeaperture' => { 274 => 0x1, 275 => 0x3, 276 => 0x11 },
- 'aeaperturesteps' => { 274 => 0x8, 275 => 0xb },
+ 'advancedraw' => { 228 => 0x76a43203 },
+ 'advancedscenetype' => { 268 => 0x3d },
+ 'advisory' => { 418 => 'Advisory' },
+ 'ae_iso' => { 275 => 0x2, 276 => 0x4, 277 => 0x12 },
+ 'aeaperture' => { 275 => 0x1, 276 => 0x3, 277 => 0x11 },
+ 'aeaperturesteps' => { 275 => 0x8, 276 => 0xb },
'aebautocancel' => { 72 => 0x104 },
'aebbracketvalue' => { 66 => 0x11 },
'aebsequence' => { 72 => 0x105 },
'aebsequenceautocancel' => { 70 => 0x9, 71 => 0x9, 73 => 0x8, 74 => 0x9, 77 => 0x9, 78 => 0x7 },
'aebshotcount' => { 72 => 0x106 },
- 'aebxv' => { 274 => 0x4, 275 => 0x6 },
- 'aeerror' => { 275 => 0x8 },
- 'aeexposuretime' => { 274 => 0x0, 275 => 0x2, 276 => 0x10 },
+ 'aebxv' => { 275 => 0x4, 276 => 0x6 },
+ 'aeerror' => { 276 => 0x8 },
+ 'aeexposuretime' => { 275 => 0x0, 276 => 0x2, 277 => 0x10 },
'aelbutton' => { 159 => 0x45 },
'aelexposureindicator' => { 159 => 0x51 },
- 'aelock' => { 159 => 0x5b, 236 => '4.2', 242 => '4.2', 247 => 0x201, 300 => 0x48, 339 => 0x40, 340 => 0x40, 341 => [0x86,0x286] },
- 'aelockbutton' => { 234 => '16.1', 236 => '4.1', 237 => '15.1', 238 => '16.1', 239 => '16.1', 240 => '30.1', 241 => '16.1', 242 => '4.1', 244 => '17.1', 245 => '17.1' },
- 'aelockbuttonplusdials' => { 234 => '16.2', 240 => '32.1', 244 => '44.1' },
- 'aelockformb-d80' => { 245 => '3.1' },
- 'aemaxaperture' => { 274 => 0x9, 275 => 0x10, 276 => 0x1c },
- 'aemaxaperture2' => { 274 => 0xa, 275 => 0x11, 276 => 0x1d },
- 'aemeteringmode' => { 274 => 0xc },
- 'aemeteringmode2' => { 274 => '13.1' },
- 'aemeteringsegments' => { 162 => 0x628, 300 => 0x209 },
+ 'aelock' => { 159 => 0x5b, 237 => '4.2', 243 => '4.2', 248 => 0x201, 301 => 0x48, 340 => 0x40, 341 => 0x40, 342 => [0x86,0x286] },
+ 'aelockbutton' => { 235 => '16.1', 237 => '4.1', 238 => '15.1', 239 => '16.1', 240 => '16.1', 241 => '30.1', 242 => '16.1', 243 => '4.1', 245 => '17.1', 246 => '17.1' },
+ 'aelockbuttonplusdials' => { 235 => '16.2', 241 => '32.1', 245 => '44.1' },
+ 'aelockformb-d80' => { 246 => '3.1' },
+ 'aemaxaperture' => { 275 => 0x9, 276 => 0x10, 277 => 0x1c },
+ 'aemaxaperture2' => { 275 => 0xa, 276 => 0x11, 277 => 0x1d },
+ 'aemeteringmode' => { 275 => 0xc },
+ 'aemeteringmode2' => { 275 => '13.1' },
+ 'aemeteringsegments' => { 162 => 0x628, 301 => 0x209 },
'aemicroadjustment' => { 72 => 0x110 },
- 'aeminaperture' => { 274 => 0xb, 275 => 0x12, 276 => 0x1e },
- 'aeminexposuretime' => { 274 => 0x5, 275 => 0x13, 276 => 0x1f },
- 'aeprogrammode' => { 274 => 0x6 },
- 'aeprojectlink' => { 393 => 'aeProjectLink' },
- 'aeprojectlinkcompositionid' => { 393 => [\'aeProjectLink','aeProjectLinkCompositionID'] },
- 'aeprojectlinkfullpath' => { 393 => [\'aeProjectLink','aeProjectLinkFullPath'] },
- 'aeprojectlinkrenderoutputmoduleindex' => { 393 => [\'aeProjectLink','aeProjectLinkRenderOutputModuleIndex'] },
- 'aeprojectlinkrenderqueueitemid' => { 393 => [\'aeProjectLink','aeProjectLinkRenderQueueItemID'] },
- 'aeprojectlinkrendertimestamp' => { 393 => [\'aeProjectLink','aeProjectLinkRenderTimeStamp'] },
+ 'aeminaperture' => { 275 => 0xb, 276 => 0x12, 277 => 0x1e },
+ 'aeminexposuretime' => { 275 => 0x5, 276 => 0x13, 277 => 0x1f },
+ 'aeprogrammode' => { 275 => 0x6 },
+ 'aeprojectlink' => { 394 => 'aeProjectLink' },
+ 'aeprojectlinkcompositionid' => { 394 => [\'aeProjectLink','aeProjectLinkCompositionID'] },
+ 'aeprojectlinkfullpath' => { 394 => [\'aeProjectLink','aeProjectLinkFullPath'] },
+ 'aeprojectlinkrenderoutputmoduleindex' => { 394 => [\'aeProjectLink','aeProjectLinkRenderOutputModuleIndex'] },
+ 'aeprojectlinkrenderqueueitemid' => { 394 => [\'aeProjectLink','aeProjectLinkRenderQueueItemID'] },
+ 'aeprojectlinkrendertimestamp' => { 394 => [\'aeProjectLink','aeProjectLinkRenderTimeStamp'] },
'aesetting' => { 30 => 0x21 },
- 'aewhitebalance' => { 274 => 0xd },
- 'aexv' => { 274 => 0x3, 275 => 0x5 },
- 'af-cpriorityselection' => { 234 => '1.1', 235 => '1.1', 238 => '0.1', 239 => '0.1', 240 => '1.1', 241 => '0.1', 244 => '1.1' },
- 'af-onformb-d10' => { 234 => '3.3', 240 => '3.2' },
- 'af-onformb-d11' => { 241 => '2.2' },
- 'af-onformb-d12' => { 244 => '50.1' },
- 'af-spriorityselection' => { 234 => '1.2', 235 => '1.2', 240 => '1.2', 241 => '0.2', 244 => '1.2' },
+ 'aewhitebalance' => { 275 => 0xd },
+ 'aexv' => { 275 => 0x3, 276 => 0x5 },
+ 'af-cpriorityselection' => { 235 => '1.1', 236 => '1.1', 239 => '0.1', 240 => '0.1', 241 => '1.1', 242 => '0.1', 245 => '1.1' },
+ 'af-onformb-d10' => { 235 => '3.3', 241 => '3.2' },
+ 'af-onformb-d11' => { 242 => '2.2' },
+ 'af-onformb-d12' => { 245 => '50.1' },
+ 'af-spriorityselection' => { 235 => '1.2', 236 => '1.2', 241 => '1.2', 242 => '0.2', 245 => '1.2' },
'afacceldeceltracking' => { 2 => 0x3 },
- 'afactivation' => { 234 => '2.1', 235 => '2.1', 240 => '2.1', 244 => '2.1' },
- 'afadjustment' => { 300 => 0x72 },
+ 'afactivation' => { 235 => '2.1', 236 => '2.1', 241 => '2.1', 245 => '2.1' },
+ 'afadjustment' => { 301 => 0x72 },
'afandmeteringbuttons' => { 72 => 0x701 },
- 'afaperture' => { 187 => 0x5, 188 => 0x5 },
- 'afareaheight' => { 167 => 0x1a },
- 'afareaillumination' => { 159 => 0x4b, 242 => '15.3' },
- 'afareamode' => { 155 => 0x33, 159 => 0xe, 166 => 0x0, 167 => 0x5, 267 => 0xf, 323 => 0x1205, 333 => [0xa,0x3a], 339 => 0x11, 340 => 0x10, 341 => 0x24, 351 => 0xb043, 370 => 0x17 },
- 'afareamodesetting' => { 236 => '11.1', 237 => '0.1', 242 => '16.1', 245 => '2.1', 351 => 0x201c },
- 'afareas' => { 247 => 0x304 },
+ 'afaperture' => { 188 => 0x5, 189 => 0x5 },
+ 'afareaheight' => { 168 => 0x1a },
+ 'afareaillumination' => { 159 => 0x4b, 243 => '15.3' },
+ 'afareamode' => { 155 => 0x33, 159 => 0xe, 167 => 0x0, 168 => 0x5, 268 => 0xf, 324 => 0x1205, 334 => [0xa,0x3a], 340 => 0x11, 341 => 0x10, 342 => 0x24, 352 => 0xb043, 371 => 0x17 },
+ 'afareamodesetting' => { 237 => '11.1', 238 => '0.1', 243 => '16.1', 246 => '2.1', 352 => 0x201c },
+ 'afareas' => { 248 => 0x304 },
'afareaselectmethod' => { 72 => 0x51b },
- 'afareawidth' => { 167 => 0x18 },
- 'afareaxposition' => { 167 => 0x14, 323 => 0x1203 },
- 'afareaxposition1' => { 323 => 0x1201 },
- 'afareayposition' => { 167 => 0x16, 323 => 0x1204 },
- 'afareayposition1' => { 323 => 0x1202 },
- 'afassist' => { 70 => 0x5, 78 => 0x5, 159 => 0x48, 234 => '2.5', 236 => '0.2', 237 => '0.2', 238 => '1.1', 239 => '1.1', 240 => '2.4', 241 => '1.4', 242 => '0.2', 244 => '2.4', 245 => '2.3' },
+ 'afareawidth' => { 168 => 0x18 },
+ 'afareaxposition' => { 168 => 0x14, 324 => 0x1203 },
+ 'afareaxposition1' => { 324 => 0x1201 },
+ 'afareayposition' => { 168 => 0x16, 324 => 0x1204 },
+ 'afareayposition1' => { 324 => 0x1202 },
+ 'afassist' => { 70 => 0x5, 78 => 0x5, 159 => 0x48, 235 => '2.5', 237 => '0.2', 238 => '0.2', 239 => '1.1', 240 => '1.1', 241 => '2.4', 242 => '1.4', 243 => '0.2', 245 => '2.4', 246 => '2.3' },
'afassistbeam' => { 72 => 0x50e, 73 => 0x4, 74 => 0x5, 75 => 0x4, 76 => 0x4, 77 => 0x5 },
- 'afassistlamp' => { 267 => 0x31 },
- 'afbuttonpressed' => { 341 => [0x83,0x283] },
+ 'afassistlamp' => { 268 => 0x31 },
+ 'afbuttonpressed' => { 342 => [0x83,0x283] },
'afconfigtool' => { 2 => 0x1 },
- 'afdefocus' => { 277 => 0x6 },
+ 'afdefocus' => { 278 => 0x6 },
'afduringliveview' => { 72 => 0x511 },
- 'affinea' => { 387 => 'AffineA' },
- 'affineb' => { 387 => 'AffineB' },
- 'affinec' => { 387 => 'AffineC' },
- 'affined' => { 387 => 'AffineD' },
- 'affinetune' => { 168 => 0x0, 247 => 0x306 },
- 'affinetuneadj' => { 168 => 0x2, 200 => 0x2d1, 201 => 0x2dc, 247 => 0x307 },
- 'affinetuneindex' => { 168 => 0x1 },
- 'affinex' => { 387 => 'AffineX' },
- 'affiney' => { 387 => 'AffineY' },
- 'afhold' => { 277 => 0x1fd },
- 'afilluminator' => { 339 => 0x29, 351 => 0xb044 },
- 'afimageheight' => { 167 => 0x12 },
- 'afimagewidth' => { 167 => 0x10 },
- 'afintegrationtime' => { 277 => 0x7 },
- 'afmicroadj' => { 333 => [0x17d,0x50] },
- 'afmicroadjmode' => { 3 => 0x1, 336 => 0x131 },
- 'afmicroadjregisteredlenses' => { 336 => '305.1' },
+ 'affinea' => { 388 => 'AffineA' },
+ 'affineb' => { 388 => 'AffineB' },
+ 'affinec' => { 388 => 'AffineC' },
+ 'affined' => { 388 => 'AffineD' },
+ 'affinetune' => { 169 => 0x0, 248 => 0x306 },
+ 'affinetuneadj' => { 169 => 0x2, 201 => 0x2d1, 202 => 0x2dc, 248 => 0x307 },
+ 'affinetuneindex' => { 169 => 0x1 },
+ 'affinex' => { 388 => 'AffineX' },
+ 'affiney' => { 388 => 'AffineY' },
+ 'afhold' => { 278 => 0x1fd },
+ 'afilluminator' => { 340 => 0x29, 352 => 0xb044 },
+ 'afimageheight' => { 168 => 0x12 },
+ 'afimagewidth' => { 168 => 0x10 },
+ 'afintegrationtime' => { 278 => 0x7 },
+ 'afmicroadj' => { 334 => [0x17d,0x50] },
+ 'afmicroadjmode' => { 3 => 0x1, 337 => 0x131 },
+ 'afmicroadjregisteredlenses' => { 337 => '305.1' },
'afmicroadjustment' => { 72 => 0x507 },
- 'afmicroadjvalue' => { 3 => 0x2, 336 => 0x130 },
- 'afmode' => { 100 => 0x3009, 109 => 0x1022, 155 => 0x16, 332 => 0x5 },
- 'afmoderestrictions' => { 235 => '50.3', 244 => '48.3' },
+ 'afmicroadjvalue' => { 3 => 0x2, 337 => 0x130 },
+ 'afmode' => { 100 => 0x3009, 109 => 0x1022, 155 => 0x16, 333 => 0x5 },
+ 'afmoderestrictions' => { 236 => '50.3', 245 => '48.3' },
'afonaelockbuttonswitch' => { 72 => 0x702 },
- 'afonbutton' => { 234 => '3.1', 235 => '47.1' },
- 'afpoint' => { 30 => 0x13, 99 => 0x18, 155 => 0x15, 166 => 0x1, 250 => 0x308, 332 => 0x1f, 333 => 0x7, 336 => 0x19, 337 => 0x18, 338 => [0x18,0x20] },
+ 'afonbutton' => { 235 => '3.1', 236 => '47.1' },
+ 'afpoint' => { 30 => 0x13, 99 => 0x18, 155 => 0x15, 167 => 0x1, 251 => 0x308, 333 => 0x1f, 334 => 0x7, 337 => 0x19, 338 => 0x18, 339 => [0x18,0x20] },
'afpointactivationarea' => { 71 => 0x11, 77 => 0x11 },
'afpointareaexpansion' => { 72 => 0x508 },
- 'afpointatshutterrelease' => { 333 => 0x9 },
+ 'afpointatshutterrelease' => { 334 => 0x9 },
'afpointautoselection' => { 72 => 0x50b },
- 'afpointbrightness' => { 72 => 0x50d, 234 => '2.4', 235 => '46.5', 244 => '2.3' },
+ 'afpointbrightness' => { 72 => 0x50d, 235 => '2.4', 236 => '46.5', 245 => '2.3' },
'afpointdisplayduringfocus' => { 72 => 0x50c },
- 'afpointillumination' => { 71 => 0xa, 234 => '2.3', 235 => '46.2', 240 => '2.3', 241 => '1.3', 244 => '47.2', 245 => '2.4' },
- 'afpointinfocus' => { 333 => 0x8 },
- 'afpointmode' => { 281 => 0x3 },
- 'afpointposition' => { 100 => 0x2021, 267 => 0x4d },
+ 'afpointillumination' => { 71 => 0xa, 235 => '2.3', 236 => '46.2', 241 => '2.3', 242 => '1.3', 245 => '47.2', 246 => '2.4' },
+ 'afpointinfocus' => { 334 => 0x8 },
+ 'afpointmode' => { 282 => 0x3 },
+ 'afpointposition' => { 100 => 0x2021, 268 => 0x4d },
'afpointregistration' => { 70 => 0x7 },
'afpoints' => { 158 => 0x10 },
- 'afpointselected' => { 159 => 0xd, 247 => 0x305, 300 => 0xe, 336 => 0x15, 337 => 0x14, 338 => [0x14,0x1c], 351 => 0x201e },
- 'afpointselected2' => { 281 => 0x4 },
- 'afpointselection' => { 71 => 0xb, 234 => '1.3', 235 => '1.3', 240 => '1.3', 244 => '1.3' },
+ 'afpointselected' => { 159 => 0xd, 248 => 0x305, 301 => 0xe, 337 => 0x15, 338 => 0x14, 339 => [0x14,0x1c], 352 => 0x201e },
+ 'afpointselected2' => { 282 => 0x4 },
+ 'afpointselection' => { 71 => 0xb, 235 => '1.3', 236 => '1.3', 241 => '1.3', 245 => '1.3' },
'afpointselectionmethod' => { 72 => 0x50f, 73 => 0xc, 74 => 0xd, 77 => 0xd },
- 'afpointsetting' => { 339 => 0x12, 340 => 0x11 },
- 'afpointsinfocus' => { 66 => 0xe, 166 => 0x2, 277 => 0xb, 300 => [0xf,0x3c] },
+ 'afpointsetting' => { 340 => 0x12, 341 => 0x11 },
+ 'afpointsinfocus' => { 66 => 0xe, 167 => 0x2, 278 => 0xb, 301 => [0xf,0x3c] },
'afpointsinfocus5d' => { 18 => 0x38 },
'afpointspotmetering' => { 71 => 0xd },
- 'afpointsselected' => { 377 => 0x4 },
- 'afpointsunknown1' => { 277 => 0x0 },
- 'afpointsunknown2' => { 277 => 0x2 },
- 'afpointsused' => { 167 => 0x8, 333 => 0x16e },
+ 'afpointsselected' => { 378 => 0x4 },
+ 'afpointsunknown1' => { 278 => 0x0 },
+ 'afpointsunknown2' => { 278 => 0x2 },
+ 'afpointsused' => { 168 => 0x8, 334 => 0x16e },
'afpointswitching' => { 2 => 0x4 },
- 'afpredictor' => { 277 => 0x4 },
- 'afresponse' => { 191 => 0xad },
- 'afresult' => { 252 => 0x1038 },
- 'afsearch' => { 247 => 0x303 },
+ 'afpredictor' => { 278 => 0x4 },
+ 'afresponse' => { 192 => 0xad },
+ 'afresult' => { 253 => 0x1038 },
+ 'afsearch' => { 248 => 0x303 },
'afsensoractive' => { 155 => 0x1 },
- 'afstatus' => { 323 => 0x1200 },
- 'afstatusactivesensor' => { 155 => 0x2, 333 => 0x4, 336 => 0x1e, 337 => 0x1b, 338 => [0x1b,0x21] },
- 'afstatusbottom' => { 155 => 0x8, 336 => 0x2a, 337 => 0x21, 338 => 0x21 },
- 'afstatusbottom-left' => { 155 => 0x12, 337 => 0x2b, 338 => 0x2b },
- 'afstatusbottom-right' => { 155 => 0x6, 337 => 0x1f, 338 => 0x1f },
- 'afstatusbottomassist-left' => { 336 => 0x28 },
- 'afstatusbottomassist-right' => { 336 => 0x2c },
- 'afstatusbottomhorizontal' => { 334 => 0x10, 335 => 0x1c },
- 'afstatusbottomvertical' => { 334 => 0x16, 335 => 0x26 },
- 'afstatuscenter-10' => { 336 => 0x34 },
- 'afstatuscenter-11' => { 336 => 0x36 },
- 'afstatuscenter-12' => { 336 => 0x38 },
- 'afstatuscenter-14' => { 336 => 0x3c },
- 'afstatuscenter-7' => { 336 => 0x2e },
- 'afstatuscenter-9' => { 336 => 0x32 },
- 'afstatuscenter-horizontal' => { 336 => 0x30 },
- 'afstatuscenter-vertical' => { 336 => 0x3a },
- 'afstatuscenterf2-8' => { 336 => 0x4c },
- 'afstatuscenterhorizontal' => { 155 => 0x2f, 334 => 0xc, 335 => 0x18, 337 => 0x2f, 338 => 0x2f },
- 'afstatuscentervertical' => { 155 => 0xc, 334 => 0x14, 335 => 0x22, 337 => 0x25, 338 => 0x25 },
- 'afstatusfarleft' => { 334 => 0x6, 336 => 0x26 },
- 'afstatusfarlefthorizontal' => { 335 => 0x4 },
- 'afstatusfarleftvertical' => { 335 => 0x12 },
- 'afstatusfarright' => { 334 => 0x18, 336 => 0x44 },
- 'afstatusfarrighthorizontal' => { 335 => 0x2c },
- 'afstatusfarrightvertical' => { 335 => 0x34 },
- 'afstatusleft' => { 155 => 0x2d, 334 => 0x2, 336 => 0x22, 337 => 0x2d, 338 => 0x2d },
- 'afstatuslefthorizontal' => { 335 => 0x6 },
- 'afstatusleftvertical' => { 335 => 0xe },
- 'afstatuslower-left' => { 334 => 0x4, 336 => 0x24 },
- 'afstatuslower-lefthorizontal' => { 335 => 0xa },
- 'afstatuslower-leftvertical' => { 335 => 0x10 },
- 'afstatuslower-middle' => { 334 => 0x22, 335 => 0x24 },
- 'afstatuslower-right' => { 334 => 0x1e, 336 => 0x4a },
- 'afstatuslower-righthorizontal' => { 335 => 0x32 },
- 'afstatuslower-rightvertical' => { 335 => 0x3a },
- 'afstatuslowerfarleft' => { 335 => 0x8 },
- 'afstatuslowerfarright' => { 335 => 0x30 },
- 'afstatusmiddlehorizontal' => { 155 => 0xa, 337 => 0x23, 338 => 0x23 },
- 'afstatusnearleft' => { 334 => 0xe, 335 => 0x1a },
- 'afstatusnearright' => { 334 => 0xa, 335 => 0x16 },
- 'afstatusright' => { 155 => 0x31, 334 => 0x1c, 336 => 0x48, 337 => 0x31, 338 => 0x31 },
- 'afstatusrighthorizontal' => { 335 => 0x2e },
- 'afstatusrightvertical' => { 335 => 0x38 },
- 'afstatustop' => { 155 => 0xe, 336 => 0x40, 337 => 0x27, 338 => 0x27 },
- 'afstatustop-left' => { 155 => 0x10, 337 => 0x29, 338 => 0x29 },
- 'afstatustop-right' => { 155 => 0x4, 337 => 0x1d, 338 => 0x1d },
- 'afstatustopassist-left' => { 336 => 0x3e },
- 'afstatustopassist-right' => { 336 => 0x42 },
- 'afstatustophorizontal' => { 334 => 0x8, 335 => 0x14 },
- 'afstatustopvertical' => { 334 => 0x12, 335 => 0x1e },
- 'afstatusupper-left' => { 334 => 0x0, 336 => 0x20 },
- 'afstatusupper-lefthorizontal' => { 335 => 0x2 },
- 'afstatusupper-leftvertical' => { 335 => 0xc },
- 'afstatusupper-middle' => { 334 => 0x20, 335 => 0x20 },
- 'afstatusupper-right' => { 334 => 0x1a, 336 => 0x46 },
- 'afstatusupper-righthorizontal' => { 335 => 0x2a },
- 'afstatusupper-rightvertical' => { 335 => 0x36 },
- 'afstatusupperfarleft' => { 335 => 0x0 },
- 'afstatusupperfarright' => { 335 => 0x28 },
+ 'afstatus' => { 324 => 0x1200 },
+ 'afstatusactivesensor' => { 155 => 0x2, 334 => 0x4, 337 => 0x1e, 338 => 0x1b, 339 => [0x1b,0x21] },
+ 'afstatusbottom' => { 155 => 0x8, 337 => 0x2a, 338 => 0x21, 339 => 0x21 },
+ 'afstatusbottom-left' => { 155 => 0x12, 338 => 0x2b, 339 => 0x2b },
+ 'afstatusbottom-right' => { 155 => 0x6, 338 => 0x1f, 339 => 0x1f },
+ 'afstatusbottomassist-left' => { 337 => 0x28 },
+ 'afstatusbottomassist-right' => { 337 => 0x2c },
+ 'afstatusbottomhorizontal' => { 335 => 0x10, 336 => 0x1c },
+ 'afstatusbottomvertical' => { 335 => 0x16, 336 => 0x26 },
+ 'afstatuscenter-10' => { 337 => 0x34 },
+ 'afstatuscenter-11' => { 337 => 0x36 },
+ 'afstatuscenter-12' => { 337 => 0x38 },
+ 'afstatuscenter-14' => { 337 => 0x3c },
+ 'afstatuscenter-7' => { 337 => 0x2e },
+ 'afstatuscenter-9' => { 337 => 0x32 },
+ 'afstatuscenter-horizontal' => { 337 => 0x30 },
+ 'afstatuscenter-vertical' => { 337 => 0x3a },
+ 'afstatuscenterf2-8' => { 337 => 0x4c },
+ 'afstatuscenterhorizontal' => { 155 => 0x2f, 335 => 0xc, 336 => 0x18, 338 => 0x2f, 339 => 0x2f },
+ 'afstatuscentervertical' => { 155 => 0xc, 335 => 0x14, 336 => 0x22, 338 => 0x25, 339 => 0x25 },
+ 'afstatusfarleft' => { 335 => 0x6, 337 => 0x26 },
+ 'afstatusfarlefthorizontal' => { 336 => 0x4 },
+ 'afstatusfarleftvertical' => { 336 => 0x12 },
+ 'afstatusfarright' => { 335 => 0x18, 337 => 0x44 },
+ 'afstatusfarrighthorizontal' => { 336 => 0x2c },
+ 'afstatusfarrightvertical' => { 336 => 0x34 },
+ 'afstatusleft' => { 155 => 0x2d, 335 => 0x2, 337 => 0x22, 338 => 0x2d, 339 => 0x2d },
+ 'afstatuslefthorizontal' => { 336 => 0x6 },
+ 'afstatusleftvertical' => { 336 => 0xe },
+ 'afstatuslower-left' => { 335 => 0x4, 337 => 0x24 },
+ 'afstatuslower-lefthorizontal' => { 336 => 0xa },
+ 'afstatuslower-leftvertical' => { 336 => 0x10 },
+ 'afstatuslower-middle' => { 335 => 0x22, 336 => 0x24 },
+ 'afstatuslower-right' => { 335 => 0x1e, 337 => 0x4a },
+ 'afstatuslower-righthorizontal' => { 336 => 0x32 },
+ 'afstatuslower-rightvertical' => { 336 => 0x3a },
+ 'afstatuslowerfarleft' => { 336 => 0x8 },
+ 'afstatuslowerfarright' => { 336 => 0x30 },
+ 'afstatusmiddlehorizontal' => { 155 => 0xa, 338 => 0x23, 339 => 0x23 },
+ 'afstatusnearleft' => { 335 => 0xe, 336 => 0x1a },
+ 'afstatusnearright' => { 335 => 0xa, 336 => 0x16 },
+ 'afstatusright' => { 155 => 0x31, 335 => 0x1c, 337 => 0x48, 338 => 0x31, 339 => 0x31 },
+ 'afstatusrighthorizontal' => { 336 => 0x2e },
+ 'afstatusrightvertical' => { 336 => 0x38 },
+ 'afstatustop' => { 155 => 0xe, 337 => 0x40, 338 => 0x27, 339 => 0x27 },
+ 'afstatustop-left' => { 155 => 0x10, 338 => 0x29, 339 => 0x29 },
+ 'afstatustop-right' => { 155 => 0x4, 338 => 0x1d, 339 => 0x1d },
+ 'afstatustopassist-left' => { 337 => 0x3e },
+ 'afstatustopassist-right' => { 337 => 0x42 },
+ 'afstatustophorizontal' => { 335 => 0x8, 336 => 0x14 },
+ 'afstatustopvertical' => { 335 => 0x12, 336 => 0x1e },
+ 'afstatusupper-left' => { 335 => 0x0, 337 => 0x20 },
+ 'afstatusupper-lefthorizontal' => { 336 => 0x2 },
+ 'afstatusupper-leftvertical' => { 336 => 0xc },
+ 'afstatusupper-middle' => { 335 => 0x20, 336 => 0x20 },
+ 'afstatusupper-right' => { 335 => 0x1a, 337 => 0x46 },
+ 'afstatusupper-righthorizontal' => { 336 => 0x2a },
+ 'afstatusupper-rightvertical' => { 336 => 0x36 },
+ 'afstatusupperfarleft' => { 336 => 0x0 },
+ 'afstatusupperfarright' => { 336 => 0x28 },
'aftrackingsensitivity' => { 2 => 0x2 },
- 'aftype' => { 333 => 0x2 },
- 'afwithshutter' => { 339 => 0x2a },
- 'afzoneselected' => { 351 => 0x201e },
- 'aggregateissuenumber' => { 409 => 'aggregateIssueNumber' },
- 'aggregationtype' => { 409 => 'aggregationType' },
- 'agreement' => { 412 => 'agreement' },
+ 'aftype' => { 334 => 0x2 },
+ 'afwithshutter' => { 340 => 0x2a },
+ 'afzoneselected' => { 352 => 0x201e },
+ 'aggregateissuenumber' => { 410 => 'aggregateIssueNumber' },
+ 'aggregationtype' => { 410 => 'aggregationType' },
+ 'agreement' => { 413 => 'agreement' },
'aiservocontinuousshooting' => { 71 => 0x15 },
'aiservofirstimagepriority' => { 72 => 0x519 },
'aiservoimagepriority' => { 72 => 0x503 },
'aiservosecondimagepriority' => { 72 => 0x51a },
'aiservotrackingmethod' => { 72 => 0x504 },
'aiservotrackingsensitivity' => { 71 => 0x14, 72 => 0x502 },
- 'album' => { 419 => 'album' },
- 'alreadyapplied' => { 394 => 'AlreadyApplied' },
- 'alternatetitle' => { 409 => 'alternateTitle' },
- 'alternatetitlea-lang' => { 409 => [\'alternateTitle','alternateTitleA-lang'] },
- 'alternatetitlea-platform' => { 409 => [\'alternateTitle','alternateTitleA-platform'] },
- 'alternatetitletext' => { 409 => [\'alternateTitle','alternateTitleText'] },
- 'altitude' => { 169 => 0x6 },
- 'alttapename' => { 419 => 'altTapeName' },
- 'alttimecode' => { 419 => 'altTimecode' },
- 'alttimecodetimeformat' => { 419 => [\'altTimecode','altTimecodeTimeFormat'] },
- 'alttimecodetimevalue' => { 419 => [\'altTimecode','altTimecodeTimeValue'] },
- 'alttimecodevalue' => { 419 => [\'altTimecode','altTimecodeValue'] },
+ 'album' => { 420 => 'album' },
+ 'alreadyapplied' => { 395 => 'AlreadyApplied' },
+ 'alternatetitle' => { 410 => 'alternateTitle' },
+ 'alternatetitlea-lang' => { 410 => [\'alternateTitle','alternateTitleA-lang'] },
+ 'alternatetitlea-platform' => { 410 => [\'alternateTitle','alternateTitleA-platform'] },
+ 'alternatetitletext' => { 410 => [\'alternateTitle','alternateTitleText'] },
+ 'altitude' => { 170 => 0x6 },
+ 'alttapename' => { 420 => 'altTapeName' },
+ 'alttimecode' => { 420 => 'altTimecode' },
+ 'alttimecodetimeformat' => { 420 => [\'altTimecode','altTimecodeTimeFormat'] },
+ 'alttimecodetimevalue' => { 420 => [\'altTimecode','altTimecodeTimeValue'] },
+ 'alttimecodevalue' => { 420 => [\'altTimecode','altTimecodeValue'] },
'ambienceselection' => { 4 => 0x1 },
- 'ambienttemperature' => { 319 => 0x14, 370 => 0x4 },
- 'ambienttemperaturefahrenheit' => { 319 => 0x13 },
+ 'ambienttemperature' => { 320 => 0x14, 371 => 0x4 },
+ 'ambienttemperaturefahrenheit' => { 320 => 0x13 },
'analogbalance' => { 104 => 0xc627 },
'angleadj' => { 90 => 0x10003, 96 => 0x8b },
- 'angleinforoll' => { 389 => 'AngleInfoRoll' },
- 'angleinfoyaw' => { 389 => 'AngleInfoYaw' },
- 'anti-blur' => { 351 => 0xb04b },
+ 'angleinforoll' => { 390 => 'AngleInfoRoll' },
+ 'angleinfoyaw' => { 390 => 'AngleInfoYaw' },
+ 'anti-blur' => { 352 => 0xb04b },
'antialiasstrength' => { 104 => 0xc632 },
- 'aperturelock' => { 235 => '38.2', 244 => '38.2' },
+ 'aperturelock' => { 236 => '38.2', 245 => '38.2' },
'aperturerange' => { 72 => 0x10d },
- 'apertureringuse' => { 281 => '1.4' },
- 'aperturesetting' => { 159 => 0x7, 339 => 0x30, 340 => 0x29, 341 => 0x1 },
- 'aperturevalue' => { 81 => 0x2, 104 => 0x9202, 252 => 0x1002, 398 => 'ApertureValue' },
- 'applekeywords' => { 256 => 'AAPL:Keywords' },
- 'applicationnotes' => { 104 => 0x2bc, 271 => 0x2bc },
+ 'apertureringuse' => { 282 => '1.4' },
+ 'aperturesetting' => { 159 => 0x7, 340 => 0x30, 341 => 0x29, 342 => 0x1 },
+ 'aperturevalue' => { 81 => 0x2, 104 => 0x9202, 253 => 0x1002, 399 => 'ApertureValue' },
+ 'applekeywords' => { 257 => 'AAPL:Keywords' },
+ 'applicationnotes' => { 104 => 0x2bc, 272 => 0x2bc },
'applicationrecordversion' => { 112 => 0x0 },
'applyshootingmeteringmode' => { 72 => 0x10e },
- 'approved' => { 400 => 'Approved' },
- 'approvedby' => { 400 => 'ApprovedBy' },
- 'approximatefnumber' => { 263 => 0x313, 269 => 0x3406 },
- 'approximatefocusdistance' => { 390 => 'ApproximateFocusDistance' },
+ 'approved' => { 401 => 'Approved' },
+ 'approvedby' => { 401 => 'ApprovedBy' },
+ 'approximatefnumber' => { 264 => 0x313, 270 => 0x3406 },
+ 'approximatefocusdistance' => { 391 => 'ApproximateFocusDistance' },
'aquahsl' => { 90 => 0x20913 },
'armidentifier' => { 113 => 0x78 },
'armversion' => { 113 => 0x7a },
- 'artfilter' => { 247 => 0x529 },
- 'artfiltereffect' => { 247 => 0x52f },
- 'artist' => { 104 => 0x13b, 259 => 'Artist', 300 => 0x22e, 415 => 'Artist', 419 => 'artist' },
+ 'artfilter' => { 248 => 0x529 },
+ 'artfiltereffect' => { 248 => 0x52f },
+ 'artist' => { 104 => 0x13b, 260 => 'Artist', 301 => 0x22e, 416 => 'Artist', 420 => 'artist' },
'artmode' => { 100 => 0x301b },
'artmodeparameters' => { 100 => 0x310b },
- 'artworkcircadatecreated' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAOCircaDateCreated'] },
- 'artworkcontributiondescription' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAOContributionDescription'] },
- 'artworkcopyrightnotice' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAOCopyrightNotice'] },
- 'artworkcopyrightownerid' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerId'] },
- 'artworkcopyrightownername' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerName'] },
- 'artworkcreator' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAOCreator'] },
- 'artworkcreatorid' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAOCreatorId'] },
- 'artworkdatecreated' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAODateCreated'] },
- 'artworklicensorid' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorId'] },
- 'artworklicensorname' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorName'] },
- 'artworkorobject' => { 404 => 'ArtworkOrObject' },
- 'artworkphysicaldescription' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAOPhysicalDescription'] },
- 'artworkscontentdescription' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAOContentDescription'] },
- 'artworksource' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAOSource'] },
- 'artworksourceinventoryno' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvNo'] },
- 'artworksourceinvurl' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvURL'] },
- 'artworkstyleperiod' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAOStylePeriod'] },
- 'artworktitle' => { 404 => [\'ArtworkOrObject','ArtworkOrObjectAOTitle'] },
- 'aspectframe' => { 251 => 0x1113 },
- 'aspectratio' => { 5 => 0x0, 251 => 0x1112, 300 => 0x80, 339 => 0x55, 340 => 0x55, 341 => 0xa },
+ 'artworkcircadatecreated' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAOCircaDateCreated'] },
+ 'artworkcontributiondescription' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAOContributionDescription'] },
+ 'artworkcopyrightnotice' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAOCopyrightNotice'] },
+ 'artworkcopyrightownerid' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerId'] },
+ 'artworkcopyrightownername' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentCopyrightOwnerName'] },
+ 'artworkcreator' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAOCreator'] },
+ 'artworkcreatorid' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAOCreatorId'] },
+ 'artworkdatecreated' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAODateCreated'] },
+ 'artworklicensorid' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorId'] },
+ 'artworklicensorname' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAOCurrentLicensorName'] },
+ 'artworkorobject' => { 405 => 'ArtworkOrObject' },
+ 'artworkphysicaldescription' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAOPhysicalDescription'] },
+ 'artworkscontentdescription' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAOContentDescription'] },
+ 'artworksource' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAOSource'] },
+ 'artworksourceinventoryno' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvNo'] },
+ 'artworksourceinvurl' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAOSourceInvURL'] },
+ 'artworkstyleperiod' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAOStylePeriod'] },
+ 'artworktitle' => { 405 => [\'ArtworkOrObject','ArtworkOrObjectAOTitle'] },
+ 'aspectframe' => { 252 => 0x1113 },
+ 'aspectratio' => { 5 => 0x0, 252 => 0x1112, 301 => 0x80, 340 => 0x55, 341 => 0x55, 342 => 0xa },
'asshoticcprofile' => { 104 => 0xc68f },
'asshotneutral' => { 104 => 0xc628 },
'asshotpreprofilematrix' => { 104 => 0xc690 },
'asshotprofilename' => { 104 => 0xc6f6 },
'asshotwhitexy' => { 104 => 0xc629 },
- 'assignbktbutton' => { 234 => '4.2', 235 => '16.1', 244 => '16.1' },
+ 'assignbktbutton' => { 235 => '4.2', 236 => '16.1', 245 => '16.1' },
'assignfuncbutton' => { 72 => 0x70b },
- 'assignmovierecordbutton' => { 235 => '43.2', 244 => '45.1' },
- 'assignremotefnbutton' => { 235 => '54.1', 244 => '51.1' },
+ 'assignmovierecordbutton' => { 236 => '43.2', 245 => '45.1' },
+ 'assignremotefnbutton' => { 236 => '54.1', 245 => '51.1' },
'assistbuttonfunction' => { 70 => 0xd },
- 'attributionname' => { 391 => 'attributionName' },
- 'attributionurl' => { 391 => 'attributionURL' },
- 'audio' => { 267 => 0x20 },
+ 'attributionname' => { 392 => 'attributionName' },
+ 'attributionurl' => { 392 => 'attributionURL' },
+ 'audio' => { 268 => 0x20 },
'audiobitrate' => { 57 => 0x6c },
'audiochannels' => { 57 => 0x70 },
- 'audiochanneltype' => { 419 => 'audioChannelType' },
+ 'audiochanneltype' => { 420 => 'audioChannelType' },
'audiocompression' => { 133 => 'Compression' },
- 'audiocompressor' => { 419 => 'audioCompressor' },
+ 'audiocompressor' => { 420 => 'audioCompressor' },
'audioduration' => { 112 => 0x99 },
- 'audiomoddate' => { 419 => 'audioModDate' },
+ 'audiomoddate' => { 420 => 'audioModDate' },
'audiooutcue' => { 112 => 0x9a },
- 'audiosamplerate' => { 57 => 0x6e, 419 => 'audioSampleRate' },
- 'audiosampletype' => { 419 => 'audioSampleType' },
+ 'audiosamplerate' => { 57 => 0x6e, 420 => 'audioSampleRate' },
+ 'audiosampletype' => { 420 => 'audioSampleType' },
'audiosamplingrate' => { 112 => 0x97 },
'audiosamplingresolution' => { 112 => 0x98 },
'audiotype' => { 112 => 0x96 },
- 'author' => { 135 => 'Author', 256 => 'Author', 259 => 'Author', 314 => 'Author', 388 => 'author', 405 => 'Author', 417 => 'Author' },
- 'authorsposition' => { 406 => 'AuthorsPosition' },
- 'autoaperture' => { 291 => '0.1' },
- 'autobracket' => { 332 => 0x19 },
- 'autobracketing' => { 109 => 0x1100, 300 => 0x18, 323 => 0x1007 },
- 'autobracketingmode' => { 243 => '12.3' },
- 'autobracketingset' => { 243 => '12.1' },
- 'autobracketmodem' => { 234 => '21.2', 235 => '13.3', 240 => '26.2', 244 => '13.3' },
- 'autobracketorder' => { 159 => 0x43, 234 => '21.3', 235 => '13.2', 240 => '26.3', 241 => '12.2', 242 => '2.2', 243 => '12.2', 244 => '13.2', 245 => '13.2' },
- 'autobracketset' => { 234 => '21.1', 235 => '13.1', 237 => '11.1', 238 => '12.1', 239 => '12.1', 240 => '26.1', 241 => '12.1', 242 => '2.1', 244 => '13.1', 245 => '13.1' },
- 'autobrightness' => { 394 => 'AutoBrightness' },
- 'autocontrast' => { 394 => 'AutoContrast' },
- 'autodistortioncontrol' => { 177 => 0x4 },
+ 'author' => { 135 => 'Author', 257 => 'Author', 260 => 'Author', 315 => 'Author', 389 => 'author', 406 => 'Author', 418 => 'Author' },
+ 'authorsposition' => { 407 => 'AuthorsPosition' },
+ 'autoaperture' => { 292 => '0.1' },
+ 'autobracket' => { 333 => 0x19 },
+ 'autobracketing' => { 109 => 0x1100, 301 => 0x18, 324 => 0x1007 },
+ 'autobracketingmode' => { 244 => '12.3' },
+ 'autobracketingset' => { 244 => '12.1' },
+ 'autobracketmodem' => { 235 => '21.2', 236 => '13.3', 241 => '26.2', 245 => '13.3' },
+ 'autobracketorder' => { 159 => 0x43, 235 => '21.3', 236 => '13.2', 241 => '26.3', 242 => '12.2', 243 => '2.2', 244 => '12.2', 245 => '13.2', 246 => '13.2' },
+ 'autobracketset' => { 235 => '21.1', 236 => '13.1', 238 => '11.1', 239 => '12.1', 240 => '12.1', 241 => '26.1', 242 => '12.1', 243 => '2.1', 245 => '13.1', 246 => '13.1' },
+ 'autobrightness' => { 395 => 'AutoBrightness' },
+ 'autocontrast' => { 395 => 'AutoContrast' },
+ 'autodistortioncontrol' => { 178 => 0x4 },
'autodynamicrange' => { 109 => 0x140b },
- 'autoexposure' => { 394 => 'AutoExposure' },
+ 'autoexposure' => { 395 => 'AutoExposure' },
'autoexposurebracketing' => { 66 => 0x10 },
- 'autofocus' => { 250 => 0x209 },
- 'autofp' => { 242 => '7.3', 245 => '31.4' },
- 'autoiso' => { 66 => 0x1, 100 => 0x3008, 236 => '1.1', 242 => '1.1' },
- 'autoisomax' => { 236 => '1.2', 242 => '1.2' },
- 'autoisominshutterspeed' => { 236 => '1.3', 242 => '1.3' },
- 'autolateralca' => { 394 => 'AutoLateralCA' },
+ 'autofocus' => { 251 => 0x209 },
+ 'autofp' => { 243 => '7.3', 246 => '31.4' },
+ 'autoiso' => { 66 => 0x1, 100 => 0x3008, 237 => '1.1', 243 => '1.1' },
+ 'autoisomax' => { 237 => '1.2', 243 => '1.2' },
+ 'autoisominshutterspeed' => { 237 => '1.3', 243 => '1.3' },
+ 'autolateralca' => { 395 => 'AutoLateralCA' },
'autolightingoptimizer' => { 15 => 0xbe, 16 => 0xbf, 19 => 0xbf, 53 => 0x2, 72 => 0x204, 90 => 0x20500, 96 => 0x6f },
'autolightingoptimizeron' => { 90 => '0x20500.0', 96 => 0x6e },
- 'autoportraitframed' => { 351 => 0x2016 },
- 'autoredeye' => { 227 => 0xfe28a44f },
+ 'autoportraitframed' => { 352 => 0x2016 },
+ 'autoredeye' => { 228 => 0xfe28a44f },
'autorotate' => { 66 => 0x1b },
- 'autoshadows' => { 394 => 'AutoShadows' },
- 'autowhiteversion' => { 394 => 'AutoWhiteVersion' },
- 'auxiliarylens' => { 191 => 0x82 },
- 'avaperturesetting' => { 281 => 0x13 },
+ 'autoshadows' => { 395 => 'AutoShadows' },
+ 'autowhiteversion' => { 395 => 'AutoWhiteVersion' },
+ 'auxiliarylens' => { 192 => 0x82 },
+ 'avaperturesetting' => { 282 => 0x13 },
'averageblacklevel' => { 37 => 0xe7, 39 => 0xfb, 40 => 0x114, 41 => 0x146 },
'averagelv' => { 162 => 0x38 },
'avsettingwithoutlens' => { 72 => 0x707 },
'azimuth' => { 143 => 'Azimuth' },
- 'babyage' => { 267 => [0x8010,0x33] },
- 'babyname' => { 267 => 0x66 },
- 'backgroundalpha' => { 414 => 'bgalpha' },
- 'baseexposurecompensation' => { 281 => 0x15 },
- 'baseiso' => { 66 => 0x2, 85 => 0x101c, 118 => 0x903, 269 => 0x312a, 375 => 0x6 },
+ 'babyage' => { 268 => [0x8010,0x33] },
+ 'babyname' => { 268 => 0x66 },
+ 'backgroundalpha' => { 415 => 'bgalpha' },
+ 'baseexposurecompensation' => { 282 => 0x15 },
+ 'baseiso' => { 66 => 0x2, 85 => 0x101c, 118 => 0x903, 270 => 0x312a, 376 => 0x6 },
'baselineexposure' => { 104 => 0xc62a },
'baselineexposureoffset' => { 104 => 0xc7a5 },
'baselinenoise' => { 104 => 0xc62b },
'baselinesharpness' => { 104 => 0xc62c },
- 'baseurl' => { 417 => 'BaseURL' },
- 'batterylevel' => { 339 => 0x51, 343 => 0xc, 344 => 0x4, 345 => 0x4, 376 => 0x7 },
- 'batterylevelgrip1' => { 376 => 0x6 },
- 'batterylevelgrip2' => { 376 => 0x8 },
- 'batteryorder' => { 234 => '12.5', 240 => '13.2', 241 => '2.1', 244 => '3.1' },
- 'batterystate' => { 159 => 0x60, 339 => 0x50, 345 => 0x14 },
- 'batterytemperature' => { 343 => 0x1, 345 => 0x2, 376 => 0x5 },
- 'batteryunknown' => { 343 => 0x2, 345 => 0x0 },
- 'batteryvoltage' => { 118 => 0x408, 319 => 0x2a, 343 => 0x8 },
- 'batteryvoltage1' => { 345 => 0x6 },
- 'batteryvoltage2' => { 345 => 0x8 },
+ 'baseurl' => { 418 => 'BaseURL' },
+ 'batterylevel' => { 340 => 0x51, 344 => 0xc, 345 => 0x4, 346 => 0x4, 377 => 0x7 },
+ 'batterylevelgrip1' => { 377 => 0x6 },
+ 'batterylevelgrip2' => { 377 => 0x8 },
+ 'batteryorder' => { 235 => '12.5', 241 => '13.2', 242 => '2.1', 245 => '3.1' },
+ 'batterystate' => { 159 => 0x60, 340 => 0x50, 346 => 0x14 },
+ 'batterytemperature' => { 344 => 0x1, 346 => 0x2, 377 => 0x5 },
+ 'batteryunknown' => { 344 => 0x2, 346 => 0x0 },
+ 'batteryvoltage' => { 118 => 0x408, 320 => 0x2a, 344 => 0x8 },
+ 'batteryvoltage1' => { 346 => 0x6 },
+ 'batteryvoltage2' => { 346 => 0x8 },
'bayergreensplit' => { 104 => 0xc62d },
'bayerpattern' => { 117 => 0xf902, 163 => 0x17 },
- 'beatspliceparams' => { 419 => 'beatSpliceParams' },
- 'beatspliceparamsriseindecibel' => { 419 => [\'beatSpliceParams','beatSpliceParamsRiseInDecibel'] },
- 'beatspliceparamsriseintimeduration' => { 419 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDuration'] },
- 'beatspliceparamsriseintimedurationscale' => { 419 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationScale'] },
- 'beatspliceparamsriseintimedurationvalue' => { 419 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationValue'] },
- 'beatspliceparamsusefilebeatsmarker' => { 419 => [\'beatSpliceParams','beatSpliceParamsUseFileBeatsMarker'] },
- 'beep' => { 234 => '13.1', 235 => '5.4', 236 => '0.1', 237 => '2.1', 238 => '3.1', 239 => '3.1', 240 => '10.1', 242 => '0.1', 244 => '5.5', 245 => '4.1' },
- 'beeppitch' => { 241 => '3.1' },
- 'beepvolume' => { 241 => '4.5' },
+ 'beatspliceparams' => { 420 => 'beatSpliceParams' },
+ 'beatspliceparamsriseindecibel' => { 420 => [\'beatSpliceParams','beatSpliceParamsRiseInDecibel'] },
+ 'beatspliceparamsriseintimeduration' => { 420 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDuration'] },
+ 'beatspliceparamsriseintimedurationscale' => { 420 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationScale'] },
+ 'beatspliceparamsriseintimedurationvalue' => { 420 => [\'beatSpliceParams','beatSpliceParamsRiseInTimeDurationValue'] },
+ 'beatspliceparamsusefilebeatsmarker' => { 420 => [\'beatSpliceParams','beatSpliceParamsUseFileBeatsMarker'] },
+ 'beep' => { 235 => '13.1', 236 => '5.4', 237 => '0.1', 238 => '2.1', 239 => '3.1', 240 => '3.1', 241 => '10.1', 243 => '0.1', 245 => '5.5', 246 => '4.1' },
+ 'beeppitch' => { 242 => '3.1' },
+ 'beepvolume' => { 242 => '4.5' },
'bestqualityscale' => { 104 => 0xc65c },
'bestshotmode' => { 100 => 0x3007 },
- 'bitdepth' => { 140 => 'BitDepth', 163 => 0x11, 197 => 0x41 },
+ 'bitdepth' => { 140 => 'BitDepth', 163 => 0x11, 198 => 0x41 },
'bitspercomponent' => { 114 => 0x87 },
- 'bitspersample' => { 104 => 0x102, 415 => 'BitsPerSample' },
- 'blacklevel' => { 104 => 0xc61a, 191 => 0x3d, 252 => [0x401,0x1012] },
- 'blacklevel1' => { 271 => 0x8 },
- 'blacklevel2' => { 251 => 0x600, 255 => 0x600, 271 => 0x9 },
- 'blacklevel3' => { 271 => 0xa },
- 'blacklevelblue' => { 271 => 0x1e },
+ 'bitspersample' => { 104 => 0x102, 416 => 'BitsPerSample' },
+ 'blacklevel' => { 104 => 0xc61a, 192 => 0x3d, 253 => [0x401,0x1012] },
+ 'blacklevel1' => { 272 => 0x8 },
+ 'blacklevel2' => { 252 => 0x600, 256 => 0x600, 272 => 0x9 },
+ 'blacklevel3' => { 272 => 0xa },
+ 'blacklevelblue' => { 272 => 0x1e },
'blackleveldeltah' => { 104 => 0xc61b },
'blackleveldeltav' => { 104 => 0xc61c },
- 'blacklevelgreen' => { 271 => 0x1d },
- 'blacklevelred' => { 271 => 0x1c },
+ 'blacklevelgreen' => { 272 => 0x1d },
+ 'blacklevelred' => { 272 => 0x1c },
'blacklevelrepeatdim' => { 104 => 0xc619 },
- 'blackpoint' => { 300 => 0x200 },
- 'blacks2012' => { 394 => 'Blacks2012' },
- 'bleachbypasstoning' => { 300 => 0x7f },
- 'blogtitle' => { 409 => 'blogTitle' },
- 'blogurl' => { 409 => 'blogURL' },
- 'bluebalance' => { 175 => 0x271, 252 => 0x1018, 271 => 0x12, 300 => 0x1b },
+ 'blackpoint' => { 301 => 0x200 },
+ 'blacks2012' => { 395 => 'Blacks2012' },
+ 'bleachbypasstoning' => { 301 => 0x7f },
+ 'blogtitle' => { 410 => 'blogTitle' },
+ 'blogurl' => { 410 => 'blogURL' },
+ 'bluebalance' => { 176 => 0x271, 253 => 0x1018, 272 => 0x12, 301 => 0x1b },
'bluecurvelimits' => { 95 => 0x1fe },
'bluecurvepoints' => { 94 => 0x79, 95 => 0x1d4 },
'bluehsl' => { 90 => [0x20914,0x20915] },
- 'bluehue' => { 394 => 'BlueHue' },
- 'bluesaturation' => { 394 => 'BlueSaturation' },
- 'blurcontrol' => { 300 => 0x82 },
+ 'bluehue' => { 395 => 'BlueHue' },
+ 'bluesaturation' => { 395 => 'BlueSaturation' },
+ 'blurcontrol' => { 301 => 0x82 },
'blurwarning' => { 109 => 0x1300 },
- 'bodybatteryadload' => { 279 => 0x3 },
- 'bodybatteryadnoload' => { 279 => 0x2 },
- 'bodybatterystate' => { 279 => '1.1' },
- 'bodybatteryvoltage1' => { 279 => 0x2 },
- 'bodybatteryvoltage2' => { 279 => 0x4 },
- 'bodybatteryvoltage3' => { 279 => 0x6 },
- 'bodybatteryvoltage4' => { 279 => 0x8 },
- 'bodyfirmware' => { 324 => 0x0 },
- 'bodyfirmwareversion' => { 248 => 0x104, 249 => 0x100, 252 => 0x104 },
- 'bodyserialnumber' => { 324 => 0x10 },
- 'bookedition' => { 409 => 'bookEdition' },
+ 'bodybatteryadload' => { 280 => 0x3 },
+ 'bodybatteryadnoload' => { 280 => 0x2 },
+ 'bodybatterystate' => { 280 => '1.1' },
+ 'bodybatteryvoltage1' => { 280 => 0x2 },
+ 'bodybatteryvoltage2' => { 280 => 0x4 },
+ 'bodybatteryvoltage3' => { 280 => 0x6 },
+ 'bodybatteryvoltage4' => { 280 => 0x8 },
+ 'bodyfirmware' => { 325 => 0x0 },
+ 'bodyfirmwareversion' => { 249 => 0x104, 250 => 0x100, 253 => 0x104 },
+ 'bodyserialnumber' => { 325 => 0x10 },
+ 'bookedition' => { 410 => 'bookEdition' },
'bracketmode' => { 48 => 0x3 },
'bracketsequence' => { 100 => 0x301d },
- 'bracketsettings' => { 267 => 0x45 },
- 'bracketshotnumber' => { 48 => 0x5, 281 => 0x9, 350 => 0x2b },
- 'bracketshotnumber2' => { 350 => 0x2d },
+ 'bracketsettings' => { 268 => 0x45 },
+ 'bracketshotnumber' => { 48 => 0x5, 282 => 0x9, 351 => 0x2b },
+ 'bracketshotnumber2' => { 351 => 0x2d },
'bracketstep' => { 156 => 0xe },
'bracketvalue' => { 48 => 0x4 },
- 'brightness' => { 104 => 0xfe53, 134 => 'Brightness', 152 => 'Brightness', 156 => 0x2c, 193 => 0x34, 319 => 0x25, 339 => 0x22, 351 => 0x2007, 394 => 'Brightness' },
- 'brightnessadj' => { 95 => 0x114, 220 => 0x0, 230 => 0x2d, 379 => 0x8018 },
- 'brightnessvalue' => { 104 => 0x9203, 162 => [0x691,0x49c3], 252 => 0x1003, 355 => 0x1e, 358 => 0x1140, 359 => 0x1140, 360 => 0x111c, 361 => 0x1198, 362 => 0x1174, 363 => 0x102c, 364 => 0x224, 365 => 0x224, 398 => 'BrightnessValue' },
+ 'brightness' => { 104 => 0xfe53, 134 => 'Brightness', 152 => 'Brightness', 156 => 0x2c, 194 => 0x34, 320 => 0x25, 340 => 0x22, 352 => 0x2007, 395 => 'Brightness' },
+ 'brightnessadj' => { 95 => 0x114, 221 => 0x0, 231 => 0x2d, 380 => 0x8018 },
+ 'brightnessvalue' => { 104 => 0x9203, 162 => [0x691,0x49c3], 253 => 0x1003, 356 => 0x1e, 359 => 0x1140, 360 => 0x1140, 361 => 0x111c, 362 => 0x1198, 363 => 0x1174, 364 => 0x102c, 365 => 0x224, 366 => 0x224, 399 => 'BrightnessValue' },
'bulbduration' => { 66 => 0x18 },
- 'burstmode' => { 120 => 0xa, 267 => 0x2a },
+ 'burstmode' => { 120 => 0xa, 268 => 0x2a },
'burstmode2' => { 120 => 0x18 },
- 'burstshot' => { 332 => 0x34 },
- 'burstspeed' => { 267 => 0x77 },
+ 'burstshot' => { 333 => 0x34 },
+ 'burstspeed' => { 268 => 0x77 },
'burstuuid' => { 1 => 0xb },
'buttonfunctioncontroloff' => { 72 => 0x70a },
'bwfilter' => { 156 => 0x2a, 164 => 0x39 },
- 'bwmode' => { 252 => 0x203 },
+ 'bwmode' => { 253 => 0x203 },
'by-line' => { 112 => 0x50 },
'by-linetitle' => { 112 => 0x55 },
- 'bytecount' => { 409 => 'byteCount' },
- 'calibration' => { 332 => [0x24,0x30] },
+ 'bytecount' => { 410 => 'byteCount' },
+ 'calibration' => { 333 => [0x24,0x30] },
'calibrationilluminant1' => { 104 => 0xc65a },
'calibrationilluminant2' => { 104 => 0xc65b },
- 'cameraangle' => { 419 => 'cameraAngle' },
+ 'cameraangle' => { 420 => 'cameraAngle' },
'cameracalibration1' => { 104 => 0xc623 },
'cameracalibration2' => { 104 => 0xc624 },
'cameracalibrationsig' => { 104 => 0xc6f3 },
@@ -920,27 +921,27 @@ my %tagLookup = (
'cameracolorcalibration13' => { 32 => 0x30, 38 => 0xf6 },
'cameracolorcalibration14' => { 32 => 0x34, 38 => 0xfb },
'cameracolorcalibration15' => { 32 => 0x38, 38 => 0x100 },
- 'camerae-mountversion' => { 378 => 0xb },
- 'cameraid' => { 252 => 0x209, 331 => 0x209 },
+ 'camerae-mountversion' => { 379 => 0xb },
+ 'cameraid' => { 253 => 0x209, 332 => 0x209 },
'cameraiso' => { 30 => 0x10 },
- 'cameralabel' => { 104 => 0xc7a1, 419 => 'cameraLabel' },
- 'cameramodel' => { 419 => 'cameraModel' },
+ 'cameralabel' => { 104 => 0xc7a1, 420 => 'cameraLabel' },
+ 'cameramodel' => { 420 => 'cameraModel' },
'cameramodelid' => { 152 => 'CameraModelID' },
- 'cameramove' => { 419 => 'cameraMove' },
- 'cameraorientation' => { 6 => 0x30, 8 => 0x7d, 10 => 0x30, 12 => 0x35, 13 => 0x30, 14 => 0x30, 15 => 0x31, 16 => 0x31, 17 => 0x35, 18 => 0x27, 19 => 0x31, 20 => 0x7d, 21 => 0x38, 22 => 0x36, 23 => 0x7d, 24 => 0x83, 25 => 0x84, 26 => 0x35, 267 => 0x8f, 304 => 0x1, 345 => [0x16,0x18], 367 => 0x28, 368 => 0x24, 369 => 0x29 },
+ 'cameramove' => { 420 => 'cameraMove' },
+ 'cameraorientation' => { 6 => 0x30, 8 => 0x7d, 10 => 0x30, 12 => 0x35, 13 => 0x30, 14 => 0x30, 15 => 0x31, 16 => 0x31, 17 => 0x35, 18 => 0x27, 19 => 0x31, 20 => 0x7d, 21 => 0x38, 22 => 0x36, 23 => 0x7d, 24 => 0x83, 25 => 0x84, 26 => 0x35, 268 => 0x8f, 305 => 0x1, 346 => [0x16,0x18], 368 => 0x28, 369 => 0x24, 370 => 0x29 },
'cameraowner' => { 121 => 0xc353 },
- 'cameraparameters' => { 252 => 0x2050 },
- 'cameraprofile' => { 394 => 'CameraProfile' },
- 'cameraprofiledigest' => { 394 => 'CameraProfileDigest' },
+ 'cameraparameters' => { 253 => 0x2050 },
+ 'cameraprofile' => { 395 => 'CameraProfile' },
+ 'cameraprofiledigest' => { 395 => 'CameraProfileDigest' },
'cameraserialnumber' => { 104 => 0xc62f, 154 => 'CameraSerialNumber' },
- 'camerasettingsversion' => { 247 => 0x0 },
- 'cameratemperature' => { 6 => 0x18, 8 => 0x1b, 10 => 0x18, 12 => 0x19, 13 => 0x18, 14 => 0x18, 15 => 0x19, 16 => 0x19, 17 => 0x19, 18 => 0x17, 19 => 0x19, 20 => 0x1b, 21 => 0x19, 22 => 0x19, 23 => 0x1b, 24 => 0x1b, 25 => 0x1b, 26 => 0x19, 27 => [0x87,0x91], 28 => [0x99,0x9f,0xa4,0xa8,0x105], 29 => ['-3',0x64,0x47,0x53,0x5b,0x5c], 66 => 0xc, 118 => 0x406, 251 => 0x1306, 263 => 0x320, 269 => 0x3402, 300 => 0x47, 329 => 0x43, 371 => 0x5 },
- 'cameratemperature4' => { 305 => 0x14 },
- 'cameratemperature5' => { 305 => 0x16 },
+ 'camerasettingsversion' => { 248 => 0x0 },
+ 'cameratemperature' => { 6 => 0x18, 8 => 0x1b, 10 => 0x18, 12 => 0x19, 13 => 0x18, 14 => 0x18, 15 => 0x19, 16 => 0x19, 17 => 0x19, 18 => 0x17, 19 => 0x19, 20 => 0x1b, 21 => 0x19, 22 => 0x19, 23 => 0x1b, 24 => 0x1b, 25 => 0x1b, 26 => 0x19, 27 => [0x87,0x91], 28 => [0x99,0x9f,0xa4,0xa8,0x105], 29 => ['-3',0x64,0x47,0x53,0x5b,0x5c], 66 => 0xc, 118 => 0x406, 252 => 0x1306, 264 => 0x320, 270 => 0x3402, 301 => 0x47, 330 => 0x43, 372 => 0x5 },
+ 'cameratemperature4' => { 306 => 0x14 },
+ 'cameratemperature5' => { 306 => 0x16 },
'cameratemperaturerangemax' => { 106 => 0x5 },
'cameratemperaturerangemin' => { 106 => 0x6 },
- 'cameratype' => { 66 => 0x1a, 252 => 0x207 },
- 'cameratype2' => { 248 => 0x100 },
+ 'cameratype' => { 66 => 0x1a, 253 => 0x207 },
+ 'cameratype2' => { 249 => 0x100 },
'canondr4' => { 105 => 'CanonDR4' },
'canonexposuremode' => { 30 => 0x14 },
'canonfiledescription' => { 85 => 0x805 },
@@ -952,229 +953,229 @@ my %tagLookup = (
'canonimagetype' => { 54 => 0x6, 85 => 0x815 },
'canonmodelid' => { 54 => 0x10, 85 => 0x1834 },
'canonvrd' => { 105 => 'CanonVRD' },
- 'caption' => { 388 => 'caption' },
+ 'caption' => { 389 => 'caption' },
'caption-abstract' => { 112 => 0x78 },
- 'captionsauthornames' => { 397 => 'CaptionsAuthorNames' },
- 'captionsdatetimestamps' => { 397 => 'CaptionsDateTimeStamps' },
- 'captionwriter' => { 406 => 'CaptionWriter' },
+ 'captionsauthornames' => { 398 => 'CaptionsAuthorNames' },
+ 'captionsdatetimestamps' => { 398 => 'CaptionsDateTimeStamps' },
+ 'captionwriter' => { 407 => 'CaptionWriter' },
'captureframerate' => { 100 => 0x4001 },
- 'capturesoftware' => { 383 => 'CaptureSoftware' },
+ 'capturesoftware' => { 384 => 'CaptureSoftware' },
'cardshutterlock' => { 159 => 0x49 },
'casioimagesize' => { 100 => 0x9 },
- 'catalogsets' => { 112 => 0xff, 382 => 'CatalogSets', 386 => 'CatalogSets' },
- 'categories' => { 54 => 0x23, 388 => 'categories' },
- 'category' => { 112 => 0xf, 246 => 0x30, 406 => 'Category' },
- 'cbcrgain' => { 329 => 0xa036 },
- 'cbcrgaindefault' => { 329 => 0xa035 },
- 'cbcrmatrix' => { 329 => 0xa034 },
- 'cbcrmatrixdefault' => { 329 => 0xa033 },
- 'ccdboardversion' => { 263 => 0x331 },
- 'ccdscanmode' => { 252 => 0x1039 },
- 'ccdsensitivity' => { 217 => 0x6 },
- 'ccdversion' => { 263 => 0x330 },
- 'cellglobalid' => { 392 => 'cgi' },
+ 'catalogsets' => { 112 => 0xff, 383 => 'CatalogSets', 387 => 'CatalogSets' },
+ 'categories' => { 54 => 0x23, 389 => 'categories' },
+ 'category' => { 112 => 0xf, 247 => 0x30, 407 => 'Category' },
+ 'cbcrgain' => { 330 => 0xa036 },
+ 'cbcrgaindefault' => { 330 => 0xa035 },
+ 'cbcrmatrix' => { 330 => 0xa034 },
+ 'cbcrmatrixdefault' => { 330 => 0xa033 },
+ 'ccdboardversion' => { 264 => 0x331 },
+ 'ccdscanmode' => { 253 => 0x1039 },
+ 'ccdsensitivity' => { 218 => 0x6 },
+ 'ccdversion' => { 264 => 0x330 },
+ 'cellglobalid' => { 393 => 'cgi' },
'celllength' => { 104 => 0x109 },
- 'cellr' => { 392 => 'r' },
- 'celltowerid' => { 392 => 'cellid' },
+ 'cellr' => { 393 => 'r' },
+ 'celltowerid' => { 393 => 'cellid' },
'cellwidth' => { 104 => 0x108 },
- 'centerafarea' => { 242 => '15.1' },
- 'centerfocuspoint' => { 245 => '2.2' },
- 'centerweightedareasize' => { 234 => '7.1', 235 => '8.1', 240 => '5.1', 241 => '7.1', 242 => '6.3', 244 => '8.1', 245 => '8.1' },
- 'certificate' => { 423 => 'Certificate' },
- 'cfapattern' => { 104 => 0xa302, 398 => 'CFAPattern' },
+ 'centerafarea' => { 243 => '15.1' },
+ 'centerfocuspoint' => { 246 => '2.2' },
+ 'centerweightedareasize' => { 235 => '7.1', 236 => '8.1', 241 => '5.1', 242 => '7.1', 243 => '6.3', 245 => '8.1', 246 => '8.1' },
+ 'certificate' => { 424 => 'Certificate' },
+ 'cfapattern' => { 104 => 0xa302, 399 => 'CFAPattern' },
'cfapattern2' => { 104 => 0x828e },
- 'cfapatterncolumns' => { 398 => [\'CFAPattern','CFAPatternColumns'] },
- 'cfapatternrows' => { 398 => [\'CFAPattern','CFAPatternRows'] },
- 'cfapatternvalues' => { 398 => [\'CFAPattern','CFAPatternValues'] },
+ 'cfapatterncolumns' => { 399 => [\'CFAPattern','CFAPatternColumns'] },
+ 'cfapatternrows' => { 399 => [\'CFAPattern','CFAPatternRows'] },
+ 'cfapatternvalues' => { 399 => [\'CFAPattern','CFAPatternValues'] },
'cfarepeatpatterndim' => { 104 => 0x828d },
- 'channel' => { 409 => 'channel' },
- 'channela-lang' => { 409 => [\'channel','channelA-lang'] },
- 'channelchannel' => { 409 => [\'channel','channelChannel'] },
+ 'channel' => { 410 => 'channel' },
+ 'channela-lang' => { 410 => [\'channel','channelA-lang'] },
+ 'channelchannel' => { 410 => [\'channel','channelChannel'] },
'channels' => { 133 => 'Channels' },
- 'channelsubchannel1' => { 409 => [\'channel','channelSubchannel1'] },
- 'channelsubchannel2' => { 409 => [\'channel','channelSubchannel2'] },
- 'channelsubchannel3' => { 409 => [\'channel','channelSubchannel3'] },
- 'channelsubchannel4' => { 409 => [\'channel','channelSubchannel4'] },
+ 'channelsubchannel1' => { 410 => [\'channel','channelSubchannel1'] },
+ 'channelsubchannel2' => { 410 => [\'channel','channelSubchannel2'] },
+ 'channelsubchannel3' => { 410 => [\'channel','channelSubchannel3'] },
+ 'channelsubchannel4' => { 410 => [\'channel','channelSubchannel4'] },
'checkmark' => { 90 => 0x10101, 95 => 0x26a },
'checkmark2' => { 96 => 0x8e },
- 'childfontfiles' => { 424 => [\'Fonts','FontsChildFontFiles'] },
- 'chmodeshootingspeed' => { 234 => '10.3', 235 => '11.2' },
+ 'childfontfiles' => { 425 => [\'Fonts','FontsChildFontFiles'] },
+ 'chmodeshootingspeed' => { 235 => '10.3', 236 => '11.2' },
'chromablurradius' => { 104 => 0xc631 },
- 'chromaticaberration' => { 90 => 0x20703, 96 => 0x66, 329 => 0xa051 },
- 'chromaticaberrationb' => { 394 => 'ChromaticAberrationB' },
+ 'chromaticaberration' => { 90 => 0x20703, 96 => 0x66, 330 => 0xa051 },
+ 'chromaticaberrationb' => { 395 => 'ChromaticAberrationB' },
'chromaticaberrationblue' => { 90 => 0x20708, 96 => 0x6b },
'chromaticaberrationcorr' => { 68 => [0x4,0x5] },
- 'chromaticaberrationcorrection' => { 290 => 0x1 },
+ 'chromaticaberrationcorrection' => { 291 => 0x1 },
'chromaticaberrationon' => { 90 => '0x20703.0', 96 => 0x62 },
- 'chromaticaberrationr' => { 394 => 'ChromaticAberrationR' },
+ 'chromaticaberrationr' => { 395 => 'ChromaticAberrationR' },
'chromaticaberrationred' => { 90 => 0x20707, 96 => 0x6a },
'chromaticaberrationsetting' => { 69 => 0x6 },
- 'chrominancenoisereduction' => { 90 => 0x20601, 96 => 0x5e, 332 => 0x1a },
+ 'chrominancenoisereduction' => { 90 => 0x20601, 96 => 0x5e, 333 => 0x1a },
'chrominancenr_tiff_jpeg' => { 96 => 0x60 },
- 'circgradbasedcorractive' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'] },
- 'circgradbasedcorramount' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'] },
- 'circgradbasedcorrbrightness' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'] },
- 'circgradbasedcorrclarity' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'] },
- 'circgradbasedcorrclarity2012' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'] },
- 'circgradbasedcorrcontrast' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'] },
- 'circgradbasedcorrcontrast2012' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'] },
- 'circgradbasedcorrdefringe' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'] },
- 'circgradbasedcorrexposure' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'] },
- 'circgradbasedcorrexposure2012' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'] },
- 'circgradbasedcorrhighlights2012' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'] },
- 'circgradbasedcorrhue' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'] },
- 'circgradbasedcorrluminancenoise' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'] },
- 'circgradbasedcorrmaskalpha' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'] },
- 'circgradbasedcorrmaskangle' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'] },
- 'circgradbasedcorrmaskbottom' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'] },
- 'circgradbasedcorrmaskcentervalue' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'] },
- 'circgradbasedcorrmaskcenterweight' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'] },
- 'circgradbasedcorrmaskdabs' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'] },
- 'circgradbasedcorrmaskfeather' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'] },
- 'circgradbasedcorrmaskflipped' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'] },
- 'circgradbasedcorrmaskflow' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'] },
- 'circgradbasedcorrmaskfullx' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'] },
- 'circgradbasedcorrmaskfully' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'] },
- 'circgradbasedcorrmaskleft' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'] },
- 'circgradbasedcorrmaskmidpoint' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'] },
- 'circgradbasedcorrmaskperimetervalue' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'] },
- 'circgradbasedcorrmaskradius' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'] },
- 'circgradbasedcorrmaskright' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'] },
- 'circgradbasedcorrmaskroundness' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'] },
- 'circgradbasedcorrmasks' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'] },
- 'circgradbasedcorrmasksizex' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'] },
- 'circgradbasedcorrmasksizey' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'] },
- 'circgradbasedcorrmasktop' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'] },
- 'circgradbasedcorrmaskvalue' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'] },
- 'circgradbasedcorrmaskversion' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'] },
- 'circgradbasedcorrmaskwhat' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'] },
- 'circgradbasedcorrmaskx' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'] },
- 'circgradbasedcorrmasky' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'] },
- 'circgradbasedcorrmaskzerox' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'] },
- 'circgradbasedcorrmaskzeroy' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'] },
- 'circgradbasedcorrmoire' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'] },
- 'circgradbasedcorrsaturation' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation','CircularGradientBasedCorrectionsLocalToningSaturation'] },
- 'circgradbasedcorrshadows2012' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'] },
- 'circgradbasedcorrsharpness' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'] },
- 'circgradbasedcorrtemperature' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'] },
- 'circgradbasedcorrtint' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'] },
- 'circgradbasedcorrwhat' => { 394 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'] },
- 'circulargradientbasedcorrections' => { 394 => 'CircularGradientBasedCorrections' },
- 'city' => { 112 => 0x5a, 139 => 'City', 267 => 0x6d, 406 => 'City' },
- 'city2' => { 267 => 0x80 },
- 'clarity' => { 394 => 'Clarity' },
- 'clarity2012' => { 394 => 'Clarity2012' },
+ 'circgradbasedcorractive' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionActive'] },
+ 'circgradbasedcorramount' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionAmount'] },
+ 'circgradbasedcorrbrightness' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalBrightness'] },
+ 'circgradbasedcorrclarity' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity'] },
+ 'circgradbasedcorrclarity2012' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalClarity2012'] },
+ 'circgradbasedcorrcontrast' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast'] },
+ 'circgradbasedcorrcontrast2012' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalContrast2012'] },
+ 'circgradbasedcorrdefringe' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalDefringe'] },
+ 'circgradbasedcorrexposure' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure'] },
+ 'circgradbasedcorrexposure2012' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalExposure2012'] },
+ 'circgradbasedcorrhighlights2012' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalHighlights2012'] },
+ 'circgradbasedcorrhue' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalToningHue'] },
+ 'circgradbasedcorrluminancenoise' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalLuminanceNoise'] },
+ 'circgradbasedcorrmaskalpha' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAlpha'] },
+ 'circgradbasedcorrmaskangle' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksAngle'] },
+ 'circgradbasedcorrmaskbottom' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksBottom'] },
+ 'circgradbasedcorrmaskcentervalue' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterValue'] },
+ 'circgradbasedcorrmaskcenterweight' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksCenterWeight'] },
+ 'circgradbasedcorrmaskdabs' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksDabs'] },
+ 'circgradbasedcorrmaskfeather' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFeather'] },
+ 'circgradbasedcorrmaskflipped' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlipped'] },
+ 'circgradbasedcorrmaskflow' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFlow'] },
+ 'circgradbasedcorrmaskfullx' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullX'] },
+ 'circgradbasedcorrmaskfully' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksFullY'] },
+ 'circgradbasedcorrmaskleft' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksLeft'] },
+ 'circgradbasedcorrmaskmidpoint' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMidpoint'] },
+ 'circgradbasedcorrmaskperimetervalue' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksPerimeterValue'] },
+ 'circgradbasedcorrmaskradius' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRadius'] },
+ 'circgradbasedcorrmaskright' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRight'] },
+ 'circgradbasedcorrmaskroundness' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksRoundness'] },
+ 'circgradbasedcorrmasks' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasks'] },
+ 'circgradbasedcorrmasksizex' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeX'] },
+ 'circgradbasedcorrmasksizey' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksSizeY'] },
+ 'circgradbasedcorrmasktop' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksTop'] },
+ 'circgradbasedcorrmaskvalue' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksMaskValue'] },
+ 'circgradbasedcorrmaskversion' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksVersion'] },
+ 'circgradbasedcorrmaskwhat' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksWhat'] },
+ 'circgradbasedcorrmaskx' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksX'] },
+ 'circgradbasedcorrmasky' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksY'] },
+ 'circgradbasedcorrmaskzerox' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroX'] },
+ 'circgradbasedcorrmaskzeroy' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsCorrectionMasksZeroY'] },
+ 'circgradbasedcorrmoire' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalMoire'] },
+ 'circgradbasedcorrsaturation' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSaturation','CircularGradientBasedCorrectionsLocalToningSaturation'] },
+ 'circgradbasedcorrshadows2012' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalShadows2012'] },
+ 'circgradbasedcorrsharpness' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalSharpness'] },
+ 'circgradbasedcorrtemperature' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTemperature'] },
+ 'circgradbasedcorrtint' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsLocalTint'] },
+ 'circgradbasedcorrwhat' => { 395 => [\'CircularGradientBasedCorrections','CircularGradientBasedCorrectionsWhat'] },
+ 'circulargradientbasedcorrections' => { 395 => 'CircularGradientBasedCorrections' },
+ 'city' => { 112 => 0x5a, 139 => 'City', 268 => 0x6d, 407 => 'City' },
+ 'city2' => { 268 => 0x80 },
+ 'clarity' => { 395 => 'Clarity' },
+ 'clarity2012' => { 395 => 'Clarity2012' },
'classifystate' => { 112 => 0xe1 },
- 'clearretouch' => { 267 => 0x7c },
- 'clearretouchvalue' => { 267 => 0xa3 },
- 'client' => { 419 => 'client' },
- 'clientname' => { 400 => 'ClientName' },
- 'clmodeshootingspeed' => { 234 => '10.2', 235 => '11.3', 240 => '11.2', 241 => '10.2', 244 => '11.2', 245 => '11.1' },
- 'cmcontrast' => { 255 => 0x2022 },
- 'cmexposurecompensation' => { 255 => 0x2000 },
- 'cmhue' => { 255 => 0x2021 },
- 'cmsaturation' => { 255 => 0x2020 },
- 'cmsharpness' => { 255 => 0x2023 },
- 'cmwhitebalance' => { 255 => 0x2001 },
- 'cmwhitebalancecomp' => { 255 => 0x2002 },
- 'cmwhitebalancegraypoint' => { 255 => 0x2010 },
+ 'clearretouch' => { 268 => 0x7c },
+ 'clearretouchvalue' => { 268 => 0xa3 },
+ 'client' => { 420 => 'client' },
+ 'clientname' => { 401 => 'ClientName' },
+ 'clmodeshootingspeed' => { 235 => '10.2', 236 => '11.3', 241 => '11.2', 242 => '10.2', 245 => '11.2', 246 => '11.1' },
+ 'cmcontrast' => { 256 => 0x2022 },
+ 'cmexposurecompensation' => { 256 => 0x2000 },
+ 'cmhue' => { 256 => 0x2021 },
+ 'cmsaturation' => { 256 => 0x2020 },
+ 'cmsharpness' => { 256 => 0x2023 },
+ 'cmwhitebalance' => { 256 => 0x2001 },
+ 'cmwhitebalancecomp' => { 256 => 0x2002 },
+ 'cmwhitebalancegraypoint' => { 256 => 0x2010 },
'codec' => { 147 => 'Codec' },
'codedcharacterset' => { 113 => 0x5a },
'collectionname' => { 148 => [\'Collections','CollectionsCollectionName'] },
'collections' => { 148 => 'Collections' },
'collectionuri' => { 148 => [\'Collections','CollectionsCollectionURI'] },
- 'color' => { 408 => 'color' },
- 'coloraberrationcontrol' => { 227 => 0xc89224b },
- 'coloradjustment' => { 332 => 0x14 },
- 'coloradjustmentmode' => { 331 => 0x210 },
- 'coloranta' => { 424 => [\'Colorants','ColorantsA'] },
- 'colorantb' => { 424 => [\'Colorants','ColorantsB'] },
- 'colorantblack' => { 424 => [\'Colorants','ColorantsBlack'] },
- 'colorantblue' => { 424 => [\'Colorants','ColorantsBlue'] },
- 'colorantcyan' => { 424 => [\'Colorants','ColorantsCyan'] },
- 'colorantgreen' => { 424 => [\'Colorants','ColorantsGreen'] },
- 'colorantl' => { 424 => [\'Colorants','ColorantsL'] },
- 'colorantmagenta' => { 424 => [\'Colorants','ColorantsMagenta'] },
- 'colorantmode' => { 424 => [\'Colorants','ColorantsMode'] },
- 'colorantred' => { 424 => [\'Colorants','ColorantsRed'] },
- 'colorants' => { 424 => 'Colorants' },
- 'colorantswatchname' => { 424 => [\'Colorants','ColorantsSwatchName'] },
- 'coloranttint' => { 424 => [\'Colorants','ColorantsTint'] },
- 'coloranttype' => { 424 => [\'Colorants','ColorantsType'] },
- 'colorantyellow' => { 424 => [\'Colorants','ColorantsYellow'] },
+ 'color' => { 409 => 'color' },
+ 'coloraberrationcontrol' => { 228 => 0xc89224b },
+ 'coloradjustment' => { 333 => 0x14 },
+ 'coloradjustmentmode' => { 332 => 0x210 },
+ 'coloranta' => { 425 => [\'Colorants','ColorantsA'] },
+ 'colorantb' => { 425 => [\'Colorants','ColorantsB'] },
+ 'colorantblack' => { 425 => [\'Colorants','ColorantsBlack'] },
+ 'colorantblue' => { 425 => [\'Colorants','ColorantsBlue'] },
+ 'colorantcyan' => { 425 => [\'Colorants','ColorantsCyan'] },
+ 'colorantgreen' => { 425 => [\'Colorants','ColorantsGreen'] },
+ 'colorantl' => { 425 => [\'Colorants','ColorantsL'] },
+ 'colorantmagenta' => { 425 => [\'Colorants','ColorantsMagenta'] },
+ 'colorantmode' => { 425 => [\'Colorants','ColorantsMode'] },
+ 'colorantred' => { 425 => [\'Colorants','ColorantsRed'] },
+ 'colorants' => { 425 => 'Colorants' },
+ 'colorantswatchname' => { 425 => [\'Colorants','ColorantsSwatchName'] },
+ 'coloranttint' => { 425 => [\'Colorants','ColorantsTint'] },
+ 'coloranttype' => { 425 => [\'Colorants','ColorantsType'] },
+ 'colorantyellow' => { 425 => [\'Colorants','ColorantsYellow'] },
'colorbalance' => { 134 => 'ColorBalance' },
- 'colorbalanceadj' => { 227 => 0x76a43202 },
+ 'colorbalanceadj' => { 228 => 0x76a43202 },
'colorbalanceblue' => { 156 => 0x1e },
'colorbalancegreen' => { 156 => 0x1d },
'colorbalancered' => { 156 => 0x1c },
- 'colorbalanceversion' => { 176 => 0x0 },
+ 'colorbalanceversion' => { 177 => 0x0 },
'colorblur' => { 96 => 0x65 },
'colorbluron' => { 90 => 0x20704 },
- 'colorbooster' => { 227 => 0x5f0e7d23 },
- 'colorboostlevel' => { 221 => 0x1 },
- 'colorboosttype' => { 221 => 0x0 },
- 'colorclass' => { 309 => 0xde, 310 => 'ColorClass' },
- 'colorcompensationfilter' => { 159 => [0x3a,0x5f], 161 => 0x111, 351 => 0xb022 },
- 'colorcompensationfiltercustom' => { 339 => 0xd, 340 => 0xc },
- 'colorcompensationfilterset' => { 339 => 0x8, 340 => 0x7, 341 => 0x18, 355 => 0xf },
- 'colorcontrol' => { 252 => 0x102b },
- 'colorcorrection' => { 379 => 0x8015 },
+ 'colorbooster' => { 228 => 0x5f0e7d23 },
+ 'colorboostlevel' => { 222 => 0x1 },
+ 'colorboosttype' => { 222 => 0x0 },
+ 'colorclass' => { 310 => 0xde, 311 => 'ColorClass' },
+ 'colorcompensationfilter' => { 159 => [0x3a,0x5f], 161 => 0x111, 352 => 0xb022 },
+ 'colorcompensationfiltercustom' => { 340 => 0xd, 341 => 0xc },
+ 'colorcompensationfilterset' => { 340 => 0x8, 341 => 0x7, 342 => 0x18, 356 => 0xf },
+ 'colorcontrol' => { 253 => 0x102b },
+ 'colorcorrection' => { 380 => 0x8015 },
'colordataversion' => { 36 => 0x0, 37 => 0x0, 39 => 0x0, 40 => 0x0, 41 => 0x0 },
- 'coloreffect' => { 267 => 0x28 },
- 'colorfilter' => { 99 => 0x17, 100 => 0x3017, 156 => 0x29, 164 => [0x38,0x4d,0x4f], 307 => 0x17 },
- 'colorgain' => { 197 => 0x51 },
- 'colorhue' => { 90 => 0x20900, 191 => 0x8d },
+ 'coloreffect' => { 268 => 0x28 },
+ 'colorfilter' => { 99 => 0x17, 100 => 0x3017, 156 => 0x29, 164 => [0x38,0x4d,0x4f], 308 => 0x17 },
+ 'colorgain' => { 198 => 0x51 },
+ 'colorhue' => { 90 => 0x20900, 192 => 0x8d },
'colorimetricreference' => { 104 => 0xc6bf },
- 'colorlabel' => { 397 => 'ColorLabel' },
- 'colormatrix' => { 251 => 0x200, 252 => 0x1011, 329 => 0xa030 },
+ 'colorlabel' => { 398 => 'ColorLabel' },
+ 'colormatrix' => { 252 => 0x200, 253 => 0x1011, 330 => 0xa030 },
'colormatrix1' => { 104 => 0xc621 },
- 'colormatrix2' => { 104 => 0xc622, 255 => 0x200 },
- 'colormatrixa' => { 300 => 0x203 },
- 'colormatrixadobergb' => { 329 => 0xa032 },
- 'colormatrixb' => { 300 => 0x204 },
- 'colormatrixnumber' => { 252 => 0x1019 },
- 'colormatrixsrgb' => { 329 => 0xa031 },
- 'colormode' => { 100 => 0x3015, 109 => 0x1210, 120 => 0x66, 156 => 0x28, 159 => 0x16, 161 => 0x101, 162 => 0x36, 164 => 0x7, 191 => 0x3, 217 => 0x4, 267 => 0x32, 332 => 0x2c, 351 => 0xb029, 406 => 'ColorMode' },
- 'colormoirereduction' => { 228 => 0x15 },
- 'colormoirereductionmode' => { 228 => 0x5 },
- 'colornoisereduction' => { 379 => 0x8029, 394 => 'ColorNoiseReduction' },
- 'colornoisereductiondetail' => { 394 => 'ColorNoiseReductionDetail' },
- 'colornoisereductionintensity' => { 228 => 0x18 },
- 'colornoisereductionsharpness' => { 228 => 0x1c },
- 'colornoisereductionsmoothness' => { 394 => 'ColorNoiseReductionSmoothness' },
+ 'colormatrix2' => { 104 => 0xc622, 256 => 0x200 },
+ 'colormatrixa' => { 301 => 0x203 },
+ 'colormatrixadobergb' => { 330 => 0xa032 },
+ 'colormatrixb' => { 301 => 0x204 },
+ 'colormatrixnumber' => { 253 => 0x1019 },
+ 'colormatrixsrgb' => { 330 => 0xa031 },
+ 'colormode' => { 100 => 0x3015, 109 => 0x1210, 120 => 0x66, 156 => 0x28, 159 => 0x16, 161 => 0x101, 162 => 0x36, 164 => 0x7, 192 => 0x3, 218 => 0x4, 268 => 0x32, 333 => 0x2c, 352 => 0xb029, 407 => 'ColorMode' },
+ 'colormoirereduction' => { 229 => 0x15 },
+ 'colormoirereductionmode' => { 229 => 0x5 },
+ 'colornoisereduction' => { 380 => 0x8029, 395 => 'ColorNoiseReduction' },
+ 'colornoisereductiondetail' => { 395 => 'ColorNoiseReductionDetail' },
+ 'colornoisereductionintensity' => { 229 => 0x18 },
+ 'colornoisereductionsharpness' => { 229 => 0x1c },
+ 'colornoisereductionsmoothness' => { 395 => 'ColorNoiseReductionSmoothness' },
'colorplanes' => { 108 => 0x2 },
'colorprofile' => { 156 => 0x33 },
'colorrepresentation' => { 114 => 0x3c },
'colorsaturationadj' => { 90 => 0x20305 },
'colorsequence' => { 114 => 0x41 },
- 'colorspace' => { 42 => 0x3, 54 => 0xb4, 85 => 0x10b4, 104 => 0xa001, 140 => 'ColorSpace', 157 => 0x2f, 158 => 0x25, 159 => 0x17, 191 => 0x1e, 247 => 0x507, 300 => 0x37, 329 => 0xa011, 332 => 0xb, 339 => 0x1b, 340 => 0x83, 341 => 0xe, 355 => 0x6, 398 => 'ColorSpace' },
+ 'colorspace' => { 42 => 0x3, 54 => 0xb4, 85 => 0x10b4, 104 => 0xa001, 140 => 'ColorSpace', 157 => 0x2f, 158 => 0x25, 159 => 0x17, 192 => 0x1e, 248 => 0x507, 301 => 0x37, 330 => 0xa011, 333 => 0xb, 340 => 0x1b, 341 => 0x83, 342 => 0xe, 356 => 0x6, 399 => 'ColorSpace' },
'colortempasshot' => { 33 => 0x4, 34 => 0x1d, 35 => 0x26, 36 => 0x43, 39 => 0x43, 40 => 0x43, 41 => 0x43 },
'colortempauto' => { 33 => 0x9, 34 => 0x22, 35 => 0x1c, 36 => 0x48, 39 => 0x48, 40 => 0x48, 41 => 0x48 },
- 'colortempcloudy' => { 33 => 0x22, 34 => 0x31, 35 => 0x35, 36 => 0x5c, 39 => 0x75, 40 => 0x8e, 41 => 0x93, 300 => 0x55 },
+ 'colortempcloudy' => { 33 => 0x22, 34 => 0x31, 35 => 0x35, 36 => 0x5c, 39 => 0x75, 40 => 0x8e, 41 => 0x93, 301 => 0x55 },
'colortempcustom' => { 36 => 0x84 },
'colortempcustom1' => { 34 => 0x45 },
'colortempcustom2' => { 34 => 0x4a },
- 'colortempdaylight' => { 33 => 0x18, 34 => 0x27, 35 => 0x2b, 36 => 0x52, 39 => 0x6b, 40 => 0x84, 41 => 0x89, 300 => 0x53 },
- 'colortemperature' => { 6 => 0x73, 7 => [0x48,0x4e], 8 => 0xc0, 9 => 0x37, 10 => 0x62, 11 => 0x37, 12 => 0x7c, 13 => 0x73, 14 => 0x73, 15 => 0x77, 16 => 0x73, 17 => 0x7c, 18 => 0x58, 19 => 0x73, 20 => 0xc0, 21 => 0x7f, 22 => 0x7d, 23 => 0xc0, 24 => 0xc6, 25 => 0xc7, 26 => 0x7b, 54 => 0xae, 64 => 0x9, 85 => 0x10ae, 109 => 0x1005, 118 => 0x846, 134 => 'ColorTemperature', 157 => [0x6e,0x49], 158 => 0x3f, 159 => [0x39,0x5e], 161 => 0x10b, 164 => [0x3c,0x4c,0x4e], 263 => 0x321, 300 => 0x50, 323 => 0x1308, 351 => 0xb021, 394 => 'Temperature' },
- 'colortemperatureadj' => { 379 => 0x8013 },
- 'colortemperaturebg' => { 252 => 0x1013 },
- 'colortemperaturecustom' => { 339 => 0xc, 340 => 0xb },
- 'colortemperaturerg' => { 252 => 0x1014 },
- 'colortemperatureset' => { 339 => 0x7, 340 => 0x6 },
- 'colortemperaturesetting' => { 159 => 0x25, 341 => 0x17, 355 => 0xe },
- 'colortempflash' => { 33 => 0x36, 34 => 0x40, 35 => 0x49, 36 => 0x70, 39 => 0x89, 40 => 0xa2, 41 => 0xa7, 300 => 0x5a },
+ 'colortempdaylight' => { 33 => 0x18, 34 => 0x27, 35 => 0x2b, 36 => 0x52, 39 => 0x6b, 40 => 0x84, 41 => 0x89, 301 => 0x53 },
+ 'colortemperature' => { 6 => 0x73, 7 => [0x48,0x4e], 8 => 0xc0, 9 => 0x37, 10 => 0x62, 11 => 0x37, 12 => 0x7c, 13 => 0x73, 14 => 0x73, 15 => 0x77, 16 => 0x73, 17 => 0x7c, 18 => 0x58, 19 => 0x73, 20 => 0xc0, 21 => 0x7f, 22 => 0x7d, 23 => 0xc0, 24 => 0xc6, 25 => 0xc7, 26 => 0x7b, 54 => 0xae, 64 => 0x9, 85 => 0x10ae, 109 => 0x1005, 118 => 0x846, 134 => 'ColorTemperature', 157 => [0x6e,0x49], 158 => 0x3f, 159 => [0x39,0x5e], 161 => 0x10b, 164 => [0x3c,0x4c,0x4e], 264 => 0x321, 301 => 0x50, 324 => 0x1308, 352 => 0xb021, 395 => 'Temperature' },
+ 'colortemperatureadj' => { 380 => 0x8013 },
+ 'colortemperaturebg' => { 253 => 0x1013 },
+ 'colortemperaturecustom' => { 340 => 0xc, 341 => 0xb },
+ 'colortemperaturerg' => { 253 => 0x1014 },
+ 'colortemperatureset' => { 340 => 0x7, 341 => 0x6 },
+ 'colortemperaturesetting' => { 159 => 0x25, 342 => 0x17, 356 => 0xe },
+ 'colortempflash' => { 33 => 0x36, 34 => 0x40, 35 => 0x49, 36 => 0x70, 39 => 0x89, 40 => 0xa2, 41 => 0xa7, 301 => 0x5a },
'colortempflashdata' => { 36 => 0x24a },
'colortempfluorescent' => { 33 => 0x2c, 34 => 0x3b, 35 => 0x3f, 36 => 0x66, 39 => 0x7f, 40 => 0x98, 41 => 0x9d },
- 'colortempfluorescentd' => { 300 => 0x57 },
- 'colortempfluorescentn' => { 300 => 0x58 },
- 'colortempfluorescentw' => { 300 => 0x59 },
- 'colortempkelvin' => { 33 => 0x31, 35 => 0x44, 36 => 0x6b, 39 => 0x84, 40 => 0x9d, 41 => 0xa2, 267 => 0x44, 323 => 0x1307 },
+ 'colortempfluorescentd' => { 301 => 0x57 },
+ 'colortempfluorescentn' => { 301 => 0x58 },
+ 'colortempfluorescentw' => { 301 => 0x59 },
+ 'colortempkelvin' => { 33 => 0x31, 35 => 0x44, 36 => 0x6b, 39 => 0x84, 40 => 0x9d, 41 => 0xa2, 268 => 0x44, 324 => 0x1307 },
'colortempmeasured' => { 33 => 0xe, 36 => 0x4d, 39 => 0x4d, 40 => 0x4d, 41 => 0x4d },
'colortemppc1' => { 35 => 0x94, 36 => 0x75 },
'colortemppc2' => { 35 => 0x99, 36 => 0x7a },
'colortemppc3' => { 35 => 0x9e, 36 => 0x7f },
- 'colortempshade' => { 33 => 0x1d, 34 => 0x2c, 35 => 0x30, 36 => 0x57, 39 => 0x70, 40 => 0x89, 41 => 0x8e, 300 => 0x54 },
- 'colortemptungsten' => { 33 => 0x27, 34 => 0x36, 35 => 0x3a, 36 => 0x61, 39 => 0x7a, 40 => 0x93, 41 => 0x98, 300 => 0x56 },
+ 'colortempshade' => { 33 => 0x1d, 34 => 0x2c, 35 => 0x30, 36 => 0x57, 39 => 0x70, 40 => 0x89, 41 => 0x8e, 301 => 0x54 },
+ 'colortemptungsten' => { 33 => 0x27, 34 => 0x36, 35 => 0x3a, 36 => 0x61, 39 => 0x7a, 40 => 0x93, 41 => 0x98, 301 => 0x56 },
'colortempunknown' => { 33 => 0x13, 35 => 0x21, 39 => 0x52, 40 => 0x52, 41 => 0x52 },
'colortempunknown10' => { 33 => 0x63, 35 => 0x76, 39 => 0xa2, 40 => 0x7f, 41 => 0x7f },
'colortempunknown11' => { 33 => 0x68, 35 => 0x7b, 39 => 0xa7, 40 => 0xa7, 41 => 0x84 },
@@ -1217,220 +1218,220 @@ my %tagLookup = (
'colortoneuserdef1' => { 18 => 0x109, 60 => 0x9c, 61 => 0xb4 },
'colortoneuserdef2' => { 18 => 0x10a, 60 => 0xb4, 61 => 0xcc },
'colortoneuserdef3' => { 18 => 0x10b, 60 => 0xcc, 61 => 0xe4 },
- 'commanddials' => { 242 => '5.1' },
- 'commanddialsaperturesetting' => { 234 => '17.3', 235 => '18.3', 240 => '33.3', 241 => '17.3', 244 => '18.3' },
- 'commanddialschangemainsub' => { 234 => '17.2', 235 => '18.1', 240 => '33.2', 241 => '17.2', 244 => '18.1' },
- 'commanddialsmenuandplayback' => { 234 => '17.4', 235 => '18.2', 240 => '33.4', 241 => '17.4', 244 => '18.2' },
- 'commanddialsreverserotation' => { 234 => '17.1', 235 => '6.4', 237 => '16.2', 238 => '17.2', 240 => '33.1', 241 => '17.1', 244 => '6.2', 245 => '18.1' },
- 'commanderchannel' => { 242 => '10.2', 243 => '25.2' },
- 'commandergroupa_ttl-aacomp' => { 242 => '13.1', 243 => '31.1' },
- 'commandergroupa_ttlcomp' => { 245 => '32.1' },
- 'commandergroupamanualoutput' => { 242 => '13.2', 243 => '28.2' },
- 'commandergroupamode' => { 242 => '11.2', 243 => '28.1' },
- 'commandergroupb_ttl-aacomp' => { 242 => '14.1', 243 => '32.1' },
- 'commandergroupb_ttlcomp' => { 245 => '33.1' },
- 'commandergroupbmanualoutput' => { 242 => '14.2', 243 => '29.2' },
- 'commandergroupbmode' => { 242 => '11.3', 243 => '29.1' },
- 'commanderinternalflash' => { 242 => '11.1', 243 => '27.1' },
- 'commanderinternalmanualoutput' => { 242 => '12.2', 243 => '27.2' },
- 'commanderinternalttlchannel' => { 240 => '18.2' },
- 'commanderinternalttlcomp' => { 242 => '12.1', 243 => '30.2', 245 => '31.2' },
- 'commanderinternalttlcompbuiltin' => { 240 => '20.1', 241 => '26.1' },
- 'commanderinternalttlcompgroupa' => { 240 => '21.1', 241 => '27.1' },
- 'commanderinternalttlcompgroupb' => { 240 => '22.1', 241 => '28.1' },
- 'comment' => { 0 => 0x2, 105 => 'Comment', 135 => 'Comment', 259 => 'Comment' },
- 'compass' => { 326 => 0x4 },
- 'complianceprofile' => { 409 => 'complianceProfile' },
- 'componentsconfiguration' => { 104 => 0x9101, 140 => 'Components', 398 => 'ComponentsConfiguration' },
+ 'commanddials' => { 243 => '5.1' },
+ 'commanddialsaperturesetting' => { 235 => '17.3', 236 => '18.3', 241 => '33.3', 242 => '17.3', 245 => '18.3' },
+ 'commanddialschangemainsub' => { 235 => '17.2', 236 => '18.1', 241 => '33.2', 242 => '17.2', 245 => '18.1' },
+ 'commanddialsmenuandplayback' => { 235 => '17.4', 236 => '18.2', 241 => '33.4', 242 => '17.4', 245 => '18.2' },
+ 'commanddialsreverserotation' => { 235 => '17.1', 236 => '6.4', 238 => '16.2', 239 => '17.2', 241 => '33.1', 242 => '17.1', 245 => '6.2', 246 => '18.1' },
+ 'commanderchannel' => { 243 => '10.2', 244 => '25.2' },
+ 'commandergroupa_ttl-aacomp' => { 243 => '13.1', 244 => '31.1' },
+ 'commandergroupa_ttlcomp' => { 246 => '32.1' },
+ 'commandergroupamanualoutput' => { 243 => '13.2', 244 => '28.2' },
+ 'commandergroupamode' => { 243 => '11.2', 244 => '28.1' },
+ 'commandergroupb_ttl-aacomp' => { 243 => '14.1', 244 => '32.1' },
+ 'commandergroupb_ttlcomp' => { 246 => '33.1' },
+ 'commandergroupbmanualoutput' => { 243 => '14.2', 244 => '29.2' },
+ 'commandergroupbmode' => { 243 => '11.3', 244 => '29.1' },
+ 'commanderinternalflash' => { 243 => '11.1', 244 => '27.1' },
+ 'commanderinternalmanualoutput' => { 243 => '12.2', 244 => '27.2' },
+ 'commanderinternalttlchannel' => { 241 => '18.2' },
+ 'commanderinternalttlcomp' => { 243 => '12.1', 244 => '30.2', 246 => '31.2' },
+ 'commanderinternalttlcompbuiltin' => { 241 => '20.1', 242 => '26.1' },
+ 'commanderinternalttlcompgroupa' => { 241 => '21.1', 242 => '27.1' },
+ 'commanderinternalttlcompgroupb' => { 241 => '22.1', 242 => '28.1' },
+ 'comment' => { 0 => 0x2, 105 => 'Comment', 135 => 'Comment', 260 => 'Comment' },
+ 'compass' => { 327 => 0x4 },
+ 'complianceprofile' => { 410 => 'complianceProfile' },
+ 'componentsconfiguration' => { 104 => 0x9101, 140 => 'Components', 399 => 'ComponentsConfiguration' },
'componentversion' => { 85 => 0x80c },
- 'composer' => { 419 => 'composer' },
- 'compositionadjust' => { 299 => '0.1' },
- 'compositionadjustrotation' => { 299 => 0x7 },
- 'compositionadjustx' => { 299 => 0x5 },
- 'compositionadjusty' => { 299 => 0x6 },
- 'compressedbitsperpixel' => { 104 => 0x9102, 398 => 'CompressedBitsPerPixel' },
- 'compressedimagesize' => { 161 => 0x40, 252 => 0x40 },
- 'compression' => { 104 => 0x103, 415 => 'Compression' },
- 'compressionfactor' => { 247 => 0x50d },
- 'compressionratio' => { 140 => 'Compression', 252 => 0x1034 },
- 'confidencelevel' => { 389 => 'ConfidenceLevel' },
- 'constrainedcropheight' => { 95 => 0x266, 309 => 0xd6 },
- 'constrainedcropwidth' => { 95 => 0x262, 309 => 0xd5 },
+ 'composer' => { 420 => 'composer' },
+ 'compositionadjust' => { 300 => '0.1' },
+ 'compositionadjustrotation' => { 300 => 0x7 },
+ 'compositionadjustx' => { 300 => 0x5 },
+ 'compositionadjusty' => { 300 => 0x6 },
+ 'compressedbitsperpixel' => { 104 => 0x9102, 399 => 'CompressedBitsPerPixel' },
+ 'compressedimagesize' => { 161 => 0x40, 253 => 0x40 },
+ 'compression' => { 104 => 0x103, 416 => 'Compression' },
+ 'compressionfactor' => { 248 => 0x50d },
+ 'compressionratio' => { 140 => 'Compression', 253 => 0x1034 },
+ 'confidencelevel' => { 390 => 'ConfidenceLevel' },
+ 'constrainedcropheight' => { 95 => 0x266, 310 => 0xd6 },
+ 'constrainedcropwidth' => { 95 => 0x262, 310 => 0xd5 },
'contact' => { 112 => 0x76 },
- 'contactinfo' => { 408 => 'contactInfo' },
+ 'contactinfo' => { 409 => 'contactInfo' },
'contentlocationcode' => { 112 => 0x1a },
'contentlocationname' => { 112 => 0x1b },
- 'contenttype' => { 409 => 'contentType' },
+ 'contenttype' => { 410 => 'contentType' },
'continuousbracketing' => { 159 => 0x20 },
'continuousdrive' => { 30 => 0x5 },
'continuousshootingspeed' => { 72 => 0x610 },
'continuousshotlimit' => { 72 => 0x611 },
- 'contrast' => { 9 => 0x73, 11 => 0x75, 30 => 0xd, 99 => 0xc, 100 => [0x3012,0x20], 104 => [0xa408,0xfe54], 109 => [0x1004,0x1006], 134 => 'Contrast', 152 => 'Contrast', 156 => 0x20, 157 => 0x31, 158 => 0x27, 159 => 0x19, 164 => 0x2, 193 => 0x33, 252 => 0x1029, 267 => 0x39, 269 => 0x300a, 300 => 0x20, 307 => 0xc, 319 => 0x24, 323 => 0x1012, 332 => 0xd, 339 => 0x1d, 340 => 0x1a, 351 => 0x2004, 394 => 'Contrast', 398 => 'Contrast' },
- 'contrast2012' => { 394 => 'Contrast2012' },
- 'contrastadj' => { 90 => 0x20303, 95 => 0x115, 230 => 0x2c, 379 => 0x8017 },
+ 'contrast' => { 9 => 0x73, 11 => 0x75, 30 => 0xd, 99 => 0xc, 100 => [0x3012,0x20], 104 => [0xa408,0xfe54], 109 => [0x1004,0x1006], 134 => 'Contrast', 152 => 'Contrast', 156 => 0x20, 157 => 0x31, 158 => 0x27, 159 => 0x19, 164 => 0x2, 194 => 0x33, 253 => 0x1029, 268 => 0x39, 270 => 0x300a, 301 => 0x20, 308 => 0xc, 320 => 0x24, 324 => 0x1012, 333 => 0xd, 340 => 0x1d, 341 => 0x1a, 352 => 0x2004, 395 => 'Contrast', 399 => 'Contrast' },
+ 'contrast2012' => { 395 => 'Contrast2012' },
+ 'contrastadj' => { 90 => 0x20303, 95 => 0x115, 231 => 0x2c, 380 => 0x8017 },
'contrastauto' => { 61 => 0x90 },
- 'contrastcurve' => { 191 => 0x8c },
- 'contrastdetectaf' => { 167 => 0x4 },
- 'contrastdetectafarea' => { 300 => 0x231 },
- 'contrastdetectafinfocus' => { 167 => 0x1c },
+ 'contrastcurve' => { 192 => 0x8c },
+ 'contrastdetectaf' => { 168 => 0x4 },
+ 'contrastdetectafarea' => { 301 => 0x231 },
+ 'contrastdetectafinfocus' => { 168 => 0x1c },
'contrastfaithful' => { 18 => 0xec, 60 => 0x60, 61 => 0x60 },
- 'contrasthighlight' => { 300 => 0x6d },
- 'contrasthighlightshadowadj' => { 300 => 0x6f },
+ 'contrasthighlight' => { 301 => 0x6d },
+ 'contrasthighlightshadowadj' => { 301 => 0x6f },
'contrastlandscape' => { 18 => 0xea, 60 => 0x30, 61 => 0x30 },
- 'contrastmode' => { 267 => 0x2c },
+ 'contrastmode' => { 268 => 0x2c },
'contrastmonochrome' => { 18 => 0xed, 60 => 0x78, 61 => 0x78 },
'contrastneutral' => { 18 => 0xeb, 60 => 0x48, 61 => 0x48 },
'contrastportrait' => { 18 => 0xe9, 60 => 0x18, 61 => 0x18 },
- 'contrastsetting' => { 247 => 0x505, 255 => 0x1012, 341 => 0x10, 355 => 0x8 },
- 'contrastshadow' => { 300 => 0x6e },
+ 'contrastsetting' => { 248 => 0x505, 256 => 0x1012, 342 => 0x10, 356 => 0x8 },
+ 'contrastshadow' => { 301 => 0x6e },
'contraststandard' => { 18 => 0xe8, 60 => 0x0, 61 => 0x0 },
'contrastuserdef1' => { 18 => 0xee, 60 => 0x90, 61 => 0xa8 },
'contrastuserdef2' => { 18 => 0xef, 60 => 0xa8, 61 => 0xc0 },
'contrastuserdef3' => { 18 => 0xf0, 60 => 0xc0, 61 => 0xd8 },
- 'contributedmedia' => { 419 => 'contributedMedia' },
- 'contributedmediaduration' => { 419 => [\'contributedMedia','contributedMediaDuration'] },
- 'contributedmediadurationscale' => { 419 => [\'contributedMedia','contributedMediaDurationScale'] },
- 'contributedmediadurationvalue' => { 419 => [\'contributedMedia','contributedMediaDurationValue'] },
- 'contributedmediamanaged' => { 419 => [\'contributedMedia','contributedMediaManaged'] },
- 'contributedmediapath' => { 419 => [\'contributedMedia','contributedMediaPath'] },
- 'contributedmediastarttime' => { 419 => [\'contributedMedia','contributedMediaStartTime'] },
- 'contributedmediastarttimescale' => { 419 => [\'contributedMedia','contributedMediaStartTimeScale'] },
- 'contributedmediastarttimevalue' => { 419 => [\'contributedMedia','contributedMediaStartTimeValue'] },
- 'contributedmediatrack' => { 419 => [\'contributedMedia','contributedMediaTrack'] },
- 'contributedmediawebstatement' => { 419 => [\'contributedMedia','contributedMediaWebStatement'] },
- 'contributor' => { 395 => 'contributor' },
+ 'contributedmedia' => { 420 => 'contributedMedia' },
+ 'contributedmediaduration' => { 420 => [\'contributedMedia','contributedMediaDuration'] },
+ 'contributedmediadurationscale' => { 420 => [\'contributedMedia','contributedMediaDurationScale'] },
+ 'contributedmediadurationvalue' => { 420 => [\'contributedMedia','contributedMediaDurationValue'] },
+ 'contributedmediamanaged' => { 420 => [\'contributedMedia','contributedMediaManaged'] },
+ 'contributedmediapath' => { 420 => [\'contributedMedia','contributedMediaPath'] },
+ 'contributedmediastarttime' => { 420 => [\'contributedMedia','contributedMediaStartTime'] },
+ 'contributedmediastarttimescale' => { 420 => [\'contributedMedia','contributedMediaStartTimeScale'] },
+ 'contributedmediastarttimevalue' => { 420 => [\'contributedMedia','contributedMediaStartTimeValue'] },
+ 'contributedmediatrack' => { 420 => [\'contributedMedia','contributedMediaTrack'] },
+ 'contributedmediawebstatement' => { 420 => [\'contributedMedia','contributedMediaWebStatement'] },
+ 'contributor' => { 396 => 'contributor' },
'contributors' => { 135 => 'Contributors' },
'controldialset' => { 159 => 0x46 },
- 'controlledvocabularyterm' => { 404 => 'CVterm' },
- 'controllerboardversion' => { 263 => 0x332 },
+ 'controlledvocabularyterm' => { 405 => 'CVterm' },
+ 'controllerboardversion' => { 264 => 0x332 },
'controlmode' => { 66 => 0x12 },
- 'conversionlens' => { 248 => 0x403, 267 => 0x35 },
- 'converter' => { 104 => 0xfe4d, 217 => 0xb, 394 => 'Converter' },
- 'converttograyscale' => { 394 => 'ConvertToGrayscale' },
- 'cookingequipment' => { 411 => 'cookingEquipment' },
- 'cookingmethod' => { 411 => 'cookingMethod' },
- 'copyright' => { 0 => 0x3, 104 => 0x8298, 135 => 'Copyright', 259 => 'Copyright', 300 => 0x22f, 314 => 'Copyright', 405 => 'Copyright', 412 => 'copyright', 415 => 'Copyright', 419 => 'copyright' },
- 'copyrightflag' => { 312 => 0x40a },
+ 'conversionlens' => { 249 => 0x403, 268 => 0x35 },
+ 'converter' => { 104 => 0xfe4d, 218 => 0xb, 395 => 'Converter' },
+ 'converttograyscale' => { 395 => 'ConvertToGrayscale' },
+ 'cookingequipment' => { 412 => 'cookingEquipment' },
+ 'cookingmethod' => { 412 => 'cookingMethod' },
+ 'copyright' => { 0 => 0x3, 104 => 0x8298, 135 => 'Copyright', 260 => 'Copyright', 301 => 0x22f, 315 => 'Copyright', 406 => 'Copyright', 413 => 'copyright', 416 => 'Copyright', 420 => 'copyright' },
+ 'copyrightflag' => { 313 => 0x40a },
'copyrightnotice' => { 112 => 0x74 },
- 'copyrightowner' => { 407 => 'CopyrightOwner' },
- 'copyrightownerid' => { 407 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerID'] },
- 'copyrightownerimageid' => { 407 => 'CopyrightOwnerImageID' },
- 'copyrightownername' => { 407 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerName'] },
- 'copyrightregistrationnumber' => { 407 => 'CopyrightRegistrationNumber' },
- 'copyrightstatus' => { 407 => 'CopyrightStatus' },
- 'copyrightyear' => { 409 => 'copyrightYear' },
- 'coringfilter' => { 251 => 0x310, 252 => 0x102d, 255 => 0x310 },
- 'coringvalues' => { 251 => 0x311, 255 => 0x311 },
- 'corporateentity' => { 409 => 'corporateEntity' },
- 'country' => { 139 => 'Country', 267 => 0x69, 406 => 'Country' },
+ 'copyrightowner' => { 408 => 'CopyrightOwner' },
+ 'copyrightownerid' => { 408 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerID'] },
+ 'copyrightownerimageid' => { 408 => 'CopyrightOwnerImageID' },
+ 'copyrightownername' => { 408 => [\'CopyrightOwner','CopyrightOwnerCopyrightOwnerName'] },
+ 'copyrightregistrationnumber' => { 408 => 'CopyrightRegistrationNumber' },
+ 'copyrightstatus' => { 408 => 'CopyrightStatus' },
+ 'copyrightyear' => { 410 => 'copyrightYear' },
+ 'coringfilter' => { 252 => 0x310, 253 => 0x102d, 256 => 0x310 },
+ 'coringvalues' => { 252 => 0x311, 256 => 0x311 },
+ 'corporateentity' => { 410 => 'corporateEntity' },
+ 'country' => { 139 => 'Country', 268 => 0x69, 407 => 'Country' },
'country-primarylocationcode' => { 112 => 0x64 },
'country-primarylocationname' => { 112 => 0x65 },
- 'countrycode' => { 190 => 0x5, 310 => 'CountryCode', 403 => 'CountryCode' },
- 'course' => { 411 => 'course' },
- 'coverage' => { 395 => 'coverage' },
- 'coverdate' => { 409 => 'coverDate' },
- 'coverdisplaydate' => { 409 => 'coverDisplayDate' },
- 'cpufirmwareversion' => { 300 => 0x28 },
- 'crc32' => { 396 => 'crc32' },
- 'createdate' => { 104 => 0x9004, 135 => 'CreateDate', 256 => 'CreationDate', 259 => 'create-date', 314 => 'CreationDate', 316 => 0x1, 417 => 'CreateDate' },
- 'creationdate' => { 405 => 'CreationDate', 409 => 'creationDate' },
- 'creationtime' => { 259 => 'Creation Time' },
- 'creativestyle' => { 339 => 0x1a, 340 => 0x18, 350 => 0x41, 351 => 0xb020, 375 => 0x4a },
- 'creativestylesetting' => { 341 => 0xf, 355 => 0x7 },
- 'creativestylewaschanged' => { 379 => 0x8001 },
- 'creator' => { 256 => 'Creator', 314 => 'Creator', 395 => 'creator', 405 => 'Creator' },
- 'creatoraddress' => { 403 => [\'CreatorContactInfo','CreatorContactInfoCiAdrExtadr'] },
+ 'countrycode' => { 191 => 0x5, 311 => 'CountryCode', 404 => 'CountryCode' },
+ 'course' => { 412 => 'course' },
+ 'coverage' => { 396 => 'coverage' },
+ 'coverdate' => { 410 => 'coverDate' },
+ 'coverdisplaydate' => { 410 => 'coverDisplayDate' },
+ 'cpufirmwareversion' => { 301 => 0x28 },
+ 'crc32' => { 397 => 'crc32' },
+ 'createdate' => { 104 => 0x9004, 135 => 'CreateDate', 257 => 'CreationDate', 260 => 'create-date', 315 => 'CreationDate', 317 => 0x1, 418 => 'CreateDate' },
+ 'creationdate' => { 406 => 'CreationDate', 410 => 'creationDate' },
+ 'creationtime' => { 260 => 'Creation Time' },
+ 'creativestyle' => { 340 => 0x1a, 341 => 0x18, 351 => 0x41, 352 => 0xb020, 376 => 0x4a },
+ 'creativestylesetting' => { 342 => 0xf, 356 => 0x7 },
+ 'creativestylewaschanged' => { 380 => 0x8001 },
+ 'creator' => { 257 => 'Creator', 315 => 'Creator', 396 => 'creator', 406 => 'Creator' },
+ 'creatoraddress' => { 404 => [\'CreatorContactInfo','CreatorContactInfoCiAdrExtadr'] },
'creatorappid' => { 154 => 'CreatorAppId' },
- 'creatorcity' => { 403 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCity'] },
- 'creatorcontactinfo' => { 403 => 'CreatorContactInfo' },
- 'creatorcountry' => { 403 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCtry'] },
+ 'creatorcity' => { 404 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCity'] },
+ 'creatorcontactinfo' => { 404 => 'CreatorContactInfo' },
+ 'creatorcountry' => { 404 => [\'CreatorContactInfo','CreatorContactInfoCiAdrCtry'] },
'creatoropenwithuioptions' => { 154 => 'CreatorOpenWithUIOptions' },
- 'creatorpostalcode' => { 403 => [\'CreatorContactInfo','CreatorContactInfoCiAdrPcode'] },
- 'creatorregion' => { 403 => [\'CreatorContactInfo','CreatorContactInfoCiAdrRegion'] },
- 'creatortool' => { 417 => 'CreatorTool' },
- 'creatorworkemail' => { 403 => [\'CreatorContactInfo','CreatorContactInfoCiEmailWork'] },
- 'creatorworktelephone' => { 403 => [\'CreatorContactInfo','CreatorContactInfoCiTelWork'] },
- 'creatorworkurl' => { 403 => [\'CreatorContactInfo','CreatorContactInfoCiUrlWork'] },
- 'credit' => { 112 => 0x6e, 406 => 'Credit' },
- 'creditline' => { 412 => 'creditLine' },
- 'creditlinereq' => { 422 => 'CreditLineReq' },
- 'creditlinerequired' => { 407 => 'CreditLineRequired' },
+ 'creatorpostalcode' => { 404 => [\'CreatorContactInfo','CreatorContactInfoCiAdrPcode'] },
+ 'creatorregion' => { 404 => [\'CreatorContactInfo','CreatorContactInfoCiAdrRegion'] },
+ 'creatortool' => { 418 => 'CreatorTool' },
+ 'creatorworkemail' => { 404 => [\'CreatorContactInfo','CreatorContactInfoCiEmailWork'] },
+ 'creatorworktelephone' => { 404 => [\'CreatorContactInfo','CreatorContactInfoCiTelWork'] },
+ 'creatorworkurl' => { 404 => [\'CreatorContactInfo','CreatorContactInfoCiUrlWork'] },
+ 'credit' => { 112 => 0x6e, 407 => 'Credit' },
+ 'creditline' => { 413 => 'creditLine' },
+ 'creditlinereq' => { 423 => 'CreditLineReq' },
+ 'creditlinerequired' => { 408 => 'CreditLineRequired' },
'cropactive' => { 89 => 0x0, 95 => 0x244 },
- 'cropangle' => { 394 => 'CropAngle' },
+ 'cropangle' => { 395 => 'CropAngle' },
'cropaspectratio' => { 90 => 0x30101, 95 => 0x260 },
'cropaspectratiocustom' => { 90 => 0x30102 },
- 'cropbottom' => { 108 => 0x9, 222 => 0x36, 271 => 0x31, 309 => 0xdc, 394 => 'CropBottom' },
+ 'cropbottom' => { 108 => 0x9, 223 => 0x36, 272 => 0x31, 310 => 0xdc, 395 => 'CropBottom' },
'cropbottommargin' => { 44 => 0x3 },
'cropcircleactive' => { 96 => 0xd6 },
'cropcircleradius' => { 96 => 0xd9 },
'cropcirclex' => { 96 => 0xd7 },
'cropcircley' => { 96 => 0xd8 },
- 'cropconstraintowarp' => { 394 => 'CropConstrainToWarp' },
- 'croph' => { 387 => 'CropH' },
- 'cropheight' => { 89 => 0x6, 95 => 0x24c, 251 => 0x615, 255 => 0x615, 394 => 'CropHeight' },
- 'crophispeed' => { 191 => 0x1b },
- 'cropleft' => { 95 => 0x246, 108 => 0x6, 222 => 0x1e, 251 => 0x612, 255 => 0x612, 271 => 0x30, 309 => 0xd9, 394 => 'CropLeft' },
+ 'cropconstraintowarp' => { 395 => 'CropConstrainToWarp' },
+ 'croph' => { 388 => 'CropH' },
+ 'cropheight' => { 89 => 0x6, 95 => 0x24c, 252 => 0x615, 256 => 0x615, 395 => 'CropHeight' },
+ 'crophispeed' => { 192 => 0x1b },
+ 'cropleft' => { 95 => 0x246, 108 => 0x6, 223 => 0x1e, 252 => 0x612, 256 => 0x612, 272 => 0x30, 310 => 0xd9, 395 => 'CropLeft' },
'cropleftmargin' => { 44 => 0x0 },
- 'cropmode35mm' => { 323 => 0x1018 },
+ 'cropmode35mm' => { 324 => 0x1018 },
'croporiginalheight' => { 89 => 0xb },
'croporiginalwidth' => { 89 => 0xa },
- 'cropoutputheight' => { 222 => 0xce },
- 'cropoutputheightinches' => { 222 => 0x96 },
- 'cropoutputpixels' => { 222 => 0xd6 },
- 'cropoutputresolution' => { 222 => 0xb6 },
- 'cropoutputscale' => { 222 => 0xbe },
- 'cropoutputwidth' => { 222 => 0xc6 },
- 'cropoutputwidthinches' => { 222 => 0x8e },
- 'croppedareaimageheightpixels' => { 383 => 'CroppedAreaImageHeightPixels' },
- 'croppedareaimagewidthpixels' => { 383 => 'CroppedAreaImageWidthPixels' },
- 'croppedarealeftpixels' => { 383 => 'CroppedAreaLeftPixels' },
- 'croppedareatoppixels' => { 383 => 'CroppedAreaTopPixels' },
- 'croppedimageheight' => { 5 => 0x2, 323 => 0x1604 },
+ 'cropoutputheight' => { 223 => 0xce },
+ 'cropoutputheightinches' => { 223 => 0x96 },
+ 'cropoutputpixels' => { 223 => 0xd6 },
+ 'cropoutputresolution' => { 223 => 0xb6 },
+ 'cropoutputscale' => { 223 => 0xbe },
+ 'cropoutputwidth' => { 223 => 0xc6 },
+ 'cropoutputwidthinches' => { 223 => 0x8e },
+ 'croppedareaimageheightpixels' => { 384 => 'CroppedAreaImageHeightPixels' },
+ 'croppedareaimagewidthpixels' => { 384 => 'CroppedAreaImageWidthPixels' },
+ 'croppedarealeftpixels' => { 384 => 'CroppedAreaLeftPixels' },
+ 'croppedareatoppixels' => { 384 => 'CroppedAreaTopPixels' },
+ 'croppedimageheight' => { 5 => 0x2, 324 => 0x1604 },
'croppedimageleft' => { 5 => 0x3 },
'croppedimagetop' => { 5 => 0x4 },
- 'croppedimagewidth' => { 5 => 0x1, 323 => 0x1603 },
- 'cropright' => { 108 => 0x8, 222 => 0x2e, 271 => 0x32, 309 => 0xdb, 394 => 'CropRight' },
+ 'croppedimagewidth' => { 5 => 0x1, 324 => 0x1603 },
+ 'cropright' => { 108 => 0x8, 223 => 0x2e, 272 => 0x32, 310 => 0xdb, 395 => 'CropRight' },
'croprightmargin' => { 44 => 0x1 },
'croprotatedoriginalheight' => { 89 => 0x2 },
'croprotatedoriginalwidth' => { 89 => 0x1 },
'croprotation' => { 89 => 0x8, 108 => 0xb },
- 'cropscaledresolution' => { 222 => 0x9e },
- 'cropsourceresolution' => { 222 => 0xae },
- 'croptop' => { 95 => 0x248, 108 => 0x7, 222 => 0x26, 251 => 0x613, 255 => 0x613, 271 => 0x2f, 309 => 0xda, 394 => 'CropTop' },
+ 'cropscaledresolution' => { 223 => 0x9e },
+ 'cropsourceresolution' => { 223 => 0xae },
+ 'croptop' => { 95 => 0x248, 108 => 0x7, 223 => 0x26, 252 => 0x613, 256 => 0x613, 272 => 0x2f, 310 => 0xda, 395 => 'CropTop' },
'croptopmargin' => { 44 => 0x2 },
- 'cropunit' => { 394 => 'CropUnit' },
- 'cropunits' => { 394 => 'CropUnits' },
- 'cropw' => { 387 => 'CropW' },
- 'cropwidth' => { 89 => 0x5, 95 => 0x24a, 251 => 0x614, 255 => 0x614, 394 => 'CropWidth' },
- 'cropx' => { 89 => 0x3, 387 => 'CropX' },
- 'cropy' => { 89 => 0x4, 387 => 'CropY' },
- 'crossprocess' => { 300 => 0x7b },
- 'crossprocessparams' => { 300 => 0x235 },
- 'cuisine' => { 411 => 'cuisine' },
+ 'cropunit' => { 395 => 'CropUnit' },
+ 'cropunits' => { 395 => 'CropUnits' },
+ 'cropw' => { 388 => 'CropW' },
+ 'cropwidth' => { 89 => 0x5, 95 => 0x24a, 252 => 0x614, 256 => 0x614, 395 => 'CropWidth' },
+ 'cropx' => { 89 => 0x3, 388 => 'CropX' },
+ 'cropy' => { 89 => 0x4, 388 => 'CropY' },
+ 'crossprocess' => { 301 => 0x7b },
+ 'crossprocessparams' => { 301 => 0x235 },
+ 'cuisine' => { 412 => 'cuisine' },
'currenticcprofile' => { 104 => 0xc691 },
'currentpreprofilematrix' => { 104 => 0xc692 },
- 'currentversion' => { 379 => 0xd000 },
- 'curve0x' => { 387 => 'Curve0x' },
- 'curve0y' => { 387 => 'Curve0y' },
- 'curve1x' => { 387 => 'Curve1x' },
- 'curve1y' => { 387 => 'Curve1y' },
- 'curve2x' => { 387 => 'Curve2x' },
- 'curve2y' => { 387 => 'Curve2y' },
- 'curve3x' => { 387 => 'Curve3x' },
- 'curve3y' => { 387 => 'Curve3y' },
- 'curve4x' => { 387 => 'Curve4x' },
- 'curve4y' => { 387 => 'Curve4y' },
- 'curves' => { 227 => 0x76a43201 },
- 'custom1' => { 407 => 'Custom1' },
- 'custom10' => { 407 => 'Custom10' },
- 'custom2' => { 407 => 'Custom2' },
- 'custom3' => { 407 => 'Custom3' },
- 'custom4' => { 407 => 'Custom4' },
- 'custom5' => { 407 => 'Custom5' },
- 'custom6' => { 407 => 'Custom6' },
- 'custom7' => { 407 => 'Custom7' },
- 'custom8' => { 407 => 'Custom8' },
- 'custom9' => { 407 => 'Custom9' },
+ 'currentversion' => { 380 => 0xd000 },
+ 'curve0x' => { 388 => 'Curve0x' },
+ 'curve0y' => { 388 => 'Curve0y' },
+ 'curve1x' => { 388 => 'Curve1x' },
+ 'curve1y' => { 388 => 'Curve1y' },
+ 'curve2x' => { 388 => 'Curve2x' },
+ 'curve2y' => { 388 => 'Curve2y' },
+ 'curve3x' => { 388 => 'Curve3x' },
+ 'curve3y' => { 388 => 'Curve3y' },
+ 'curve4x' => { 388 => 'Curve4x' },
+ 'curve4y' => { 388 => 'Curve4y' },
+ 'curves' => { 228 => 0x76a43201 },
+ 'custom1' => { 408 => 'Custom1' },
+ 'custom10' => { 408 => 'Custom10' },
+ 'custom2' => { 408 => 'Custom2' },
+ 'custom3' => { 408 => 'Custom3' },
+ 'custom4' => { 408 => 'Custom4' },
+ 'custom5' => { 408 => 'Custom5' },
+ 'custom6' => { 408 => 'Custom6' },
+ 'custom7' => { 408 => 'Custom7' },
+ 'custom8' => { 408 => 'Custom8' },
+ 'custom9' => { 408 => 'Custom9' },
'customcolortone' => { 96 => 0x4c },
'customcontrast' => { 96 => 0x4e },
'customcontrols' => { 72 => 0x70c },
@@ -1447,52 +1448,52 @@ my %tagLookup = (
'customrawhighlightpoint' => { 96 => 0x51 },
'customrawshadow' => { 96 => 0x85 },
'customrawshadowpoint' => { 96 => 0x52 },
- 'customrendered' => { 104 => 0xa401, 398 => 'CustomRendered' },
- 'customsaturation' => { 96 => 0x4d, 247 => 0x503 },
- 'customsettingsalldefault' => { 234 => '0.2', 240 => '0.2' },
- 'customsettingsbank' => { 234 => '0.1', 235 => '0.1', 240 => '0.1', 244 => '0.2' },
+ 'customrendered' => { 104 => 0xa401, 399 => 'CustomRendered' },
+ 'customsaturation' => { 96 => 0x4d, 248 => 0x503 },
+ 'customsettingsalldefault' => { 235 => '0.2', 241 => '0.2' },
+ 'customsettingsbank' => { 235 => '0.1', 236 => '0.1', 241 => '0.1', 245 => '0.2' },
'customsharpness' => { 96 => 0x50 },
'customunsharpmaskfineness' => { 96 => 0xb8 },
'customunsharpmaskstrength' => { 96 => 0xb6 },
'customunsharpmaskthreshold' => { 96 => 0xba },
- 'customwb_rblevels' => { 355 => 0x1a },
- 'customwb_rgblevels' => { 340 => 0x8, 341 => 0x19 },
+ 'customwb_rblevels' => { 356 => 0x1a },
+ 'customwb_rgblevels' => { 341 => 0x8, 342 => 0x19 },
'customwbbluelevel' => { 159 => 0x36 },
'customwberror' => { 159 => 0x37 },
'customwbgreenlevel' => { 159 => 0x35 },
'customwbredlevel' => { 159 => 0x34 },
'customwbsetting' => { 159 => 0x26 },
- 'd-lightinghq' => { 227 => 0x2175eb78 },
- 'd-lightinghqcolorboost' => { 223 => 0x2 },
- 'd-lightinghqhighlight' => { 223 => 0x1 },
- 'd-lightinghqselected' => { 227 => 0x6a6e36b6 },
- 'd-lightinghqshadow' => { 223 => 0x0 },
- 'd-lightinghs' => { 227 => 0xce5554aa },
- 'd-lightinghsadjustment' => { 224 => 0x0 },
- 'd-lightinghscolorboost' => { 224 => 0x1 },
- 'd-rangeoptimizerhighlight' => { 379 => 0x8024 },
- 'd-rangeoptimizermode' => { 379 => 0x8022 },
- 'd-rangeoptimizershadow' => { 379 => 0x802d },
- 'd-rangeoptimizervalue' => { 379 => 0x8023 },
- 'd810meteringmode' => { 215 => 0x175e },
+ 'd-lightinghq' => { 228 => 0x2175eb78 },
+ 'd-lightinghqcolorboost' => { 224 => 0x2 },
+ 'd-lightinghqhighlight' => { 224 => 0x1 },
+ 'd-lightinghqselected' => { 228 => 0x6a6e36b6 },
+ 'd-lightinghqshadow' => { 224 => 0x0 },
+ 'd-lightinghs' => { 228 => 0xce5554aa },
+ 'd-lightinghsadjustment' => { 225 => 0x0 },
+ 'd-lightinghscolorboost' => { 225 => 0x1 },
+ 'd-rangeoptimizerhighlight' => { 380 => 0x8024 },
+ 'd-rangeoptimizermode' => { 380 => 0x8022 },
+ 'd-rangeoptimizershadow' => { 380 => 0x802d },
+ 'd-rangeoptimizervalue' => { 380 => 0x8023 },
+ 'd810meteringmode' => { 216 => 0x175e },
'datacompressionmethod' => { 114 => 0x6e },
'dataimprint' => { 156 => 0x34 },
- 'datascaling' => { 300 => 0x3d },
- 'date' => { 300 => 0x6, 395 => 'date' },
+ 'datascaling' => { 301 => 0x3d },
+ 'date' => { 301 => 0x6, 396 => 'date' },
'dateacquired' => { 154 => 'DateAcquired' },
- 'datecreated' => { 112 => 0x37, 406 => 'DateCreated' },
- 'datedisplayformat' => { 219 => 0x3 },
+ 'datecreated' => { 112 => 0x37, 407 => 'DateCreated' },
+ 'datedisplayformat' => { 220 => 0x3 },
'dateidentified' => { 103 => [\'Identification','IdentificationDateIdentified'] },
- 'dateimprint' => { 237 => '4.2' },
- 'daterecieved' => { 409 => 'dateRecieved' },
+ 'dateimprint' => { 238 => '4.2' },
+ 'daterecieved' => { 410 => 'dateRecieved' },
'datesent' => { 113 => 0x46 },
'datestampmode' => { 54 => 0x1c },
- 'datetime' => { 388 => 'datetime', 415 => 'DateTime' },
- 'datetimedigitized' => { 398 => 'DateTimeDigitized' },
- 'datetimeoriginal' => { 88 => 0x0, 104 => 0x9003, 132 => 0x14, 135 => 'OriginalDate', 319 => 0xb, 398 => 'DateTimeOriginal' },
+ 'datetime' => { 389 => 'datetime', 416 => 'DateTime' },
+ 'datetimedigitized' => { 399 => 'DateTimeDigitized' },
+ 'datetimeoriginal' => { 88 => 0x0, 104 => 0x9003, 132 => 0x14, 135 => 'OriginalDate', 320 => 0xb, 399 => 'DateTimeOriginal' },
'datetimestamp' => { 120 => 0x64 },
- 'datetimeutc' => { 247 => 0x908 },
- 'daylightsavings' => { 67 => 0x3, 219 => 0x2 },
+ 'datetimeutc' => { 248 => 0x908 },
+ 'daylightsavings' => { 67 => 0x3, 220 => 0x2 },
'dccontinent' => { 103 => [\'dctermsLocation','dctermsLocationContinent'] },
'dccoordinateprecision' => { 103 => [\'dctermsLocation','dctermsLocationCoordinatePrecision'] },
'dccoordinateuncertaintyinmeters' => { 103 => [\'dctermsLocation','dctermsLocationCoordinateUncertaintyInMeters'] },
@@ -1547,213 +1548,212 @@ my %tagLookup = (
'defaulteraseoption' => { 72 => 0x813 },
'defaultscale' => { 104 => 0xc61e },
'defaultusercrop' => { 104 => 0xc7b5 },
- 'defringe' => { 394 => 'Defringe' },
- 'defringegreenamount' => { 394 => 'DefringeGreenAmount' },
- 'defringegreenhuehi' => { 394 => 'DefringeGreenHueHi' },
- 'defringegreenhuelo' => { 394 => 'DefringeGreenHueLo' },
- 'defringepurpleamount' => { 394 => 'DefringePurpleAmount' },
- 'defringepurplehuehi' => { 394 => 'DefringePurpleHueHi' },
- 'defringepurplehuelo' => { 394 => 'DefringePurpleHueLo' },
- 'deletedimagecount' => { 191 => 0xa6, 198 => 0x6e },
- 'deprecatedon' => { 391 => 'deprecatedOn' },
- 'derivedfrom' => { 420 => 'DerivedFrom' },
- 'derivedfromalternatepaths' => { 420 => [\'DerivedFrom','DerivedFromAlternatePaths'] },
- 'derivedfromdocumentid' => { 420 => [\'DerivedFrom','DerivedFromDocumentID'] },
- 'derivedfromfilepath' => { 420 => [\'DerivedFrom','DerivedFromFilePath'] },
- 'derivedfromfrompart' => { 420 => [\'DerivedFrom','DerivedFromFromPart'] },
- 'derivedfrominstanceid' => { 420 => [\'DerivedFrom','DerivedFromInstanceID'] },
- 'derivedfromlastmodifydate' => { 420 => [\'DerivedFrom','DerivedFromLastModifyDate'] },
- 'derivedfrommanager' => { 420 => [\'DerivedFrom','DerivedFromManager'] },
- 'derivedfrommanagervariant' => { 420 => [\'DerivedFrom','DerivedFromManagerVariant'] },
- 'derivedfrommanageto' => { 420 => [\'DerivedFrom','DerivedFromManageTo'] },
- 'derivedfrommanageui' => { 420 => [\'DerivedFrom','DerivedFromManageUI'] },
- 'derivedfrommaskmarkers' => { 420 => [\'DerivedFrom','DerivedFromMaskMarkers'] },
- 'derivedfromoriginaldocumentid' => { 420 => [\'DerivedFrom','DerivedFromOriginalDocumentID'] },
- 'derivedfrompartmapping' => { 420 => [\'DerivedFrom','DerivedFromPartMapping'] },
- 'derivedfromrenditionclass' => { 420 => [\'DerivedFrom','DerivedFromRenditionClass'] },
- 'derivedfromrenditionparams' => { 420 => [\'DerivedFrom','DerivedFromRenditionParams'] },
- 'derivedfromtopart' => { 420 => [\'DerivedFrom','DerivedFromToPart'] },
- 'derivedfromversionid' => { 420 => [\'DerivedFrom','DerivedFromVersionID'] },
- 'description' => { 259 => 'Description', 395 => 'description', 417 => 'Description' },
+ 'defringe' => { 395 => 'Defringe' },
+ 'defringegreenamount' => { 395 => 'DefringeGreenAmount' },
+ 'defringegreenhuehi' => { 395 => 'DefringeGreenHueHi' },
+ 'defringegreenhuelo' => { 395 => 'DefringeGreenHueLo' },
+ 'defringepurpleamount' => { 395 => 'DefringePurpleAmount' },
+ 'defringepurplehuehi' => { 395 => 'DefringePurpleHueHi' },
+ 'defringepurplehuelo' => { 395 => 'DefringePurpleHueLo' },
+ 'deletedimagecount' => { 192 => 0xa6, 199 => 0x6e },
+ 'deprecatedon' => { 392 => 'deprecatedOn' },
+ 'derivedfrom' => { 421 => 'DerivedFrom' },
+ 'derivedfromalternatepaths' => { 421 => [\'DerivedFrom','DerivedFromAlternatePaths'] },
+ 'derivedfromdocumentid' => { 421 => [\'DerivedFrom','DerivedFromDocumentID'] },
+ 'derivedfromfilepath' => { 421 => [\'DerivedFrom','DerivedFromFilePath'] },
+ 'derivedfromfrompart' => { 421 => [\'DerivedFrom','DerivedFromFromPart'] },
+ 'derivedfrominstanceid' => { 421 => [\'DerivedFrom','DerivedFromInstanceID'] },
+ 'derivedfromlastmodifydate' => { 421 => [\'DerivedFrom','DerivedFromLastModifyDate'] },
+ 'derivedfrommanager' => { 421 => [\'DerivedFrom','DerivedFromManager'] },
+ 'derivedfrommanagervariant' => { 421 => [\'DerivedFrom','DerivedFromManagerVariant'] },
+ 'derivedfrommanageto' => { 421 => [\'DerivedFrom','DerivedFromManageTo'] },
+ 'derivedfrommanageui' => { 421 => [\'DerivedFrom','DerivedFromManageUI'] },
+ 'derivedfrommaskmarkers' => { 421 => [\'DerivedFrom','DerivedFromMaskMarkers'] },
+ 'derivedfromoriginaldocumentid' => { 421 => [\'DerivedFrom','DerivedFromOriginalDocumentID'] },
+ 'derivedfrompartmapping' => { 421 => [\'DerivedFrom','DerivedFromPartMapping'] },
+ 'derivedfromrenditionclass' => { 421 => [\'DerivedFrom','DerivedFromRenditionClass'] },
+ 'derivedfromrenditionparams' => { 421 => [\'DerivedFrom','DerivedFromRenditionParams'] },
+ 'derivedfromtopart' => { 421 => [\'DerivedFrom','DerivedFromToPart'] },
+ 'derivedfromversionid' => { 421 => [\'DerivedFrom','DerivedFromVersionID'] },
+ 'description' => { 260 => 'Description', 396 => 'description', 418 => 'Description' },
'destination' => { 113 => 0x5 },
- 'destinationcity' => { 300 => 0x24, 306 => 0x3 },
- 'destinationcitycode' => { 307 => 0x1001 },
- 'destinationdst' => { 300 => 0x26, 306 => '0.3' },
+ 'destinationcity' => { 301 => 0x24, 307 => 0x3 },
+ 'destinationcitycode' => { 308 => 0x1001 },
+ 'destinationdst' => { 301 => 0x26, 307 => '0.3' },
'developmentdynamicrange' => { 109 => 0x1403 },
- 'device' => { 409 => 'device' },
- 'devicesettingdescription' => { 398 => 'DeviceSettingDescription' },
- 'devicesettingdescriptioncolumns' => { 398 => [\'DeviceSettingDescription','DeviceSettingDescriptionColumns'] },
- 'devicesettingdescriptionrows' => { 398 => [\'DeviceSettingDescription','DeviceSettingDescriptionRows'] },
- 'devicesettingdescriptionsettings' => { 398 => [\'DeviceSettingDescription','DeviceSettingDescriptionSettings'] },
- 'devicetype' => { 329 => 0x2 },
+ 'device' => { 410 => 'device' },
+ 'devicesettingdescription' => { 399 => 'DeviceSettingDescription' },
+ 'devicesettingdescriptioncolumns' => { 399 => [\'DeviceSettingDescription','DeviceSettingDescriptionColumns'] },
+ 'devicesettingdescriptionrows' => { 399 => [\'DeviceSettingDescription','DeviceSettingDescriptionRows'] },
+ 'devicesettingdescriptionsettings' => { 399 => [\'DeviceSettingDescription','DeviceSettingDescriptionSettings'] },
+ 'devicetype' => { 330 => 0x2 },
'dialdirectiontvav' => { 72 => 0x706 },
- 'dietaryneeds' => { 411 => 'dietaryNeeds' },
- 'diffractioncorrection' => { 290 => 0x3 },
+ 'dietaryneeds' => { 412 => 'dietaryNeeds' },
+ 'diffractioncorrection' => { 291 => 0x3 },
'digitalcreationdate' => { 112 => 0x3e },
'digitalcreationtime' => { 112 => 0x3f },
- 'digitaldeehighlightadj' => { 197 => 0x202 },
- 'digitaldeeshadowadj' => { 197 => 0x200 },
- 'digitaldeethreshold' => { 197 => 0x201 },
- 'digitalfilter' => { 332 => 0x59 },
- 'digitalfilter01' => { 287 => 0x5 },
- 'digitalfilter02' => { 287 => 0x16 },
- 'digitalfilter03' => { 287 => 0x27 },
- 'digitalfilter04' => { 287 => 0x38 },
- 'digitalfilter05' => { 287 => 0x49 },
- 'digitalfilter06' => { 287 => 0x5a },
- 'digitalfilter07' => { 287 => 0x6b },
- 'digitalfilter08' => { 287 => 0x7c },
- 'digitalfilter09' => { 287 => 0x8d },
- 'digitalfilter10' => { 287 => 0x9e },
- 'digitalfilter11' => { 287 => 0xaf },
- 'digitalfilter12' => { 287 => 0xc0 },
- 'digitalfilter13' => { 287 => 0xd1 },
- 'digitalfilter14' => { 287 => 0xe2 },
- 'digitalfilter15' => { 287 => 0xf3 },
- 'digitalfilter16' => { 287 => 0x104 },
- 'digitalfilter17' => { 287 => 0x115 },
- 'digitalfilter18' => { 287 => 0x126 },
- 'digitalfilter19' => { 287 => 0x137 },
- 'digitalfilter20' => { 287 => 0x148 },
+ 'digitaldeehighlightadj' => { 198 => 0x202 },
+ 'digitaldeeshadowadj' => { 198 => 0x200 },
+ 'digitaldeethreshold' => { 198 => 0x201 },
+ 'digitalfilter' => { 333 => 0x59 },
+ 'digitalfilter01' => { 288 => 0x5 },
+ 'digitalfilter02' => { 288 => 0x16 },
+ 'digitalfilter03' => { 288 => 0x27 },
+ 'digitalfilter04' => { 288 => 0x38 },
+ 'digitalfilter05' => { 288 => 0x49 },
+ 'digitalfilter06' => { 288 => 0x5a },
+ 'digitalfilter07' => { 288 => 0x6b },
+ 'digitalfilter08' => { 288 => 0x7c },
+ 'digitalfilter09' => { 288 => 0x8d },
+ 'digitalfilter10' => { 288 => 0x9e },
+ 'digitalfilter11' => { 288 => 0xaf },
+ 'digitalfilter12' => { 288 => 0xc0 },
+ 'digitalfilter13' => { 288 => 0xd1 },
+ 'digitalfilter14' => { 288 => 0xe2 },
+ 'digitalfilter15' => { 288 => 0xf3 },
+ 'digitalfilter16' => { 288 => 0x104 },
+ 'digitalfilter17' => { 288 => 0x115 },
+ 'digitalfilter18' => { 288 => 0x126 },
+ 'digitalfilter19' => { 288 => 0x137 },
+ 'digitalfilter20' => { 288 => 0x148 },
'digitalgain' => { 64 => 0xb },
- 'digitalgem' => { 183 => 0x0 },
- 'digitalice' => { 197 => 0x100 },
- 'digitalimageguid' => { 404 => 'DigImageGUID' },
- 'digitalroc' => { 195 => 0x0 },
- 'digitalsourcefiletype' => { 404 => 'DigitalSourcefileType' },
- 'digitalsourcetype' => { 404 => 'DigitalSourceType' },
- 'digitalzoom' => { 30 => 0xc, 99 => 0xa, 120 => 0x68, 134 => 'DigitalZoom', 156 => 0xc, 191 => 0x86, 217 => 0xa, 252 => 0x204, 300 => 0x1e, 307 => 0xa, 331 => 0x204, 367 => 0x12, 368 => 0x12 },
- 'digitalzoomon' => { 331 => 0x21b },
- 'digitalzoomratio' => { 104 => 0xa404, 360 => 0x200, 362 => 0x21c, 398 => 'DigitalZoomRatio' },
- 'director' => { 419 => 'director' },
- 'directorphotography' => { 419 => 'directorPhotography' },
+ 'digitalgem' => { 184 => 0x0 },
+ 'digitalice' => { 198 => 0x100 },
+ 'digitalimageguid' => { 405 => 'DigImageGUID' },
+ 'digitalroc' => { 196 => 0x0 },
+ 'digitalsourcefiletype' => { 405 => 'DigitalSourcefileType' },
+ 'digitalsourcetype' => { 405 => 'DigitalSourceType' },
+ 'digitalzoom' => { 30 => 0xc, 99 => 0xa, 120 => 0x68, 134 => 'DigitalZoom', 156 => 0xc, 192 => 0x86, 218 => 0xa, 253 => 0x204, 301 => 0x1e, 308 => 0xa, 332 => 0x204, 368 => 0x12, 369 => 0x12 },
+ 'digitalzoomon' => { 332 => 0x21b },
+ 'digitalzoomratio' => { 104 => 0xa404, 361 => 0x200, 363 => 0x21c, 399 => 'DigitalZoomRatio' },
+ 'director' => { 420 => 'director' },
+ 'directorphotography' => { 420 => 'directorPhotography' },
'directory' => { 105 => 'Directory' },
'directoryindex' => { 6 => 0x137, 8 => 0x2dc, 10 => 0x17e, 12 => 0x238, 13 => 0x13f, 14 => 0x133, 15 => 0x1df, 16 => 0x1a7, 17 => 0x1f0, 18 => 0xcc, 19 => 0x1c7, 20 => 0x298, 21 => 0x1e7, 22 => 0x1e5, 23 => [0x27c,0x280], 24 => 0x2b6, 25 => 0x2bf, 26 => 0x1f7 },
'directoryindex2' => { 20 => 0x29c },
- 'directorynumber' => { 179 => 0x3 },
- 'disclaimer' => { 259 => 'Disclaimer' },
- 'discnumber' => { 419 => 'discNumber' },
- 'dishtype' => { 411 => 'dishType' },
+ 'directorynumber' => { 180 => 0x3 },
+ 'disclaimer' => { 260 => 'Disclaimer' },
+ 'discnumber' => { 420 => 'discNumber' },
+ 'dishtype' => { 412 => 'dishType' },
'displayallafpoints' => { 72 => 0x514 },
'displayaperture' => { 30 => 0x23 },
- 'displayedunitsx' => { 313 => 0x2 },
- 'displayedunitsy' => { 313 => 0x6 },
- 'displayname' => { 408 => 'displayName' },
+ 'displayedunitsx' => { 314 => 0x2 },
+ 'displayedunitsy' => { 314 => 0x6 },
+ 'displayname' => { 409 => 'displayName' },
'distance1' => { 120 => 0x28 },
'distance2' => { 120 => 0x2c },
'distance3' => { 120 => 0x30 },
'distance4' => { 120 => 0x34 },
- 'distortion' => { 329 => 0xa050 },
- 'distortioncontrol' => { 198 => 0x10 },
- 'distortioncorrection' => { 90 => 0x20705, 96 => 0x67, 247 => 0x50b, 270 => '7.1', 290 => 0x0, 374 => 0x601, 375 => 0x5b },
- 'distortioncorrection2' => { 251 => 0x1011 },
- 'distortioncorrectionalreadyapplied' => { 390 => 'DistortionCorrectionAlreadyApplied' },
+ 'distortion' => { 330 => 0xa050 },
+ 'distortioncontrol' => { 199 => 0x10 },
+ 'distortioncorrection' => { 90 => 0x20705, 96 => 0x67, 248 => 0x50b, 271 => '7.1', 291 => 0x0, 375 => 0x601, 376 => 0x5b },
+ 'distortioncorrection2' => { 252 => 0x1011 },
+ 'distortioncorrectionalreadyapplied' => { 391 => 'DistortionCorrectionAlreadyApplied' },
'distortioncorrectionon' => { 90 => '0x20705.0', 96 => 0x63 },
- 'distortioncorrectionsetting' => { 351 => 0x2013 },
+ 'distortioncorrectionsetting' => { 352 => 0x2013 },
'distortioneffect' => { 90 => 0x20709 },
- 'distortionn' => { 270 => 0xc },
- 'distortionparam02' => { 270 => 0x2 },
- 'distortionparam04' => { 270 => 0x4 },
- 'distortionparam08' => { 270 => 0x8 },
- 'distortionparam09' => { 270 => 0x9 },
- 'distortionparam11' => { 270 => 0xb },
- 'distortionscale' => { 270 => 0x5 },
- 'distributor' => { 409 => 'distributor' },
- 'distributorproductid' => { 408 => 'distributorProductID' },
+ 'distortionn' => { 271 => 0xc },
+ 'distortionparam02' => { 271 => 0x2 },
+ 'distortionparam04' => { 271 => 0x4 },
+ 'distortionparam08' => { 271 => 0x8 },
+ 'distortionparam09' => { 271 => 0x9 },
+ 'distortionparam11' => { 271 => 0xb },
+ 'distortionscale' => { 271 => 0x5 },
+ 'distributor' => { 410 => 'distributor' },
+ 'distributorproductid' => { 409 => 'distributorProductID' },
'dloon' => { 90 => '0x20706.0', 96 => 0xdc },
'dlosetting' => { 90 => 0x20706, 96 => 0xdd },
'dlosettingapplied' => { 96 => 0xe4 },
'dloshootingdistance' => { 96 => 0xde },
'dloversion' => { 96 => 0xe5 },
- 'dmcomment' => { 419 => 'comment' },
+ 'dmcomment' => { 420 => 'comment' },
'dngadobedata' => { 104 => 0xc634 },
'dngbackwardversion' => { 104 => 0xc613 },
'dnglensinfo' => { 104 => 0xc630 },
'dngprivatedata' => { 104 => 0xc634 },
'dngversion' => { 104 => 0xc612 },
- 'document' => { 259 => 'Document' },
- 'documentancestorid' => { 406 => [\'DocumentAncestors','DocumentAncestorsAncestorID'] },
- 'documentancestors' => { 406 => 'DocumentAncestors' },
+ 'document' => { 260 => 'Document' },
+ 'documentancestors' => { 407 => 'DocumentAncestors' },
'documenthistory' => { 112 => 0xe7 },
- 'documentid' => { 420 => 'DocumentID' },
+ 'documentid' => { 421 => 'DocumentID' },
'documentname' => { 104 => 0x10d },
'documentnotes' => { 112 => 0xe6 },
- 'doi' => { 409 => 'doi' },
+ 'doi' => { 410 => 'doi' },
'dotrange' => { 104 => 0x150 },
- 'dpp' => { 388 => 'dpp' },
+ 'dpp' => { 389 => 'dpp' },
'dr4cameramodel' => { 91 => 0x3 },
- 'drivemode' => { 100 => 0x3103, 156 => 0x6, 159 => 0x1e, 162 => 0xe, 247 => 0x600, 300 => 0x34, 323 => 0x1002, 332 => 0x3, 339 => 0x4, 340 => 0x7e, 341 => 0x34 },
- 'drivemode2' => { 159 => 0xa, 281 => 0x7, 350 => 0xe, 355 => 0x1 },
- 'drivemodesetting' => { 341 => 0x4 },
- 'dspfirmwareversion' => { 300 => 0x27 },
- 'duration' => { 57 => 0x6a, 133 => 'Duration', 147 => 'Duration', 411 => 'duration', 419 => 'duration' },
- 'durationscale' => { 419 => [\'duration','durationScale'] },
- 'durationvalue' => { 419 => [\'duration','durationValue'] },
+ 'drivemode' => { 100 => 0x3103, 156 => 0x6, 159 => 0x1e, 162 => 0xe, 248 => 0x600, 301 => 0x34, 324 => 0x1002, 333 => 0x3, 340 => 0x4, 341 => 0x7e, 342 => 0x34 },
+ 'drivemode2' => { 159 => 0xa, 282 => 0x7, 351 => 0xe, 356 => 0x1 },
+ 'drivemodesetting' => { 342 => 0x4 },
+ 'dspfirmwareversion' => { 301 => 0x27 },
+ 'duration' => { 57 => 0x6a, 133 => 'Duration', 147 => 'Duration', 412 => 'duration', 420 => 'duration' },
+ 'durationscale' => { 420 => [\'duration','durationScale'] },
+ 'durationvalue' => { 420 => [\'duration','durationValue'] },
'dustremovaldata' => { 54 => 0x97 },
- 'dynamicafarea' => { 234 => '1.4', 240 => '1.4' },
- 'dynamicareaafdisplay' => { 235 => '46.1', 244 => '47.1' },
+ 'dynamicafarea' => { 235 => '1.4', 241 => '1.4' },
+ 'dynamicareaafdisplay' => { 236 => '46.1', 245 => '47.1' },
'dynamicrange' => { 109 => 0x1400 },
- 'dynamicrangeexpansion' => { 300 => 0x69, 323 => 0x100e },
+ 'dynamicrangeexpansion' => { 301 => 0x69, 324 => 0x100e },
'dynamicrangemax' => { 95 => 0x7c },
'dynamicrangemin' => { 95 => 0x7a },
- 'dynamicrangeoptimizer' => { 159 => 0x15, 351 => [0xb025,0xb04f], 358 => 0x1144, 359 => [0x1144,0x324], 360 => [0x1120,0x300], 361 => [0x119c,0x37c], 362 => [0x1178,0x328], 363 => [0x1030,0x50], 364 => [0x228,0x50], 365 => [0x228,0x50] },
- 'dynamicrangeoptimizerbracket' => { 350 => 0x2e },
- 'dynamicrangeoptimizerlevel' => { 339 => 0x19, 340 => 0x17, 341 => 0xd, 350 => 0x79, 355 => 0x5 },
- 'dynamicrangeoptimizermode' => { 162 => 0x15, 339 => 0x18, 340 => 0x16, 350 => [0x77,0x15] },
- 'dynamicrangeoptimizersetting' => { 159 => 0x27, 341 => 0xc, 355 => 0x4 },
+ 'dynamicrangeoptimizer' => { 159 => 0x15, 352 => [0xb025,0xb04f], 359 => 0x1144, 360 => [0x1144,0x324], 361 => [0x1120,0x300], 362 => [0x119c,0x37c], 363 => [0x1178,0x328], 364 => [0x1030,0x50], 365 => [0x228,0x50], 366 => [0x228,0x50] },
+ 'dynamicrangeoptimizerbracket' => { 351 => 0x2e },
+ 'dynamicrangeoptimizerlevel' => { 340 => 0x19, 341 => 0x17, 342 => 0xd, 351 => 0x79, 356 => 0x5 },
+ 'dynamicrangeoptimizermode' => { 162 => 0x15, 340 => 0x18, 341 => 0x16, 351 => [0x77,0x15] },
+ 'dynamicrangeoptimizersetting' => { 159 => 0x27, 342 => 0xc, 356 => 0x4 },
'dynamicrangesetting' => { 109 => 0x1402 },
- 'e-dialinprogram' => { 281 => '1.3' },
+ 'e-dialinprogram' => { 282 => '1.3' },
'earliestageorloweststage' => { 103 => [\'GeologicalContext','GeologicalContextEarliestAgeOrLowestStage'] },
'earliesteonorlowesteonothem' => { 103 => [\'GeologicalContext','GeologicalContextEarliestEonOrLowestEonothem'] },
'earliestepochorlowestseries' => { 103 => [\'GeologicalContext','GeologicalContextEarliestEpochOrLowestSeries'] },
'earliesteraorlowesterathem' => { 103 => [\'GeologicalContext','GeologicalContextEarliestEraOrLowestErathem'] },
'earliestperiodorlowestsystem' => { 103 => [\'GeologicalContext','GeologicalContextEarliestPeriodOrLowestSystem'] },
- 'easyexposurecomp' => { 245 => '6.1' },
- 'easyexposurecompensation' => { 234 => '6.4', 235 => '6.5', 240 => '4.4', 241 => '5.2', 244 => '6.3' },
+ 'easyexposurecomp' => { 246 => '6.1' },
+ 'easyexposurecompensation' => { 235 => '6.4', 236 => '6.5', 241 => '4.4', 242 => '5.2', 245 => '6.3' },
'easymode' => { 30 => 0xb },
- 'edgenoisereduction' => { 228 => 0x4, 379 => 0x8028 },
- 'edition' => { 409 => 'edition' },
+ 'edgenoisereduction' => { 229 => 0x4, 380 => 0x8028 },
+ 'edition' => { 410 => 'edition' },
'editorialupdate' => { 112 => 0x8 },
- 'editstatus' => { 112 => 0x7, 310 => 'EditStatus' },
- 'editversionname' => { 227 => 0x3d136244 },
- 'effectivelv' => { 300 => 0x2d },
- 'effectivemaxaperture' => { 187 => 0x12, 188 => 0x13 },
- 'eissn' => { 409 => 'eIssn' },
- 'electronicfront-curtainshutter' => { 244 => '5.3' },
+ 'editstatus' => { 112 => 0x7, 311 => 'EditStatus' },
+ 'editversionname' => { 228 => 0x3d136244 },
+ 'effectivelv' => { 301 => 0x2d },
+ 'effectivemaxaperture' => { 188 => 0x12, 189 => 0x13 },
+ 'eissn' => { 410 => 'eIssn' },
+ 'electronicfront-curtainshutter' => { 245 => '5.3' },
'elevation' => { 143 => 'Elevation' },
'email' => { 135 => 'EMail' },
- 'embargodate' => { 412 => 'embargoDate' },
- 'embdencrightsexpr' => { 404 => 'EmbdEncRightsExpr' },
- 'embeddedencodedrightsexpr' => { 404 => [\'EmbdEncRightsExpr','EmbdEncRightsExprEncRightsExpr'] },
- 'embeddedencodedrightsexprlangid' => { 404 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprLangId'] },
- 'embeddedencodedrightsexprtype' => { 404 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprEncType'] },
- 'embeddedxmpdigest' => { 406 => 'EmbeddedXMPDigest' },
+ 'embargodate' => { 413 => 'embargoDate' },
+ 'embdencrightsexpr' => { 405 => 'EmbdEncRightsExpr' },
+ 'embeddedencodedrightsexpr' => { 405 => [\'EmbdEncRightsExpr','EmbdEncRightsExprEncRightsExpr'] },
+ 'embeddedencodedrightsexprlangid' => { 405 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprLangId'] },
+ 'embeddedencodedrightsexprtype' => { 405 => [\'EmbdEncRightsExpr','EmbdEncRightsExprRightsExprEncType'] },
+ 'embeddedxmpdigest' => { 407 => 'EmbeddedXMPDigest' },
'emissivity' => { 106 => 0x3 },
- 'encryptionkey' => { 329 => 0xa020 },
- 'endingpage' => { 409 => 'endingPage' },
- 'enduser' => { 407 => 'EndUser' },
- 'enduserid' => { 407 => [\'EndUser','EndUserEndUserID'] },
- 'endusername' => { 407 => [\'EndUser','EndUserEndUserName'] },
- 'engineer' => { 419 => 'engineer' },
- 'enhancedarktones' => { 220 => 0x8 },
+ 'encryptionkey' => { 330 => 0xa020 },
+ 'endingpage' => { 410 => 'endingPage' },
+ 'enduser' => { 408 => 'EndUser' },
+ 'enduserid' => { 408 => [\'EndUser','EndUserEndUserID'] },
+ 'endusername' => { 408 => [\'EndUser','EndUserEndUserName'] },
+ 'engineer' => { 420 => 'engineer' },
+ 'enhancedarktones' => { 221 => 0x8 },
'enhancement' => { 99 => 0x16, 100 => 0x3016 },
- 'enhancer' => { 251 => 0x300 },
- 'enhancervalues' => { 251 => 0x301 },
+ 'enhancer' => { 252 => 0x300 },
+ 'enhancervalues' => { 252 => 0x301 },
'envelopenumber' => { 113 => 0x28 },
'envelopepriority' => { 113 => 0x3c },
'enveloperecordversion' => { 113 => 0x0 },
- 'epsonimageheight' => { 252 => 0x20c },
- 'epsonimagewidth' => { 252 => 0x20b },
- 'epsonsoftware' => { 252 => 0x20d },
- 'equipmentinstitution' => { 381 => 'EquipmentInstitution' },
- 'equipmentmanufacturer' => { 381 => 'EquipmentManufacturer' },
- 'equipmentversion' => { 248 => 0x0 },
+ 'epsonimageheight' => { 253 => 0x20c },
+ 'epsonimagewidth' => { 253 => 0x20b },
+ 'epsonsoftware' => { 253 => 0x20d },
+ 'equipmentinstitution' => { 382 => 'EquipmentInstitution' },
+ 'equipmentmanufacturer' => { 382 => 'EquipmentManufacturer' },
+ 'equipmentversion' => { 249 => 0x0 },
'ettlii' => { 72 => 0x304, 73 => 0xd, 74 => 0xe, 75 => 0x7, 76 => 0x7, 77 => 0xe },
- 'event' => { 382 => 'Event', 386 => 'Event', 404 => 'Event', 409 => 'event' },
- 'eventalias' => { 408 => 'eventAlias' },
+ 'event' => { 383 => 'Event', 387 => 'Event', 405 => 'Event', 410 => 'event' },
+ 'eventalias' => { 409 => 'eventAlias' },
'eventday' => { 103 => [\'Event','EventDay'] },
'eventearliestdate' => { 103 => [\'Event','EventEarliestDate'] },
- 'eventend' => { 408 => 'eventEnd' },
+ 'eventend' => { 409 => 'eventEnd' },
'eventenddayofyear' => { 103 => [\'Event','EventEndDayOfYear'] },
'eventfieldnotes' => { 103 => [\'Event','EventFieldNotes'] },
'eventfieldnumber' => { 103 => [\'Event','EventFieldNumber'] },
@@ -1761,169 +1761,169 @@ my %tagLookup = (
'eventid' => { 103 => [\'Event','EventEventID'] },
'eventlatestdate' => { 103 => [\'Event','EventLatestDate'] },
'eventmonth' => { 103 => [\'Event','EventMonth'] },
- 'eventnumber' => { 319 => 0x9 },
+ 'eventnumber' => { 320 => 0x9 },
'eventremarks' => { 103 => [\'Event','EventEventRemarks'] },
'eventsamplingeffort' => { 103 => [\'Event','EventSamplingEffort'] },
'eventsamplingprotocol' => { 103 => [\'Event','EventSamplingProtocol'] },
- 'eventstart' => { 408 => 'eventStart' },
+ 'eventstart' => { 409 => 'eventStart' },
'eventstartdayofyear' => { 103 => [\'Event','EventStartDayOfYear'] },
- 'eventsubtype' => { 408 => 'eventSubtype' },
+ 'eventsubtype' => { 409 => 'eventSubtype' },
'eventtime' => { 103 => [\'Event','EventEventTime'] },
- 'eventtype' => { 408 => 'eventType' },
+ 'eventtype' => { 409 => 'eventType' },
'eventverbatimeventdate' => { 103 => [\'Event','EventVerbatimEventDate'] },
'eventyear' => { 103 => [\'Event','EventYear'] },
- 'evsteps' => { 281 => '1.2', 283 => 0x0 },
- 'evstepsize' => { 237 => '5.1', 238 => '6.1', 239 => '6.1', 242 => '0.7' },
- 'exclusivityenddate' => { 412 => 'exclusivityEndDate' },
+ 'evsteps' => { 282 => '1.2', 284 => 0x0 },
+ 'evstepsize' => { 238 => '5.1', 239 => '6.1', 240 => '6.1', 243 => '0.7' },
+ 'exclusivityenddate' => { 413 => 'exclusivityEndDate' },
'excursiontolerance' => { 114 => 0x82 },
'exif' => { 105 => 'EXIF' },
'exifbyteorder' => { 105 => 'ExifByteOrder' },
'exifcamerainfo' => { 112 => 0xe8 },
- 'exifimageheight' => { 104 => 0xa003, 398 => 'PixelYDimension' },
- 'exifimagewidth' => { 104 => 0xa002, 398 => 'PixelXDimension' },
+ 'exifimageheight' => { 104 => 0xa003, 399 => 'PixelYDimension' },
+ 'exifimagewidth' => { 104 => 0xa002, 399 => 'PixelXDimension' },
'exifunicodebyteorder' => { 105 => 'ExifUnicodeByteOrder' },
- 'exifversion' => { 104 => 0x9000, 398 => 'ExifVersion' },
- 'exitpupilposition' => { 187 => 0x4, 188 => 0x4 },
- 'expirationdate' => { 112 => 0x25, 412 => 'expirationDate' },
+ 'exifversion' => { 104 => 0x9000, 399 => 'ExifVersion' },
+ 'exitpupilposition' => { 188 => 0x4, 189 => 0x4 },
+ 'expirationdate' => { 112 => 0x25, 413 => 'expirationDate' },
'expirationtime' => { 112 => 0x26 },
- 'exposure' => { 104 => 0xfe51, 394 => 'Exposure' },
- 'exposure2012' => { 394 => 'Exposure2012' },
- 'exposureadj' => { 225 => 0x0 },
- 'exposureadj2' => { 225 => 0x12 },
- 'exposureadjust' => { 332 => 0xc },
+ 'exposure' => { 104 => 0xfe51, 395 => 'Exposure' },
+ 'exposure2012' => { 395 => 'Exposure2012' },
+ 'exposureadj' => { 226 => 0x0 },
+ 'exposureadj2' => { 226 => 0x12 },
+ 'exposureadjust' => { 333 => 0xc },
'exposurebracketingindicatorlast' => { 159 => 0x52 },
- 'exposurebracketshotnumber' => { 162 => 0x2d, 350 => 0x2f },
- 'exposurebracketstepsize' => { 281 => 0x8 },
- 'exposurebracketvalue' => { 191 => 0x19 },
- 'exposurecompensation' => { 66 => 0x6, 81 => 0x0, 104 => 0x9204, 120 => 0x24, 134 => 'ExposureComp', 152 => 'ExposureCompensation', 156 => 0xd, 157 => 0x53, 158 => 0x1e, 162 => 0x49c0, 252 => 0x1006, 300 => 0x16, 329 => 0xa013, 332 => [0xc,0x35,0x4d], 358 => 0x114c, 359 => 0x114c, 360 => 0x1128, 362 => 0x1180, 363 => 0x1038, 364 => 0x230, 365 => 0x230, 398 => 'ExposureBiasValue' },
- 'exposurecompensation2' => { 355 => [0x24,0x26,0x2a] },
+ 'exposurebracketshotnumber' => { 162 => 0x2d, 351 => 0x2f },
+ 'exposurebracketstepsize' => { 282 => 0x8 },
+ 'exposurebracketvalue' => { 192 => 0x19 },
+ 'exposurecompensation' => { 66 => 0x6, 81 => 0x0, 104 => 0x9204, 120 => 0x24, 134 => 'ExposureComp', 152 => 'ExposureCompensation', 156 => 0xd, 157 => 0x53, 158 => 0x1e, 162 => 0x49c0, 253 => 0x1006, 301 => 0x16, 330 => 0xa013, 333 => [0xc,0x35,0x4d], 359 => 0x114c, 360 => 0x114c, 361 => 0x1128, 363 => 0x1180, 364 => 0x1038, 365 => 0x230, 366 => 0x230, 399 => 'ExposureBiasValue' },
+ 'exposurecompensation2' => { 356 => [0x24,0x26,0x2a] },
'exposurecompensationmode' => { 159 => 0x47, 162 => 0x2a },
- 'exposurecompensationset' => { 339 => 0x3, 340 => 0x3, 341 => 0x3, 355 => 0x1e },
+ 'exposurecompensationset' => { 340 => 0x3, 341 => 0x3, 342 => 0x3, 356 => 0x1e },
'exposurecompensationsetting' => { 159 => 0x1 },
- 'exposurecompstepsize' => { 234 => '6.3', 235 => '7.3', 240 => '4.3', 244 => '7.3' },
- 'exposurecontrolstep' => { 241 => '6.1' },
- 'exposurecontrolstepsize' => { 234 => '6.2', 235 => '7.1', 240 => '4.2', 244 => '7.1', 245 => '7.1' },
+ 'exposurecompstepsize' => { 235 => '6.3', 236 => '7.3', 241 => '4.3', 245 => '7.3' },
+ 'exposurecontrolstep' => { 242 => '6.1' },
+ 'exposurecontrolstepsize' => { 235 => '6.2', 236 => '7.1', 241 => '4.2', 245 => '7.1', 246 => '7.1' },
'exposurecount' => { 109 => 0x1032 },
- 'exposuredelaymode' => { 234 => '10.1', 235 => '11.1', 237 => '9.1', 238 => '10.1', 239 => '10.1', 240 => '10.4', 241 => '10.1', 242 => '6.4', 244 => '11.1', 245 => '11.2' },
- 'exposuredifference' => { 191 => 0xe },
- 'exposureindex' => { 104 => 0xa215, 398 => 'ExposureIndex' },
+ 'exposuredelaymode' => { 235 => '10.1', 236 => '11.1', 238 => '9.1', 239 => '10.1', 240 => '10.1', 241 => '10.4', 242 => '10.1', 243 => '6.4', 245 => '11.1', 246 => '11.2' },
+ 'exposuredifference' => { 192 => 0xe },
+ 'exposureindex' => { 104 => 0xa215, 399 => 'ExposureIndex' },
'exposureindicator' => { 159 => 0x50 },
- 'exposurelevelincrements' => { 70 => 0x6, 71 => 0x6, 72 => 0x101, 73 => 0x5, 74 => 0x6, 75 => 0x5, 76 => 0x5, 77 => 0x6, 78 => 0x4, 339 => 0x58, 340 => 0x58 },
- 'exposurelockused' => { 383 => 'ExposureLockUsed' },
- 'exposuremode' => { 104 => 0xa402, 134 => 'ExposureMode', 156 => 0x1, 157 => 0xa, 158 => 0x0, 159 => 0x0, 162 => 0x34, 247 => 0x200, 265 => 0x40d, 332 => 0x8, 351 => 0xb041, 398 => 'ExposureMode' },
+ 'exposurelevelincrements' => { 70 => 0x6, 71 => 0x6, 72 => 0x101, 73 => 0x5, 74 => 0x6, 75 => 0x5, 76 => 0x5, 77 => 0x6, 78 => 0x4, 340 => 0x58, 341 => 0x58 },
+ 'exposurelockused' => { 384 => 'ExposureLockUsed' },
+ 'exposuremode' => { 104 => 0xa402, 134 => 'ExposureMode', 156 => 0x1, 157 => 0xa, 158 => 0x0, 159 => 0x0, 162 => 0x34, 248 => 0x200, 266 => 0x40d, 333 => 0x8, 352 => 0xb041, 399 => 'ExposureMode' },
'exposuremodeinmanual' => { 72 => 0x10b },
- 'exposureprogram' => { 104 => 0x8822, 323 => 0x1001, 333 => 0x17e, 339 => 0x3c, 340 => 0x3c, 341 => 0x5, 345 => 0x14, 350 => 0x3f, 355 => 0x2, 358 => 0x1175, 359 => 0x1179, 360 => 0x1155, 361 => 0x11d1, 362 => 0x11ad, 363 => 0x1065, 364 => 0x25d, 365 => 0x25d, 375 => 0x48, 398 => 'ExposureProgram' },
- 'exposureshift' => { 247 => 0x203 },
- 'exposuretime' => { 6 => 0x4, 7 => 0x4, 8 => 0x4, 9 => 0x4, 10 => 0x4, 11 => 0x4, 12 => 0x4, 13 => 0x4, 14 => 0x4, 15 => 0x4, 16 => 0x4, 17 => 0x4, 18 => 0x4, 19 => 0x4, 20 => 0x4, 21 => 0x4, 22 => 0x4, 23 => 0x4, 24 => 0x4, 25 => 0x4, 26 => 0x4, 27 => 0x6, 28 => 0x7, 66 => 0x16, 104 => 0x829a, 117 => 0xfd05, 120 => 0x20, 122 => 0xfa24, 124 => 0xf104, 127 => 0x12, 129 => 0x38, 132 => 0x10, 134 => 'ExposureTime', 156 => 0x9, 157 => 0x35, 158 => 0x48, 159 => 0x8, 162 => 0x49b8, 300 => 0x12, 329 => 0xa018, 332 => [0x32,0x4a], 339 => 0x0, 340 => 0x0, 355 => [0x21,0x23,0x27], 375 => 0x10, 398 => 'ExposureTime' },
- 'exposuretime2' => { 332 => [0x33,0x4b] },
- 'exposuretuning' => { 191 => 0x1c },
+ 'exposureprogram' => { 104 => 0x8822, 324 => 0x1001, 334 => 0x17e, 340 => 0x3c, 341 => 0x3c, 342 => 0x5, 346 => 0x14, 351 => 0x3f, 356 => 0x2, 359 => 0x1175, 360 => 0x1179, 361 => 0x1155, 362 => 0x11d1, 363 => 0x11ad, 364 => 0x1065, 365 => 0x25d, 366 => 0x25d, 376 => 0x48, 399 => 'ExposureProgram' },
+ 'exposureshift' => { 248 => 0x203 },
+ 'exposuretime' => { 6 => 0x4, 7 => 0x4, 8 => 0x4, 9 => 0x4, 10 => 0x4, 11 => 0x4, 12 => 0x4, 13 => 0x4, 14 => 0x4, 15 => 0x4, 16 => 0x4, 17 => 0x4, 18 => 0x4, 19 => 0x4, 20 => 0x4, 21 => 0x4, 22 => 0x4, 23 => 0x4, 24 => 0x4, 25 => 0x4, 26 => 0x4, 27 => 0x6, 28 => 0x7, 66 => 0x16, 104 => 0x829a, 117 => 0xfd05, 120 => 0x20, 122 => 0xfa24, 124 => 0xf104, 127 => 0x12, 129 => 0x38, 132 => 0x10, 134 => 'ExposureTime', 156 => 0x9, 157 => 0x35, 158 => 0x48, 159 => 0x8, 162 => 0x49b8, 301 => 0x12, 330 => 0xa018, 333 => [0x32,0x4a], 340 => 0x0, 341 => 0x0, 356 => [0x21,0x23,0x27], 376 => 0x10, 399 => 'ExposureTime' },
+ 'exposuretime2' => { 333 => [0x33,0x4b] },
+ 'exposuretuning' => { 192 => 0x1c },
'exposurevalue' => { 118 => 0x3 },
'exposurewarning' => { 109 => 0x1302 },
'exrauto' => { 109 => 0x1033 },
'exrmode' => { 109 => 0x1034 },
- 'extendedwbdetect' => { 247 => 0x902 },
- 'extender' => { 248 => 0x301 },
- 'extenderfirmwareversion' => { 248 => 0x304 },
+ 'extendedwbdetect' => { 248 => 0x902 },
+ 'extender' => { 249 => 0x301 },
+ 'extenderfirmwareversion' => { 249 => 0x304 },
'extendermagnification' => { 136 => 'Magnification' },
'extendermake' => { 136 => 'Make' },
- 'extendermodel' => { 136 => 'Model', 248 => 0x303 },
- 'extenderserialnumber' => { 136 => 'SerialNumber', 248 => 0x302 },
- 'extenderstatus' => { 298 => 0x3 },
- 'externalflash' => { 250 => 0x1201 },
- 'externalflashae1' => { 252 => 0x101f },
- 'externalflashae1_0' => { 252 => 0x101b },
- 'externalflashae2' => { 252 => 0x1020 },
- 'externalflashae2_0' => { 252 => 0x101c },
- 'externalflashbounce' => { 250 => 0x1204, 252 => 0x1026, 288 => 0x1a },
- 'externalflashcompensation' => { 182 => 0x1b },
- 'externalflashexposurecomp' => { 191 => 0x17, 288 => 0x19 },
- 'externalflashfirmware' => { 180 => 0x6, 181 => 0x6, 182 => 0x6 },
- 'externalflashflags' => { 180 => 0x8, 181 => 0x8, 182 => 0x8 },
- 'externalflashguidenumber' => { 250 => 0x1203, 288 => '24.1' },
- 'externalflashgvalue' => { 252 => 0x1025 },
- 'externalflashmode' => { 252 => 0x1028, 288 => 0x2 },
- 'externalflashzoom' => { 250 => 0x1205, 252 => 0x1027 },
- 'externalsensorbrightnessvalue' => { 263 => 0x311, 269 => 0x3408 },
- 'extrainfoversion' => { 343 => 0x1a },
+ 'extendermodel' => { 136 => 'Model', 249 => 0x303 },
+ 'extenderserialnumber' => { 136 => 'SerialNumber', 249 => 0x302 },
+ 'extenderstatus' => { 299 => 0x3 },
+ 'externalflash' => { 251 => 0x1201 },
+ 'externalflashae1' => { 253 => 0x101f },
+ 'externalflashae1_0' => { 253 => 0x101b },
+ 'externalflashae2' => { 253 => 0x1020 },
+ 'externalflashae2_0' => { 253 => 0x101c },
+ 'externalflashbounce' => { 251 => 0x1204, 253 => 0x1026, 289 => 0x1a },
+ 'externalflashcompensation' => { 183 => 0x1b },
+ 'externalflashexposurecomp' => { 192 => 0x17, 289 => 0x19 },
+ 'externalflashfirmware' => { 181 => 0x6, 182 => 0x6, 183 => 0x6 },
+ 'externalflashflags' => { 181 => 0x8, 182 => 0x8, 183 => 0x8 },
+ 'externalflashguidenumber' => { 251 => 0x1203, 289 => '24.1' },
+ 'externalflashgvalue' => { 253 => 0x1025 },
+ 'externalflashmode' => { 253 => 0x1028, 289 => 0x2 },
+ 'externalflashzoom' => { 251 => 0x1205, 253 => 0x1027 },
+ 'externalsensorbrightnessvalue' => { 264 => 0x311, 270 => 0x3408 },
+ 'extrainfoversion' => { 344 => 0x1a },
'eyestartaf' => { 159 => 0x40 },
- 'face10position' => { 97 => 0x3f4, 98 => 0x1ec, 178 => 0x28, 285 => 0x12 },
- 'face10size' => { 286 => 0x12 },
- 'face11position' => { 178 => 0x2c, 285 => 0x14 },
- 'face11size' => { 286 => 0x14 },
- 'face12position' => { 178 => 0x30, 285 => 0x16 },
- 'face12size' => { 286 => 0x16 },
- 'face13position' => { 285 => 0x18 },
- 'face13size' => { 286 => 0x18 },
- 'face14position' => { 285 => 0x1a },
- 'face14size' => { 286 => 0x1a },
- 'face15position' => { 285 => 0x1c },
- 'face15size' => { 286 => 0x1c },
- 'face16position' => { 285 => 0x1e },
- 'face16size' => { 286 => 0x1e },
- 'face17position' => { 285 => 0x20 },
- 'face17size' => { 286 => 0x20 },
- 'face18position' => { 285 => 0x22 },
- 'face18size' => { 286 => 0x22 },
- 'face19position' => { 285 => 0x24 },
- 'face19size' => { 286 => 0x24 },
- 'face1position' => { 45 => 0x8, 97 => 0xd, 98 => 0x18, 178 => 0x4, 261 => 0x1, 285 => 0x0, 320 => 0xbc, 346 => 0x1, 347 => 0x0, 348 => 0x0, 349 => 0x5b },
- 'face1size' => { 286 => 0x0 },
- 'face20position' => { 285 => 0x26 },
- 'face20size' => { 286 => 0x26 },
- 'face21position' => { 285 => 0x28 },
- 'face21size' => { 286 => 0x28 },
- 'face22position' => { 285 => 0x2a },
- 'face22size' => { 286 => 0x2a },
- 'face23position' => { 285 => 0x2c },
- 'face23size' => { 286 => 0x2c },
- 'face24position' => { 285 => 0x2e },
- 'face24size' => { 286 => 0x2e },
- 'face25position' => { 285 => 0x30 },
- 'face25size' => { 286 => 0x30 },
- 'face26position' => { 285 => 0x32 },
- 'face26size' => { 286 => 0x32 },
- 'face27position' => { 285 => 0x34 },
- 'face27size' => { 286 => 0x34 },
- 'face28position' => { 285 => 0x36 },
- 'face28size' => { 286 => 0x36 },
- 'face29position' => { 285 => 0x38 },
- 'face29size' => { 286 => 0x38 },
- 'face2position' => { 45 => 0xa, 97 => 0x7c, 98 => 0x4c, 178 => 0x8, 261 => 0x5, 285 => 0x2, 320 => 0xc8, 346 => 0x6, 347 => 0x20, 348 => 0x25, 349 => 0x65 },
- 'face2size' => { 286 => 0x2 },
- 'face30position' => { 285 => 0x3a },
- 'face30size' => { 286 => 0x3a },
- 'face31position' => { 285 => 0x3c },
- 'face31size' => { 286 => 0x3c },
- 'face32position' => { 285 => 0x3e },
- 'face32size' => { 286 => 0x3e },
- 'face3position' => { 45 => 0xc, 97 => 0xeb, 98 => 0x80, 178 => 0xc, 261 => 0x9, 285 => 0x4, 320 => 0xd4, 346 => 0xb, 347 => 0x40, 348 => 0x4a, 349 => 0x6f },
- 'face3size' => { 286 => 0x4 },
- 'face4position' => { 45 => 0xe, 97 => 0x15a, 98 => 0xb4, 178 => 0x10, 261 => 0xd, 285 => 0x6, 320 => 0xe0, 346 => 0x10, 347 => 0x60, 348 => 0x6f, 349 => 0x79 },
- 'face4size' => { 286 => 0x6 },
- 'face5position' => { 45 => 0x10, 97 => 0x1c9, 98 => 0xe8, 178 => 0x14, 261 => 0x11, 285 => 0x8, 320 => 0xec, 346 => 0x15, 347 => 0x80, 348 => 0x94 },
- 'face5size' => { 286 => 0x8 },
- 'face6position' => { 45 => 0x12, 97 => 0x238, 98 => 0x11c, 178 => 0x18, 285 => 0xa, 320 => 0xf8, 346 => 0x1a, 347 => 0xa0, 348 => 0xb9 },
- 'face6size' => { 286 => 0xa },
- 'face7position' => { 45 => 0x14, 97 => 0x2a7, 98 => 0x150, 178 => 0x1c, 285 => 0xc, 320 => 0x104, 346 => 0x1f, 347 => 0xc0, 348 => 0xde },
- 'face7size' => { 286 => 0xc },
- 'face8position' => { 45 => 0x16, 97 => 0x316, 98 => 0x184, 178 => 0x20, 285 => 0xe, 320 => 0x110, 346 => 0x24, 347 => 0xe0, 348 => 0x103 },
- 'face8size' => { 286 => 0xe },
- 'face9position' => { 45 => 0x18, 97 => 0x385, 98 => 0x1b8, 178 => 0x24, 285 => 0x10 },
- 'face9size' => { 286 => 0x10 },
- 'facedetect' => { 300 => 0x76, 329 => 0x100 },
- 'facedetectarea' => { 251 => 0x1201 },
- 'facedetectframecrop' => { 251 => 0x1207 },
- 'facedetectframesize' => { 45 => 0x3, 97 => 0x1, 98 => 0x4, 178 => 0x1, 251 => 0x1203, 300 => 0x77, 320 => 0xb6 },
- 'facedetection' => { 341 => 0x30, 355 => 0x19 },
- 'faceid' => { 389 => 'FaceID' },
+ 'face10position' => { 97 => 0x3f4, 98 => 0x1ec, 179 => 0x28, 286 => 0x12 },
+ 'face10size' => { 287 => 0x12 },
+ 'face11position' => { 179 => 0x2c, 286 => 0x14 },
+ 'face11size' => { 287 => 0x14 },
+ 'face12position' => { 179 => 0x30, 286 => 0x16 },
+ 'face12size' => { 287 => 0x16 },
+ 'face13position' => { 286 => 0x18 },
+ 'face13size' => { 287 => 0x18 },
+ 'face14position' => { 286 => 0x1a },
+ 'face14size' => { 287 => 0x1a },
+ 'face15position' => { 286 => 0x1c },
+ 'face15size' => { 287 => 0x1c },
+ 'face16position' => { 286 => 0x1e },
+ 'face16size' => { 287 => 0x1e },
+ 'face17position' => { 286 => 0x20 },
+ 'face17size' => { 287 => 0x20 },
+ 'face18position' => { 286 => 0x22 },
+ 'face18size' => { 287 => 0x22 },
+ 'face19position' => { 286 => 0x24 },
+ 'face19size' => { 287 => 0x24 },
+ 'face1position' => { 45 => 0x8, 97 => 0xd, 98 => 0x18, 179 => 0x4, 262 => 0x1, 286 => 0x0, 321 => 0xbc, 347 => 0x1, 348 => 0x0, 349 => 0x0, 350 => 0x5b },
+ 'face1size' => { 287 => 0x0 },
+ 'face20position' => { 286 => 0x26 },
+ 'face20size' => { 287 => 0x26 },
+ 'face21position' => { 286 => 0x28 },
+ 'face21size' => { 287 => 0x28 },
+ 'face22position' => { 286 => 0x2a },
+ 'face22size' => { 287 => 0x2a },
+ 'face23position' => { 286 => 0x2c },
+ 'face23size' => { 287 => 0x2c },
+ 'face24position' => { 286 => 0x2e },
+ 'face24size' => { 287 => 0x2e },
+ 'face25position' => { 286 => 0x30 },
+ 'face25size' => { 287 => 0x30 },
+ 'face26position' => { 286 => 0x32 },
+ 'face26size' => { 287 => 0x32 },
+ 'face27position' => { 286 => 0x34 },
+ 'face27size' => { 287 => 0x34 },
+ 'face28position' => { 286 => 0x36 },
+ 'face28size' => { 287 => 0x36 },
+ 'face29position' => { 286 => 0x38 },
+ 'face29size' => { 287 => 0x38 },
+ 'face2position' => { 45 => 0xa, 97 => 0x7c, 98 => 0x4c, 179 => 0x8, 262 => 0x5, 286 => 0x2, 321 => 0xc8, 347 => 0x6, 348 => 0x20, 349 => 0x25, 350 => 0x65 },
+ 'face2size' => { 287 => 0x2 },
+ 'face30position' => { 286 => 0x3a },
+ 'face30size' => { 287 => 0x3a },
+ 'face31position' => { 286 => 0x3c },
+ 'face31size' => { 287 => 0x3c },
+ 'face32position' => { 286 => 0x3e },
+ 'face32size' => { 287 => 0x3e },
+ 'face3position' => { 45 => 0xc, 97 => 0xeb, 98 => 0x80, 179 => 0xc, 262 => 0x9, 286 => 0x4, 321 => 0xd4, 347 => 0xb, 348 => 0x40, 349 => 0x4a, 350 => 0x6f },
+ 'face3size' => { 287 => 0x4 },
+ 'face4position' => { 45 => 0xe, 97 => 0x15a, 98 => 0xb4, 179 => 0x10, 262 => 0xd, 286 => 0x6, 321 => 0xe0, 347 => 0x10, 348 => 0x60, 349 => 0x6f, 350 => 0x79 },
+ 'face4size' => { 287 => 0x6 },
+ 'face5position' => { 45 => 0x10, 97 => 0x1c9, 98 => 0xe8, 179 => 0x14, 262 => 0x11, 286 => 0x8, 321 => 0xec, 347 => 0x15, 348 => 0x80, 349 => 0x94 },
+ 'face5size' => { 287 => 0x8 },
+ 'face6position' => { 45 => 0x12, 97 => 0x238, 98 => 0x11c, 179 => 0x18, 286 => 0xa, 321 => 0xf8, 347 => 0x1a, 348 => 0xa0, 349 => 0xb9 },
+ 'face6size' => { 287 => 0xa },
+ 'face7position' => { 45 => 0x14, 97 => 0x2a7, 98 => 0x150, 179 => 0x1c, 286 => 0xc, 321 => 0x104, 347 => 0x1f, 348 => 0xc0, 349 => 0xde },
+ 'face7size' => { 287 => 0xc },
+ 'face8position' => { 45 => 0x16, 97 => 0x316, 98 => 0x184, 179 => 0x20, 286 => 0xe, 321 => 0x110, 347 => 0x24, 348 => 0xe0, 349 => 0x103 },
+ 'face8size' => { 287 => 0xe },
+ 'face9position' => { 45 => 0x18, 97 => 0x385, 98 => 0x1b8, 179 => 0x24, 286 => 0x10 },
+ 'face9size' => { 287 => 0x10 },
+ 'facedetect' => { 301 => 0x76, 330 => 0x100 },
+ 'facedetectarea' => { 252 => 0x1201 },
+ 'facedetectframecrop' => { 252 => 0x1207 },
+ 'facedetectframesize' => { 45 => 0x3, 97 => 0x1, 98 => 0x4, 179 => 0x1, 252 => 0x1203, 301 => 0x77, 321 => 0xb6 },
+ 'facedetection' => { 342 => 0x30, 356 => 0x19 },
+ 'faceid' => { 390 => 'FaceID' },
'faceinfounknown' => { 100 => 0x2089 },
- 'facename' => { 329 => 0x123 },
+ 'facename' => { 330 => 0x123 },
'faceorientation' => { 98 => 0x8 },
- 'faceposition' => { 284 => 0x2, 330 => 0x4 },
+ 'faceposition' => { 285 => 0x2, 331 => 0x4 },
'facepositions' => { 109 => 0x4103 },
- 'facerecognition' => { 329 => 0x120 },
- 'facesdetected' => { 45 => 0x2, 46 => 0x2, 47 => 0x3, 97 => 0x0, 98 => 0x2, 100 => 0x211c, 109 => 0x4100, 178 => 0x3, 251 => 0x1200, 267 => 0x3f, 284 => 0x0, 320 => 0xb5, 330 => 0x0, 346 => 0x0, 349 => 0x3, 357 => 0x30 },
- 'facesrecognized' => { 262 => 0x0 },
+ 'facerecognition' => { 330 => 0x120 },
+ 'facesdetected' => { 45 => 0x2, 46 => 0x2, 47 => 0x3, 97 => 0x0, 98 => 0x2, 100 => 0x211c, 109 => 0x4100, 179 => 0x3, 252 => 0x1200, 268 => 0x3f, 285 => 0x0, 321 => 0xb5, 331 => 0x0, 347 => 0x0, 350 => 0x3, 358 => 0x30 },
+ 'facesrecognized' => { 263 => 0x0 },
'facewidth' => { 46 => 0x1 },
'faithfuloutputhighlightpoint' => { 96 => 0x38 },
'faithfuloutputshadowpoint' => { 96 => 0x39 },
@@ -1940,28 +1940,28 @@ my %tagLookup = (
'faithfulunsharpmaskstrength' => { 96 => 0xaa },
'faithfulunsharpmaskthreshold' => { 96 => 0xae },
'femicroadjustment' => { 72 => 0x111 },
- 'ffid' => { 396 => 'ffid' },
- 'field' => { 408 => 'field' },
- 'fieldcount' => { 252 => 0x103f },
+ 'ffid' => { 397 => 'ffid' },
+ 'field' => { 409 => 'field' },
+ 'fieldcount' => { 253 => 0x103f },
'filecreatedate' => { 105 => 'FileCreateDate' },
- 'filedatarate' => { 419 => 'fileDataRate' },
- 'fileformat' => { 83 => 0x0, 113 => 0x14, 332 => [0x22,0x26], 351 => 0xb000 },
- 'fileindex' => { 6 => 0x143, 8 => 0x2d0, 10 => 0x172, 12 => 0x22c, 13 => 0x133, 14 => 0x13f, 15 => 0x1d3, 16 => 0x19b, 17 => 0x1e4, 18 => 0xd0, 19 => 0x1bb, 20 => 0x28c, 21 => 0x1db, 22 => 0x1d9, 23 => [0x270,0x274], 24 => 0x2aa, 25 => 0x2b3, 26 => 0x1eb, 268 => 0x0 },
+ 'filedatarate' => { 420 => 'fileDataRate' },
+ 'fileformat' => { 83 => 0x0, 113 => 0x14, 333 => [0x22,0x26], 352 => 0xb000 },
+ 'fileindex' => { 6 => 0x143, 8 => 0x2d0, 10 => 0x172, 12 => 0x22c, 13 => 0x133, 14 => 0x13f, 15 => 0x1d3, 16 => 0x19b, 17 => 0x1e4, 18 => 0xd0, 19 => 0x1bb, 20 => 0x28c, 21 => 0x1db, 22 => 0x1d9, 23 => [0x270,0x274], 24 => 0x2aa, 25 => 0x2b3, 26 => 0x1eb, 269 => 0x0 },
'fileindex2' => { 20 => 0x290 },
'filemodifydate' => { 105 => 'FileModifyDate' },
'filename' => { 105 => 'FileName' },
- 'filenameasdelivered' => { 407 => 'FileNameAsDelivered' },
- 'filenumber' => { 48 => 0x1, 54 => 0x8, 85 => 0x1817, 101 => 'FileNumber', 179 => 0x4 },
+ 'filenameasdelivered' => { 408 => 'FileNameAsDelivered' },
+ 'filenumber' => { 48 => 0x1, 54 => 0x8, 85 => 0x1817, 101 => 'FileNumber', 180 => 0x4 },
'filenumbermemory' => { 156 => 0x1a },
- 'filenumbersequence' => { 234 => '12.2', 237 => '3.1', 238 => '4.1', 239 => '4.1', 240 => '11.1', 241 => '4.3', 245 => '5.2' },
- 'filesource' => { 104 => 0xa300, 109 => 0x8000, 398 => 'FileSource' },
+ 'filenumbersequence' => { 235 => '12.2', 238 => '3.1', 239 => '4.1', 240 => '4.1', 241 => '11.1', 242 => '4.3', 246 => '5.2' },
+ 'filesource' => { 104 => 0xa300, 109 => 0x8000, 399 => 'FileSource' },
'fileversion' => { 113 => 0x16 },
'fillflashautoreduction' => { 70 => 0xe, 71 => 0xe, 78 => 0xa },
- 'filllight' => { 394 => 'FillLight' },
+ 'filllight' => { 395 => 'FillLight' },
'fillorder' => { 104 => 0x10a },
- 'filmmode' => { 109 => 0x1401, 265 => 0x412, 267 => 0x42 },
- 'filmtype' => { 197 => 0x2 },
- 'filtereffect' => { 48 => 0xe, 193 => 0x37 },
+ 'filmmode' => { 109 => 0x1401, 266 => 0x412, 268 => 0x42 },
+ 'filmtype' => { 198 => 0x2 },
+ 'filtereffect' => { 48 => 0xe, 194 => 0x37 },
'filtereffectauto' => { 61 => 0xa0 },
'filtereffectfaithful' => { 60 => 0x70, 61 => 0x70 },
'filtereffectlandscape' => { 60 => 0x40, 61 => 0x40 },
@@ -1973,184 +1973,184 @@ my %tagLookup = (
'filtereffectuserdef2' => { 60 => 0xb8, 61 => 0xd0 },
'filtereffectuserdef3' => { 60 => 0xd0, 61 => 0xe8 },
'finderdisplayduringexposure' => { 71 => 0x1 },
- 'finesharpness' => { 300 => 0x70 },
- 'finetuneoptcenterweighted' => { 234 => '7.2', 235 => '9.1', 244 => '9.1', 245 => '9.1' },
- 'finetuneopthighlightweighted' => { 244 => '46.1' },
- 'finetuneoptmatrixmetering' => { 234 => '8.1', 235 => '8.2', 240 => '6.1', 244 => '8.2', 245 => '8.2' },
- 'finetuneoptspotmetering' => { 234 => '8.2', 235 => '9.2', 240 => '6.2', 244 => '9.2', 245 => '9.2' },
- 'firmware' => { 252 => 0x405, 332 => [0x17,0x3b,0x57], 390 => 'Firmware' },
- 'firmwaredate' => { 99 => 0x15, 100 => 0x2001, 319 => 0x4 },
+ 'finesharpness' => { 301 => 0x70 },
+ 'finetuneoptcenterweighted' => { 235 => '7.2', 236 => '9.1', 245 => '9.1', 246 => '9.1' },
+ 'finetuneopthighlightweighted' => { 245 => '46.1' },
+ 'finetuneoptmatrixmetering' => { 235 => '8.1', 236 => '8.2', 241 => '6.1', 245 => '8.2', 246 => '8.2' },
+ 'finetuneoptspotmetering' => { 235 => '8.2', 236 => '9.2', 241 => '6.2', 245 => '9.2', 246 => '9.2' },
+ 'firmware' => { 253 => 0x405, 333 => [0x17,0x3b,0x57], 391 => 'Firmware' },
+ 'firmwaredate' => { 99 => 0x15, 100 => 0x2001, 320 => 0x4 },
'firmwareid' => { 163 => 0x0 },
- 'firmwarename' => { 329 => 0xa001 },
- 'firmwarerevision' => { 18 => 0xa4, 54 => 0x1e, 321 => 0x0 },
- 'firmwarerevision2' => { 321 => 0xc },
- 'firmwareversion' => { 6 => 0x10b, 10 => 0x136, 13 => 0xff, 14 => 0x107, 118 => 0xce5, 132 => 0x57, 134 => 'FirmwareVersion', 267 => 0x2, 269 => 0x3109, 300 => 0x230, 323 => 0x2 },
- 'firstphotodate' => { 383 => 'FirstPhotoDate' },
- 'firstpublicationdate' => { 407 => 'FirstPublicationDate' },
+ 'firmwarename' => { 330 => 0xa001 },
+ 'firmwarerevision' => { 18 => 0xa4, 54 => 0x1e, 322 => 0x0 },
+ 'firmwarerevision2' => { 322 => 0xc },
+ 'firmwareversion' => { 6 => 0x10b, 10 => 0x136, 13 => 0xff, 14 => 0x107, 118 => 0xce5, 132 => 0x57, 134 => 'FirmwareVersion', 268 => 0x2, 270 => 0x3109, 301 => 0x230, 324 => 0x2 },
+ 'firstphotodate' => { 384 => 'FirstPhotoDate' },
+ 'firstpublicationdate' => { 408 => 'FirstPublicationDate' },
'fixtureidentifier' => { 112 => 0x16 },
- 'flash' => { 101 => 'Flash', 104 => 0x9209, 157 => 0x1f, 158 => 0x15, 398 => 'Flash' },
- 'flashaction' => { 339 => 0x3e, 340 => 0x3e, 351 => 0x2017, 355 => [0x2a,0x2c,0x30] },
- 'flashaction2' => { 339 => 0x4c, 340 => 0x4c, 355 => 0x77 },
- 'flashactionexternal' => { 355 => [0x78,0x7c] },
+ 'flash' => { 101 => 'Flash', 104 => 0x9209, 157 => 0x1f, 158 => 0x15, 399 => 'Flash' },
+ 'flashaction' => { 340 => 0x3e, 341 => 0x3e, 352 => 0x2017, 356 => [0x2a,0x2c,0x30] },
+ 'flashaction2' => { 340 => 0x4c, 341 => 0x4c, 356 => 0x77 },
+ 'flashactionexternal' => { 356 => [0x78,0x7c] },
'flashactivity' => { 30 => 0x1c },
'flashbatterylevel' => { 36 => 0x249 },
- 'flashbias' => { 267 => 0x24 },
+ 'flashbias' => { 268 => 0x24 },
'flashbits' => { 30 => 0x1d },
'flashbuttonfunction' => { 72 => 0x70e },
- 'flashchargelevel' => { 252 => 0x1010 },
- 'flashcolorfilter' => { 182 => 0x10 },
- 'flashcommandermode' => { 180 => '9.1', 181 => '9.1', 182 => '9.1' },
- 'flashcompensation' => { 180 => 0xa, 181 => 0xa, 182 => 0xa, 390 => 'FlashCompensation' },
- 'flashcontrol' => { 339 => 0x23, 340 => 0x1f, 341 => 0x21 },
- 'flashcontrolbuilt-in' => { 240 => '16.1', 241 => '23.1', 243 => '23.1', 244 => '24.1' },
- 'flashcontrolmode' => { 180 => '9.2', 181 => '9.2', 182 => '9.2', 247 => 0x404 },
- 'flashcurtain' => { 267 => 0x48 },
+ 'flashchargelevel' => { 253 => 0x1010 },
+ 'flashcolorfilter' => { 183 => 0x10 },
+ 'flashcommandermode' => { 181 => '9.1', 182 => '9.1', 183 => '9.1' },
+ 'flashcompensation' => { 181 => 0xa, 182 => 0xa, 183 => 0xa, 391 => 'FlashCompensation' },
+ 'flashcontrol' => { 340 => 0x23, 341 => 0x1f, 342 => 0x21 },
+ 'flashcontrolbuilt-in' => { 241 => '16.1', 242 => '23.1', 244 => '23.1', 245 => '24.1' },
+ 'flashcontrolmode' => { 181 => '9.2', 182 => '9.2', 183 => '9.2', 248 => 0x404 },
+ 'flashcurtain' => { 268 => 0x48 },
'flashdefault' => { 159 => 0x42 },
- 'flashdevice' => { 252 => 0x1005 },
+ 'flashdevice' => { 253 => 0x1005 },
'flashdistance' => { 100 => 0x2034 },
- 'flashenergy' => { 104 => 0xa20b, 398 => 'FlashEnergy' },
- 'flashexposurebracketvalue' => { 191 => 0x18 },
- 'flashexposurecomp' => { 66 => 0xf, 109 => 0x1011, 137 => 'ExposureComp', 156 => 0x23, 161 => 0x104, 162 => 0x49c1, 191 => 0x12, 247 => 0x401, 252 => 0x1023, 300 => 0x4d, 323 => 0x100b, 332 => [0x3a,0x56], 351 => 0x104 },
- 'flashexposurecomp2' => { 214 => 0x4d2 },
- 'flashexposurecomp3' => { 182 => 0x1d },
- 'flashexposurecomp4' => { 182 => 0x27 },
- 'flashexposurecomparea' => { 235 => '38.4', 244 => '38.4' },
- 'flashexposurecompset' => { 159 => 0x10, 274 => 0xe, 339 => 0x14, 340 => 0x12, 341 => 0x23, 355 => 0x1f },
- 'flashexposurecompset2' => { 355 => [0x26,0x2c] },
+ 'flashenergy' => { 104 => 0xa20b, 399 => 'FlashEnergy' },
+ 'flashexposurebracketvalue' => { 192 => 0x18 },
+ 'flashexposurecomp' => { 66 => 0xf, 109 => 0x1011, 137 => 'ExposureComp', 156 => 0x23, 161 => 0x104, 162 => 0x49c1, 192 => 0x12, 248 => 0x401, 253 => 0x1023, 301 => 0x4d, 324 => 0x100b, 333 => [0x3a,0x56], 352 => 0x104 },
+ 'flashexposurecomp2' => { 215 => 0x4d2 },
+ 'flashexposurecomp3' => { 183 => 0x1d },
+ 'flashexposurecomp4' => { 183 => 0x27 },
+ 'flashexposurecomparea' => { 236 => '38.4', 245 => '38.4' },
+ 'flashexposurecompset' => { 159 => 0x10, 275 => 0xe, 340 => 0x14, 341 => 0x12, 342 => 0x23, 356 => 0x1f },
+ 'flashexposurecompset2' => { 356 => [0x26,0x2c] },
'flashexposureindicator' => { 159 => 0x54 },
'flashexposureindicatorlast' => { 159 => 0x56 },
'flashexposureindicatornext' => { 159 => 0x55 },
'flashexposurelock' => { 48 => 0x19 },
- 'flashfired' => { 120 => 0x5d, 137 => 'Fired', 156 => 0x14, 213 => '590.3', 267 => 0x8007, 398 => [\'Flash','FlashFired'] },
+ 'flashfired' => { 120 => 0x5d, 137 => 'Fired', 156 => 0x14, 214 => '590.3', 268 => 0x8007, 399 => [\'Flash','FlashFired'] },
'flashfiring' => { 72 => 0x306, 73 => 0x6, 74 => 0x7, 77 => 0x7 },
- 'flashfirmwareversion' => { 248 => 0x1002 },
- 'flashfocallength' => { 180 => 0xb, 181 => 0xc, 182 => 0xc },
- 'flashfunction' => { 162 => 0x31, 398 => [\'Flash','FlashFunction'] },
- 'flashgndistance' => { 180 => 0xe, 181 => 0xf, 182 => 0xf },
- 'flashgroupacompensation' => { 180 => 0x11, 181 => 0x12, 182 => 0x13 },
- 'flashgroupacontrolmode' => { 180 => 0xf, 181 => '16.1', 182 => '17.1' },
- 'flashgroupaoutput' => { 180 => 0x11, 181 => 0x12, 182 => 0x13 },
- 'flashgroupbcompensation' => { 180 => 0x12, 181 => 0x13, 182 => 0x14 },
- 'flashgroupbcontrolmode' => { 180 => 0x10, 181 => '17.1', 182 => '18.1' },
- 'flashgroupboutput' => { 180 => 0x12, 181 => 0x13, 182 => 0x14 },
- 'flashgroupccompensation' => { 181 => 0x14, 182 => 0x15 },
- 'flashgroupccontrolmode' => { 181 => '17.2', 182 => '18.2' },
- 'flashgroupcoutput' => { 181 => 0x14, 182 => 0x15 },
+ 'flashfirmwareversion' => { 249 => 0x1002 },
+ 'flashfocallength' => { 181 => 0xb, 182 => 0xc, 183 => 0xc },
+ 'flashfunction' => { 162 => 0x31, 399 => [\'Flash','FlashFunction'] },
+ 'flashgndistance' => { 181 => 0xe, 182 => 0xf, 183 => 0xf },
+ 'flashgroupacompensation' => { 181 => 0x11, 182 => 0x12, 183 => 0x13 },
+ 'flashgroupacontrolmode' => { 181 => 0xf, 182 => '16.1', 183 => '17.1' },
+ 'flashgroupaoutput' => { 181 => 0x11, 182 => 0x12, 183 => 0x13 },
+ 'flashgroupbcompensation' => { 181 => 0x12, 182 => 0x13, 183 => 0x14 },
+ 'flashgroupbcontrolmode' => { 181 => 0x10, 182 => '17.1', 183 => '18.1' },
+ 'flashgroupboutput' => { 181 => 0x12, 182 => 0x13, 183 => 0x14 },
+ 'flashgroupccompensation' => { 182 => 0x14, 183 => 0x15 },
+ 'flashgroupccontrolmode' => { 182 => '17.2', 183 => '18.2' },
+ 'flashgroupcoutput' => { 182 => 0x14, 183 => 0x15 },
'flashguidenumber' => { 66 => 0xd, 82 => 0x0, 137 => 'GuideNumber' },
- 'flashintensity' => { 99 => [0x19,0x5], 247 => 0x405 },
- 'flashlevel' => { 236 => 0x9, 351 => 0xb048 },
+ 'flashintensity' => { 99 => [0x19,0x5], 248 => 0x405 },
+ 'flashlevel' => { 237 => 0x9, 352 => 0xb048 },
'flashmake' => { 137 => 'Make' },
'flashmanufacturer' => { 154 => 'FlashManufacturer' },
'flashmetering' => { 156 => 0x3f, 159 => 0x1c },
'flashmeteringmode' => { 6 => 0x15, 12 => 0x15, 13 => 0x15, 14 => 0x15, 15 => 0x15, 16 => 0x15, 17 => 0x15, 19 => 0x15, 21 => 0x15, 26 => 0x15 },
- 'flashmeteringsegments' => { 300 => 0x20a },
- 'flashmode' => { 99 => 0x4, 120 => 0x5c, 137 => 'Mode', 156 => 0x2, 157 => 0x20, 158 => 0x16, 159 => 0xf, 191 => 0x87, 247 => 0x400, 252 => 0x1004, 300 => 0xc, 307 => 0x4, 322 => 0x20, 323 => 0x100a, 331 => 0x225, 339 => 0x13, 340 => 0x7f, 341 => 0x20, 355 => 0x10, 358 => 0x1138, 359 => 0x1138, 360 => 0x1114, 361 => 0x1190, 362 => 0x116c, 363 => 0x1024, 364 => 0x21c, 365 => 0x21c, 398 => [\'Flash','FlashMode'] },
- 'flashmodel' => { 137 => 'Model', 154 => 'FlashModel', 248 => 0x1001 },
- 'flashoptions' => { 281 => 0x2 },
- 'flashoptions2' => { 281 => 0x10 },
- 'flashoutput' => { 36 => 0x248, 66 => 0x21, 180 => 0xa, 181 => 0xa, 182 => 0xa },
- 'flashpixversion' => { 104 => 0xa000, 398 => 'FlashpixVersion' },
- 'flashredeyemode' => { 398 => [\'Flash','FlashRedEyeMode'] },
- 'flashremotecontrol' => { 247 => 0x403 },
- 'flashreturn' => { 398 => [\'Flash','FlashReturn'] },
- 'flashserialnumber' => { 137 => 'SerialNumber', 248 => 0x1003 },
- 'flashsetting' => { 191 => 0x8 },
- 'flashshutterspeed' => { 234 => '20.2', 235 => '23.2', 240 => '15.2', 241 => '22.2', 242 => '7.2', 243 => '22.2', 244 => '23.2', 245 => '23.1' },
- 'flashsource' => { 180 => 0x4, 181 => 0x4, 182 => 0x4 },
- 'flashstatus' => { 288 => 0x0, 355 => [0x82,0x86], 366 => [0x31,0x39] },
- 'flashstatusbuilt-in' => { 341 => [0x87,0x287] },
- 'flashstatusexternal' => { 341 => [0x88,0x288] },
- 'flashsyncspeed' => { 234 => '20.1', 235 => '23.1', 240 => '15.1', 241 => '22.1', 243 => '22.1', 244 => '23.1' },
+ 'flashmeteringsegments' => { 301 => 0x20a },
+ 'flashmode' => { 99 => 0x4, 120 => 0x5c, 137 => 'Mode', 156 => 0x2, 157 => 0x20, 158 => 0x16, 159 => 0xf, 192 => 0x87, 248 => 0x400, 253 => 0x1004, 301 => 0xc, 308 => 0x4, 323 => 0x20, 324 => 0x100a, 332 => 0x225, 340 => 0x13, 341 => 0x7f, 342 => 0x20, 356 => 0x10, 359 => 0x1138, 360 => 0x1138, 361 => 0x1114, 362 => 0x1190, 363 => 0x116c, 364 => 0x1024, 365 => 0x21c, 366 => 0x21c, 399 => [\'Flash','FlashMode'] },
+ 'flashmodel' => { 137 => 'Model', 154 => 'FlashModel', 249 => 0x1001 },
+ 'flashoptions' => { 282 => 0x2 },
+ 'flashoptions2' => { 282 => 0x10 },
+ 'flashoutput' => { 36 => 0x248, 66 => 0x21, 181 => 0xa, 182 => 0xa, 183 => 0xa },
+ 'flashpixversion' => { 104 => 0xa000, 399 => 'FlashpixVersion' },
+ 'flashredeyemode' => { 399 => [\'Flash','FlashRedEyeMode'] },
+ 'flashremotecontrol' => { 248 => 0x403 },
+ 'flashreturn' => { 399 => [\'Flash','FlashReturn'] },
+ 'flashserialnumber' => { 137 => 'SerialNumber', 249 => 0x1003 },
+ 'flashsetting' => { 192 => 0x8 },
+ 'flashshutterspeed' => { 235 => '20.2', 236 => '23.2', 241 => '15.2', 242 => '22.2', 243 => '7.2', 244 => '22.2', 245 => '23.2', 246 => '23.1' },
+ 'flashsource' => { 181 => 0x4, 182 => 0x4, 183 => 0x4 },
+ 'flashstatus' => { 289 => 0x0, 356 => [0x82,0x86], 367 => [0x31,0x39] },
+ 'flashstatusbuilt-in' => { 342 => [0x87,0x287] },
+ 'flashstatusexternal' => { 342 => [0x88,0x288] },
+ 'flashsyncspeed' => { 235 => '20.1', 236 => '23.1', 241 => '15.1', 242 => '22.1', 244 => '22.1', 245 => '23.1' },
'flashsyncspeedav' => { 70 => 0x3, 72 => 0x10f, 73 => 0x2, 74 => 0x3, 75 => 0x2, 76 => 0x2, 77 => 0x3, 78 => 0x6 },
'flashthreshold' => { 82 => 0x1 },
- 'flashtype' => { 137 => 'Type', 159 => 0x59, 191 => 0x9, 248 => 0x1000 },
- 'flashwarning' => { 241 => '30.1', 242 => '7.1', 245 => '31.1', 267 => 0x62 },
- 'flexiblespotposition' => { 351 => 0x201d },
- 'flickerreduce' => { 331 => 0x218 },
- 'fliphorizontal' => { 227 => 0x76a43206 },
- 'fnumber' => { 6 => 0x3, 8 => 0x3, 10 => 0x3, 12 => 0x3, 13 => 0x3, 14 => 0x3, 15 => 0x3, 16 => 0x3, 17 => 0x3, 18 => 0x3, 19 => 0x3, 20 => 0x3, 21 => 0x3, 22 => 0x3, 23 => 0x3, 24 => 0x3, 25 => 0x3, 26 => 0x3, 27 => 0x5, 28 => 0x6, 66 => 0x15, 104 => 0x829d, 117 => 0xfd04, 120 => 0x1e, 122 => 0xfa23, 124 => 0xf103, 127 => 0x13, 129 => 0x3c, 132 => 0xc, 141 => 'FNumber', 156 => 0xa, 157 => 0x36, 158 => 0x47, 159 => 0x9, 162 => 0x49c7, 300 => 0x13, 329 => 0xa019, 332 => [0x31,0x49], 339 => 0x1, 340 => 0x1, 355 => [0x20,0x22,0x26], 398 => 'FNumber' },
- 'focallength' => { 6 => 0x1d, 7 => 0xa, 8 => 0x23, 9 => 0x9, 10 => 0x1d, 11 => 0x9, 12 => 0x1e, 13 => 0x1d, 14 => 0x1d, 15 => 0x1e, 16 => 0x1e, 17 => 0x1e, 18 => 0x28, 19 => 0x1e, 20 => 0x23, 21 => 0x1e, 22 => 0x1e, 23 => 0x23, 24 => 0x23, 25 => 0x23, 26 => 0x1e, 50 => 0x1, 100 => 0x1d, 104 => 0x920a, 127 => 0x1d, 141 => 'FocalLength', 156 => 0x12, 187 => 0xa, 188 => 0xb, 300 => 0x1d, 323 => 0x1500, 338 => 0xe, 362 => 0x1278, 363 => 0x1134, 364 => 0x32c, 365 => 0x32c, 398 => 'FocalLength' },
- 'focallength2' => { 355 => [0x23,0x25,0x29] },
- 'focallengthin35mmformat' => { 104 => 0xa405, 329 => 0xa01a, 398 => 'FocalLengthIn35mmFilm' },
- 'focallengthtelezoom' => { 338 => 0x10 },
- 'focalplanediagonal' => { 248 => 0x103, 252 => 0x205 },
- 'focalplaneresolutionunit' => { 104 => 0xa210, 398 => 'FocalPlaneResolutionUnit' },
- 'focalplanexresolution' => { 104 => 0xa20e, 398 => 'FocalPlaneXResolution' },
+ 'flashtype' => { 137 => 'Type', 159 => 0x59, 192 => 0x9, 249 => 0x1000 },
+ 'flashwarning' => { 242 => '30.1', 243 => '7.1', 246 => '31.1', 268 => 0x62 },
+ 'flexiblespotposition' => { 352 => 0x201d },
+ 'flickerreduce' => { 332 => 0x218 },
+ 'fliphorizontal' => { 228 => 0x76a43206 },
+ 'fnumber' => { 6 => 0x3, 8 => 0x3, 10 => 0x3, 12 => 0x3, 13 => 0x3, 14 => 0x3, 15 => 0x3, 16 => 0x3, 17 => 0x3, 18 => 0x3, 19 => 0x3, 20 => 0x3, 21 => 0x3, 22 => 0x3, 23 => 0x3, 24 => 0x3, 25 => 0x3, 26 => 0x3, 27 => 0x5, 28 => 0x6, 66 => 0x15, 104 => 0x829d, 117 => 0xfd04, 120 => 0x1e, 122 => 0xfa23, 124 => 0xf103, 127 => 0x13, 129 => 0x3c, 132 => 0xc, 141 => 'FNumber', 156 => 0xa, 157 => 0x36, 158 => 0x47, 159 => 0x9, 162 => 0x49c7, 301 => 0x13, 330 => 0xa019, 333 => [0x31,0x49], 340 => 0x1, 341 => 0x1, 356 => [0x20,0x22,0x26], 399 => 'FNumber' },
+ 'focallength' => { 6 => 0x1d, 7 => 0xa, 8 => 0x23, 9 => 0x9, 10 => 0x1d, 11 => 0x9, 12 => 0x1e, 13 => 0x1d, 14 => 0x1d, 15 => 0x1e, 16 => 0x1e, 17 => 0x1e, 18 => 0x28, 19 => 0x1e, 20 => 0x23, 21 => 0x1e, 22 => 0x1e, 23 => 0x23, 24 => 0x23, 25 => 0x23, 26 => 0x1e, 50 => 0x1, 100 => 0x1d, 104 => 0x920a, 127 => 0x1d, 141 => 'FocalLength', 156 => 0x12, 188 => 0xa, 189 => 0xb, 301 => 0x1d, 324 => 0x1500, 339 => 0xe, 363 => 0x1278, 364 => 0x1134, 365 => 0x32c, 366 => 0x32c, 399 => 'FocalLength' },
+ 'focallength2' => { 356 => [0x23,0x25,0x29] },
+ 'focallengthin35mmformat' => { 104 => 0xa405, 330 => 0xa01a, 399 => 'FocalLengthIn35mmFilm' },
+ 'focallengthtelezoom' => { 339 => 0x10 },
+ 'focalplanediagonal' => { 249 => 0x103, 253 => 0x205 },
+ 'focalplaneresolutionunit' => { 104 => 0xa210, 399 => 'FocalPlaneResolutionUnit' },
+ 'focalplanexresolution' => { 104 => 0xa20e, 399 => 'FocalPlaneXResolution' },
'focalplanexsize' => { 50 => 0x2 },
'focalplanexunknown' => { 50 => 0x2 },
- 'focalplaneyresolution' => { 104 => 0xa20f, 398 => 'FocalPlaneYResolution' },
+ 'focalplaneyresolution' => { 104 => 0xa20f, 399 => 'FocalPlaneYResolution' },
'focalplaneysize' => { 50 => 0x3 },
'focalplaneyunknown' => { 50 => 0x3 },
'focaltype' => { 9 => 0x2d, 50 => 0x0 },
'focalunits' => { 30 => 0x19 },
- 'focus' => { 217 => 0x8 },
+ 'focus' => { 218 => 0x8 },
'focusarea' => { 156 => 0x31 },
- 'focusareaselection' => { 242 => '15.2' },
+ 'focusareaselection' => { 243 => '15.2' },
'focuscontinuous' => { 30 => 0x20 },
'focusdisplayaiservoandmf' => { 72 => 0x515 },
- 'focusdistance' => { 141 => 'FocusDistance', 156 => 0x13, 162 => 0x49bb, 187 => 0x9, 188 => 0xa, 250 => 0x305 },
+ 'focusdistance' => { 141 => 'FocusDistance', 156 => 0x13, 162 => 0x49bb, 188 => 0x9, 189 => 0xa, 251 => 0x305 },
'focusdistancelower' => { 6 => 0x45, 8 => 0x8e, 10 => 0x45, 12 => 0x56, 13 => 0x45, 14 => 0x45, 15 => 0x52, 16 => 0x52, 17 => 0x56, 19 => 0x52, 20 => 0x8e, 21 => 0x59, 22 => 0x57, 23 => 0x8e, 24 => 0x94, 25 => 0x95, 26 => 0x56, 48 => 0x15, 66 => 0x14 },
'focusdistanceupper' => { 6 => 0x43, 8 => 0x8c, 10 => 0x43, 12 => 0x54, 13 => 0x43, 14 => 0x43, 15 => 0x50, 16 => 0x50, 17 => 0x54, 19 => 0x50, 20 => 0x8c, 21 => 0x57, 22 => 0x55, 23 => 0x8c, 24 => 0x92, 25 => 0x93, 26 => 0x54, 48 => 0x14, 66 => 0x13 },
'focusholdbutton' => { 159 => 0x44 },
- 'focusinfoversion' => { 250 => 0x0 },
+ 'focusinfoversion' => { 251 => 0x0 },
'focusingscreen' => { 71 => 0x0, 72 => 0x80b, 77 => 0x0 },
'focuslocked' => { 155 => 0x14 },
- 'focusmode' => { 30 => 0x7, 99 => 0x3, 100 => [0x3003,0xd], 109 => 0x1021, 120 => 0x38, 134 => 'FocusMode', 156 => 0x30, 158 => 0xe, 159 => 0xc, 191 => 0x7, 247 => 0x301, 252 => 0x100b, 267 => 0x7, 300 => 0xd, 307 => 0x3, 323 => 0x1006, 333 => [0xb,0x5], 338 => [0x15,0x1d], 339 => 0x4d, 340 => 0x4d, 351 => [0xb042,0xb04e,0x201b], 355 => 0x13, 370 => 0x16 },
- 'focusmode2' => { 281 => '3.1', 355 => [0x2c,0x2e,0x32] },
- 'focusmodesetting' => { 236 => '10.1', 336 => 0x14, 337 => 0x15, 339 => 0x10, 340 => 0xf, 341 => 0x6 },
- 'focusmodeswitch' => { 159 => 0x58, 339 => 0x2e },
+ 'focusmode' => { 30 => 0x7, 99 => 0x3, 100 => [0x3003,0xd], 109 => 0x1021, 120 => 0x38, 134 => 'FocusMode', 156 => 0x30, 158 => 0xe, 159 => 0xc, 192 => 0x7, 248 => 0x301, 253 => 0x100b, 268 => 0x7, 301 => 0xd, 308 => 0x3, 324 => 0x1006, 334 => [0xb,0x5], 339 => [0x15,0x1d], 340 => 0x4d, 341 => 0x4d, 352 => [0xb042,0xb04e,0x201b], 356 => 0x13, 371 => 0x16 },
+ 'focusmode2' => { 282 => '3.1', 356 => [0x2c,0x2e,0x32] },
+ 'focusmodesetting' => { 237 => '10.1', 337 => 0x14, 338 => 0x15, 340 => 0x10, 341 => 0xf, 342 => 0x6 },
+ 'focusmodeswitch' => { 159 => 0x58, 340 => 0x2e },
'focuspixel' => { 109 => 0x1023 },
- 'focuspointwrap' => { 234 => '2.2', 235 => '2.2', 240 => '2.2', 241 => '1.2', 244 => '2.2', 245 => '2.5' },
- 'focusposition' => { 187 => 0x8, 188 => 0x8, 300 => 0x10, 350 => 0x9bb },
- 'focusposition2' => { 355 => [0x29,0x2b,0x2f], 370 => 0x2d, 373 => 0x20 },
- 'focusprocess' => { 247 => 0x302 },
- 'focusrange' => { 30 => 0x12, 252 => 0x100a },
- 'focusrangeindex' => { 291 => '3.1' },
- 'focussetting' => { 332 => 0x6 },
- 'focusstatus' => { 338 => 0x19, 339 => 0x53, 340 => 0x53 },
- 'focusstepcount' => { 250 => 0x301, 252 => 0x100e },
- 'focusstepinfinity' => { 250 => 0x303, 252 => 0x103b },
- 'focusstepnear' => { 250 => 0x304, 252 => 0x103c },
- 'focustrackinglockon' => { 234 => ['1.5','4.1'], 235 => '1.4', 240 => '3.1', 241 => '0.4', 244 => '1.4' },
+ 'focuspointwrap' => { 235 => '2.2', 236 => '2.2', 241 => '2.2', 242 => '1.2', 245 => '2.2', 246 => '2.5' },
+ 'focusposition' => { 188 => 0x8, 189 => 0x8, 301 => 0x10, 351 => 0x9bb },
+ 'focusposition2' => { 356 => [0x29,0x2b,0x2f], 371 => 0x2d, 374 => 0x20 },
+ 'focusprocess' => { 248 => 0x302 },
+ 'focusrange' => { 30 => 0x12, 253 => 0x100a },
+ 'focusrangeindex' => { 292 => '3.1' },
+ 'focussetting' => { 333 => 0x6 },
+ 'focusstatus' => { 339 => 0x19, 340 => 0x53, 341 => 0x53 },
+ 'focusstepcount' => { 251 => 0x301, 253 => 0x100e },
+ 'focusstepinfinity' => { 251 => 0x303, 253 => 0x103b },
+ 'focusstepnear' => { 251 => 0x304, 253 => 0x103c },
+ 'focustrackinglockon' => { 235 => ['1.5','4.1'], 236 => '1.4', 241 => '3.1', 242 => '0.4', 245 => '1.4' },
'focuswarning' => { 109 => 0x1301 },
'foldername' => { 156 => 0x27 },
- 'foldernumber' => { 339 => 0x9a, 341 => [0x402,0x114,0x316] },
- 'fontcomposite' => { 424 => [\'Fonts','FontsComposite'] },
- 'fontface' => { 424 => [\'Fonts','FontsFontFace'] },
- 'fontfamily' => { 424 => [\'Fonts','FontsFontFamily'] },
- 'fontfilename' => { 424 => [\'Fonts','FontsFontFileName'] },
- 'fontname' => { 424 => [\'Fonts','FontsFontName'] },
- 'fonts' => { 424 => 'Fonts' },
- 'fonttype' => { 424 => [\'Fonts','FontsFontType'] },
- 'fontversion' => { 424 => [\'Fonts','FontsVersionString'] },
- 'for' => { 314 => 'For' },
- 'format' => { 395 => 'format', 417 => 'Format' },
- 'forwardlock' => { 414 => 'forwardlock' },
+ 'foldernumber' => { 340 => 0x9a, 342 => [0x402,0x114,0x316] },
+ 'fontcomposite' => { 425 => [\'Fonts','FontsComposite'] },
+ 'fontface' => { 425 => [\'Fonts','FontsFontFace'] },
+ 'fontfamily' => { 425 => [\'Fonts','FontsFontFamily'] },
+ 'fontfilename' => { 425 => [\'Fonts','FontsFontFileName'] },
+ 'fontname' => { 425 => [\'Fonts','FontsFontName'] },
+ 'fonts' => { 425 => 'Fonts' },
+ 'fonttype' => { 425 => [\'Fonts','FontsFontType'] },
+ 'fontversion' => { 425 => [\'Fonts','FontsVersionString'] },
+ 'for' => { 315 => 'For' },
+ 'format' => { 396 => 'format', 418 => 'Format' },
+ 'forwardlock' => { 415 => 'forwardlock' },
'forwardmatrix1' => { 104 => 0xc714 },
'forwardmatrix2' => { 104 => 0xc715 },
'framecount' => { 57 => [0x2,0x4] },
'frameheight' => { 109 => 0x3822 },
- 'framenum' => { 309 => 0xd7 },
- 'framenumber' => { 109 => 0x8003, 162 => 0x3c, 300 => 0x29 },
+ 'framenum' => { 310 => 0xd7 },
+ 'framenumber' => { 109 => 0x8003, 162 => 0x3c, 301 => 0x29 },
'framerate' => { 57 => [0x1,0x6], 104 => 0xc764, 109 => 0x3820 },
'framewidth' => { 109 => 0x3821 },
- 'framing' => { 408 => 'framing' },
+ 'framing' => { 409 => 'framing' },
'freebytes' => { 85 => 0x1 },
'freememorycardimages' => { 157 => [0x37,0x54], 158 => [0x2d,0x4a], 159 => 0x32 },
'fujiflashmode' => { 109 => 0x1010 },
- 'fullimagesize' => { 351 => 0xb02b },
- 'fullpanoheightpixels' => { 383 => 'FullPanoHeightPixels' },
- 'fullpanowidthpixels' => { 383 => 'FullPanoWidthPixels' },
- 'fullpresssnap' => { 323 => 0x100d },
+ 'fullimagesize' => { 352 => 0xb02b },
+ 'fullpanoheightpixels' => { 384 => 'FullPanoHeightPixels' },
+ 'fullpanowidthpixels' => { 384 => 'FullPanoWidthPixels' },
+ 'fullpresssnap' => { 324 => 0x100d },
'fullsizeimage' => { 140 => 'data' },
'fullsizeimagename' => { 140 => '1Name' },
'fullsizeimagetype' => { 140 => '0Type' },
- 'funcbutton' => { 234 => ['14.1','15.1'], 235 => '14.1', 240 => '28.1', 241 => '13.1', 244 => '14.1', 245 => '14.1' },
- 'funcbuttonplusdials' => { 234 => ['14.2','15.2'], 235 => '14.2', 240 => '31.1', 244 => '42.1' },
- 'functionbutton' => { 239 => '13.1', 242 => '5.2' },
- 'gainbase' => { 251 => 0x610 },
- 'gaincontrol' => { 104 => 0xa407, 398 => 'GainControl' },
- 'gamma' => { 104 => 0xa500, 399 => 'Gamma' },
+ 'funcbutton' => { 235 => ['14.1','15.1'], 236 => '14.1', 241 => '28.1', 242 => '13.1', 245 => '14.1', 246 => '14.1' },
+ 'funcbuttonplusdials' => { 235 => ['14.2','15.2'], 236 => '14.2', 241 => '31.1', 245 => '42.1' },
+ 'functionbutton' => { 240 => '13.1', 243 => '5.2' },
+ 'gainbase' => { 252 => 0x610 },
+ 'gaincontrol' => { 104 => 0xa407, 399 => 'GainControl' },
+ 'gamma' => { 104 => 0xa500, 400 => 'Gamma' },
'gammablackpoint' => { 92 => 0xc },
'gammacolortone' => { 92 => 0x3 },
'gammacompensatedvalue' => { 114 => 0x91 },
@@ -2169,8 +2169,8 @@ my %tagLookup = (
'geimagesize' => { 109 => 0x1304 },
'gemake' => { 110 => 0x300 },
'gemodel' => { 110 => 0x207 },
- 'genre' => { 409 => 'genre', 419 => 'genre' },
- 'geography' => { 410 => 'geography' },
+ 'genre' => { 410 => 'genre', 420 => 'genre' },
+ 'geography' => { 411 => 'geography' },
'geologicalcontext' => { 103 => 'GeologicalContext' },
'geologicalcontextbed' => { 103 => [\'GeologicalContext','GeologicalContextBed'] },
'geologicalcontextformation' => { 103 => [\'GeologicalContext','GeologicalContextFormation'] },
@@ -2183,136 +2183,136 @@ my %tagLookup = (
'geotiffdirectory' => { 104 => 0x87af },
'geotiffdoubleparams' => { 104 => 0x87b0 },
'geotime' => { 105 => 'Geotime' },
- 'globalaltitude' => { 312 => 0x419 },
- 'globalangle' => { 312 => 0x40d },
- 'good' => { 419 => 'good' },
+ 'globalaltitude' => { 313 => 0x419 },
+ 'globalangle' => { 313 => 0x40d },
+ 'good' => { 420 => 'good' },
'googleplusuploadcode' => { 104 => 0x9009 },
- 'gpsaltitude' => { 111 => 0x6, 138 => 'Altitude', 398 => 'GPSAltitude' },
- 'gpsaltituderef' => { 111 => 0x5, 398 => 'GPSAltitudeRef' },
- 'gpsareainformation' => { 111 => 0x1c, 398 => 'GPSAreaInformation' },
+ 'gpsaltitude' => { 111 => 0x6, 138 => 'Altitude', 399 => 'GPSAltitude' },
+ 'gpsaltituderef' => { 111 => 0x5, 399 => 'GPSAltitudeRef' },
+ 'gpsareainformation' => { 111 => 0x1c, 399 => 'GPSAreaInformation' },
'gpsdatestamp' => { 111 => 0x1d },
- 'gpsdatetime' => { 138 => 'DateTime', 398 => 'GPSTimeStamp' },
- 'gpsdestbearing' => { 111 => 0x18, 138 => 'Bearing', 398 => 'GPSDestBearing' },
- 'gpsdestbearingref' => { 111 => 0x17, 398 => 'GPSDestBearingRef' },
- 'gpsdestdistance' => { 111 => 0x1a, 138 => 'Distance', 398 => 'GPSDestDistance' },
- 'gpsdestdistanceref' => { 111 => 0x19, 398 => 'GPSDestDistanceRef' },
- 'gpsdestlatitude' => { 111 => 0x14, 398 => 'GPSDestLatitude' },
+ 'gpsdatetime' => { 138 => 'DateTime', 399 => 'GPSTimeStamp' },
+ 'gpsdestbearing' => { 111 => 0x18, 138 => 'Bearing', 399 => 'GPSDestBearing' },
+ 'gpsdestbearingref' => { 111 => 0x17, 399 => 'GPSDestBearingRef' },
+ 'gpsdestdistance' => { 111 => 0x1a, 138 => 'Distance', 399 => 'GPSDestDistance' },
+ 'gpsdestdistanceref' => { 111 => 0x19, 399 => 'GPSDestDistanceRef' },
+ 'gpsdestlatitude' => { 111 => 0x14, 399 => 'GPSDestLatitude' },
'gpsdestlatituderef' => { 111 => 0x13 },
- 'gpsdestlongitude' => { 111 => 0x16, 398 => 'GPSDestLongitude' },
+ 'gpsdestlongitude' => { 111 => 0x16, 399 => 'GPSDestLongitude' },
'gpsdestlongituderef' => { 111 => 0x15 },
- 'gpsdifferential' => { 111 => 0x1e, 138 => 'Differential', 398 => 'GPSDifferential' },
- 'gpsdop' => { 111 => 0xb, 398 => 'GPSDOP' },
- 'gpshpositioningerror' => { 111 => 0x1f, 398 => 'GPSHPositioningError' },
- 'gpsimgdirection' => { 111 => 0x11, 398 => 'GPSImgDirection' },
- 'gpsimgdirectionref' => { 111 => 0x10, 398 => 'GPSImgDirectionRef' },
- 'gpslatitude' => { 111 => 0x2, 138 => 'Latitude', 398 => 'GPSLatitude' },
+ 'gpsdifferential' => { 111 => 0x1e, 138 => 'Differential', 399 => 'GPSDifferential' },
+ 'gpsdop' => { 111 => 0xb, 399 => 'GPSDOP' },
+ 'gpshpositioningerror' => { 111 => 0x1f, 399 => 'GPSHPositioningError' },
+ 'gpsimgdirection' => { 111 => 0x11, 399 => 'GPSImgDirection' },
+ 'gpsimgdirectionref' => { 111 => 0x10, 399 => 'GPSImgDirectionRef' },
+ 'gpslatitude' => { 111 => 0x2, 138 => 'Latitude', 399 => 'GPSLatitude' },
'gpslatituderef' => { 111 => 0x1 },
- 'gpslongitude' => { 111 => 0x4, 138 => 'Longitude', 398 => 'GPSLongitude' },
+ 'gpslongitude' => { 111 => 0x4, 138 => 'Longitude', 399 => 'GPSLongitude' },
'gpslongituderef' => { 111 => 0x3 },
- 'gpsmapdatum' => { 111 => 0x12, 138 => 'Datum', 398 => 'GPSMapDatum' },
- 'gpsmeasuremode' => { 111 => 0xa, 138 => 'MeasureMode', 398 => 'GPSMeasureMode' },
- 'gpsprocessingmethod' => { 111 => 0x1b, 398 => 'GPSProcessingMethod' },
- 'gpssatellites' => { 111 => 0x8, 138 => 'Satellites', 398 => 'GPSSatellites' },
- 'gpsspeed' => { 111 => 0xd, 138 => 'Speed', 398 => 'GPSSpeed' },
- 'gpsspeedref' => { 111 => 0xc, 398 => 'GPSSpeedRef' },
- 'gpsstatus' => { 111 => 0x9, 398 => 'GPSStatus' },
+ 'gpsmapdatum' => { 111 => 0x12, 138 => 'Datum', 399 => 'GPSMapDatum' },
+ 'gpsmeasuremode' => { 111 => 0xa, 138 => 'MeasureMode', 399 => 'GPSMeasureMode' },
+ 'gpsprocessingmethod' => { 111 => 0x1b, 399 => 'GPSProcessingMethod' },
+ 'gpssatellites' => { 111 => 0x8, 138 => 'Satellites', 399 => 'GPSSatellites' },
+ 'gpsspeed' => { 111 => 0xd, 138 => 'Speed', 399 => 'GPSSpeed' },
+ 'gpsspeedref' => { 111 => 0xc, 399 => 'GPSSpeedRef' },
+ 'gpsstatus' => { 111 => 0x9, 399 => 'GPSStatus' },
'gpstimestamp' => { 111 => 0x7 },
- 'gpstrack' => { 111 => 0xf, 138 => 'Heading', 398 => 'GPSTrack' },
- 'gpstrackref' => { 111 => 0xe, 398 => 'GPSTrackRef' },
- 'gpsversionid' => { 111 => 0x0, 398 => 'GPSVersionID' },
- 'gradation' => { 247 => 0x50f },
- 'gradientbasedcorractive' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'] },
- 'gradientbasedcorramount' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'] },
- 'gradientbasedcorrbrightness' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'] },
- 'gradientbasedcorrclarity' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'] },
- 'gradientbasedcorrclarity2012' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'] },
- 'gradientbasedcorrcontrast' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'] },
- 'gradientbasedcorrcontrast2012' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'] },
- 'gradientbasedcorrdefringe' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'] },
- 'gradientbasedcorrections' => { 394 => 'GradientBasedCorrections' },
- 'gradientbasedcorrexposure' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'] },
- 'gradientbasedcorrexposure2012' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'] },
- 'gradientbasedcorrhighlights2012' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'] },
- 'gradientbasedcorrhue' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'] },
- 'gradientbasedcorrluminancenoise' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'] },
- 'gradientbasedcorrmaskalpha' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'] },
- 'gradientbasedcorrmaskangle' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'] },
- 'gradientbasedcorrmaskbottom' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'] },
- 'gradientbasedcorrmaskcentervalue' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'] },
- 'gradientbasedcorrmaskcenterweight' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'] },
- 'gradientbasedcorrmaskdabs' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'] },
- 'gradientbasedcorrmaskfeather' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'] },
- 'gradientbasedcorrmaskflipped' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'] },
- 'gradientbasedcorrmaskflow' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'] },
- 'gradientbasedcorrmaskfullx' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'] },
- 'gradientbasedcorrmaskfully' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'] },
- 'gradientbasedcorrmaskleft' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'] },
- 'gradientbasedcorrmaskmidpoint' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'] },
- 'gradientbasedcorrmaskperimetervalue' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'] },
- 'gradientbasedcorrmaskradius' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'] },
- 'gradientbasedcorrmaskright' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'] },
- 'gradientbasedcorrmaskroundness' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'] },
- 'gradientbasedcorrmasks' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'] },
- 'gradientbasedcorrmasksizex' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'] },
- 'gradientbasedcorrmasksizey' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'] },
- 'gradientbasedcorrmasktop' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'] },
- 'gradientbasedcorrmaskvalue' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'] },
- 'gradientbasedcorrmaskversion' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'] },
- 'gradientbasedcorrmaskwhat' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'] },
- 'gradientbasedcorrmaskx' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'] },
- 'gradientbasedcorrmasky' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'] },
- 'gradientbasedcorrmaskzerox' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'] },
- 'gradientbasedcorrmaskzeroy' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'] },
- 'gradientbasedcorrmoire' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'] },
- 'gradientbasedcorrsaturation' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation','GradientBasedCorrectionsLocalToningSaturation'] },
- 'gradientbasedcorrshadows2012' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'] },
- 'gradientbasedcorrsharpness' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'] },
- 'gradientbasedcorrtemperature' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'] },
- 'gradientbasedcorrtint' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'] },
- 'gradientbasedcorrwhat' => { 394 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'] },
- 'grainamount' => { 394 => 'GrainAmount' },
- 'grainfrequency' => { 394 => 'GrainFrequency' },
- 'grainsize' => { 394 => 'GrainSize' },
- 'graymixeraqua' => { 394 => 'GrayMixerAqua' },
- 'graymixerblue' => { 394 => 'GrayMixerBlue' },
- 'graymixergreen' => { 394 => 'GrayMixerGreen' },
- 'graymixermagenta' => { 394 => 'GrayMixerMagenta' },
- 'graymixerorange' => { 394 => 'GrayMixerOrange' },
- 'graymixerpurple' => { 394 => 'GrayMixerPurple' },
- 'graymixerred' => { 394 => 'GrayMixerRed' },
- 'graymixeryellow' => { 394 => 'GrayMixerYellow' },
- 'graypoint' => { 379 => 0x8021 },
+ 'gpstrack' => { 111 => 0xf, 138 => 'Heading', 399 => 'GPSTrack' },
+ 'gpstrackref' => { 111 => 0xe, 399 => 'GPSTrackRef' },
+ 'gpsversionid' => { 111 => 0x0, 399 => 'GPSVersionID' },
+ 'gradation' => { 248 => 0x50f },
+ 'gradientbasedcorractive' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionActive'] },
+ 'gradientbasedcorramount' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionAmount'] },
+ 'gradientbasedcorrbrightness' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalBrightness'] },
+ 'gradientbasedcorrclarity' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity'] },
+ 'gradientbasedcorrclarity2012' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalClarity2012'] },
+ 'gradientbasedcorrcontrast' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast'] },
+ 'gradientbasedcorrcontrast2012' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalContrast2012'] },
+ 'gradientbasedcorrdefringe' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalDefringe'] },
+ 'gradientbasedcorrections' => { 395 => 'GradientBasedCorrections' },
+ 'gradientbasedcorrexposure' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure'] },
+ 'gradientbasedcorrexposure2012' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalExposure2012'] },
+ 'gradientbasedcorrhighlights2012' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalHighlights2012'] },
+ 'gradientbasedcorrhue' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalToningHue'] },
+ 'gradientbasedcorrluminancenoise' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalLuminanceNoise'] },
+ 'gradientbasedcorrmaskalpha' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAlpha'] },
+ 'gradientbasedcorrmaskangle' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksAngle'] },
+ 'gradientbasedcorrmaskbottom' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksBottom'] },
+ 'gradientbasedcorrmaskcentervalue' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterValue'] },
+ 'gradientbasedcorrmaskcenterweight' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksCenterWeight'] },
+ 'gradientbasedcorrmaskdabs' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksDabs'] },
+ 'gradientbasedcorrmaskfeather' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFeather'] },
+ 'gradientbasedcorrmaskflipped' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlipped'] },
+ 'gradientbasedcorrmaskflow' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFlow'] },
+ 'gradientbasedcorrmaskfullx' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullX'] },
+ 'gradientbasedcorrmaskfully' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksFullY'] },
+ 'gradientbasedcorrmaskleft' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksLeft'] },
+ 'gradientbasedcorrmaskmidpoint' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMidpoint'] },
+ 'gradientbasedcorrmaskperimetervalue' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksPerimeterValue'] },
+ 'gradientbasedcorrmaskradius' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRadius'] },
+ 'gradientbasedcorrmaskright' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRight'] },
+ 'gradientbasedcorrmaskroundness' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksRoundness'] },
+ 'gradientbasedcorrmasks' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasks'] },
+ 'gradientbasedcorrmasksizex' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeX'] },
+ 'gradientbasedcorrmasksizey' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksSizeY'] },
+ 'gradientbasedcorrmasktop' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksTop'] },
+ 'gradientbasedcorrmaskvalue' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksMaskValue'] },
+ 'gradientbasedcorrmaskversion' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksVersion'] },
+ 'gradientbasedcorrmaskwhat' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksWhat'] },
+ 'gradientbasedcorrmaskx' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksX'] },
+ 'gradientbasedcorrmasky' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksY'] },
+ 'gradientbasedcorrmaskzerox' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroX'] },
+ 'gradientbasedcorrmaskzeroy' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsCorrectionMasksZeroY'] },
+ 'gradientbasedcorrmoire' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalMoire'] },
+ 'gradientbasedcorrsaturation' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSaturation','GradientBasedCorrectionsLocalToningSaturation'] },
+ 'gradientbasedcorrshadows2012' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalShadows2012'] },
+ 'gradientbasedcorrsharpness' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalSharpness'] },
+ 'gradientbasedcorrtemperature' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTemperature'] },
+ 'gradientbasedcorrtint' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsLocalTint'] },
+ 'gradientbasedcorrwhat' => { 395 => [\'GradientBasedCorrections','GradientBasedCorrectionsWhat'] },
+ 'grainamount' => { 395 => 'GrainAmount' },
+ 'grainfrequency' => { 395 => 'GrainFrequency' },
+ 'grainsize' => { 395 => 'GrainSize' },
+ 'graymixeraqua' => { 395 => 'GrayMixerAqua' },
+ 'graymixerblue' => { 395 => 'GrayMixerBlue' },
+ 'graymixergreen' => { 395 => 'GrayMixerGreen' },
+ 'graymixermagenta' => { 395 => 'GrayMixerMagenta' },
+ 'graymixerorange' => { 395 => 'GrayMixerOrange' },
+ 'graymixerpurple' => { 395 => 'GrayMixerPurple' },
+ 'graymixerred' => { 395 => 'GrayMixerRed' },
+ 'graymixeryellow' => { 395 => 'GrayMixerYellow' },
+ 'graypoint' => { 380 => 0x8021 },
'grayresponseunit' => { 104 => 0x122 },
'greencurvelimits' => { 95 => 0x1c4 },
'greencurvepoints' => { 94 => 0x53, 95 => 0x19a },
'greenhsl' => { 90 => 0x20912 },
- 'greenhue' => { 394 => 'GreenHue' },
- 'greensaturation' => { 394 => 'GreenSaturation' },
- 'griddisplay' => { 234 => '13.3', 235 => '4.3', 237 => '2.2', 240 => '10.5', 241 => '3.4', 242 => '6.1', 244 => '4.4', 245 => '4.2' },
- 'gripbatteryadload' => { 279 => 0x5 },
- 'gripbatteryadnoload' => { 279 => 0x4 },
- 'gripbatterystate' => { 279 => '1.2' },
- 'groupareaafillumination' => { 235 => '46.4', 244 => '47.4' },
+ 'greenhue' => { 395 => 'GreenHue' },
+ 'greensaturation' => { 395 => 'GreenSaturation' },
+ 'griddisplay' => { 235 => '13.3', 236 => '4.3', 238 => '2.2', 241 => '10.5', 242 => '3.4', 243 => '6.1', 245 => '4.4', 246 => '4.2' },
+ 'gripbatteryadload' => { 280 => 0x5 },
+ 'gripbatteryadnoload' => { 280 => 0x4 },
+ 'gripbatterystate' => { 280 => '1.2' },
+ 'groupareaafillumination' => { 236 => '46.4', 245 => '47.4' },
'halftonehints' => { 104 => 0x141 },
'hardlink' => { 105 => 'HardLink' },
- 'hasalternative' => { 409 => 'hasAlternative' },
- 'hascorrection' => { 409 => 'hasCorrection' },
- 'hascorrectiona-lang' => { 409 => [\'hasCorrection','hasCorrectionA-lang'] },
- 'hascorrectiona-platform' => { 409 => [\'hasCorrection','hasCorrectionA-platform'] },
- 'hascorrectiontext' => { 409 => [\'hasCorrection','hasCorrectionText'] },
- 'hascrop' => { 394 => 'HasCrop' },
- 'hasextendedxmp' => { 421 => 'HasExtendedXMP' },
- 'hassettings' => { 394 => 'HasSettings' },
- 'hastranslation' => { 409 => 'hasTranslation' },
- 'hdr' => { 51 => 0x1, 184 => 0x4, 267 => 0x9e, 300 => 0x85, 351 => 0x200a },
+ 'hasalternative' => { 410 => 'hasAlternative' },
+ 'hascorrection' => { 410 => 'hasCorrection' },
+ 'hascorrectiona-lang' => { 410 => [\'hasCorrection','hasCorrectionA-lang'] },
+ 'hascorrectiona-platform' => { 410 => [\'hasCorrection','hasCorrectionA-platform'] },
+ 'hascorrectiontext' => { 410 => [\'hasCorrection','hasCorrectionText'] },
+ 'hascrop' => { 395 => 'HasCrop' },
+ 'hasextendedxmp' => { 422 => 'HasExtendedXMP' },
+ 'hassettings' => { 395 => 'HasSettings' },
+ 'hastranslation' => { 410 => 'hasTranslation' },
+ 'hdr' => { 51 => 0x1, 185 => 0x4, 268 => 0x9e, 301 => 0x85, 352 => 0x200a },
'hdreffect' => { 51 => 0x2 },
'hdrimagetype' => { 1 => 0xa },
- 'hdrinfoversion' => { 184 => 0x0 },
- 'hdrlevel' => { 184 => 0x5, 341 => 0x2e, 355 => 0x17 },
- 'hdrlevel2' => { 184 => 0x7 },
- 'hdrsetting' => { 341 => 0x2d, 355 => 0x16, 358 => 0x1148, 359 => 0x1148, 360 => 0x1124, 361 => 0x11a0, 362 => 0x117c, 363 => 0x1034, 364 => 0x22c, 365 => 0x22c },
- 'hdrsmoothing' => { 184 => 0x6 },
- 'headline' => { 112 => 0x69, 406 => 'Headline' },
+ 'hdrinfoversion' => { 185 => 0x0 },
+ 'hdrlevel' => { 185 => 0x5, 342 => 0x2e, 356 => 0x17 },
+ 'hdrlevel2' => { 185 => 0x7 },
+ 'hdrsetting' => { 342 => 0x2d, 356 => 0x16, 359 => 0x1148, 360 => 0x1148, 361 => 0x1124, 362 => 0x11a0, 363 => 0x117c, 364 => 0x1034, 365 => 0x22c, 366 => 0x22c },
+ 'hdrsmoothing' => { 185 => 0x6 },
+ 'headline' => { 112 => 0x69, 407 => 'Headline' },
'hierarchicalkeywords' => { 149 => [\'Keywords','KeywordsHierarchy'] },
'hierarchicalkeywords1' => { 149 => [\'Keywords','KeywordsHierarchyKeyword'] },
'hierarchicalkeywords1applied' => { 149 => [\'Keywords','KeywordsHierarchyApplied'] },
@@ -2331,54 +2331,54 @@ my %tagLookup = (
'hierarchicalkeywords5children' => { 149 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildren'] },
'hierarchicalkeywords6' => { 149 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildrenKeyword'] },
'hierarchicalkeywords6applied' => { 149 => [\'Keywords','KeywordsHierarchyChildrenChildrenChildrenChildrenChildrenApplied'] },
- 'hierarchicalsubject' => { 385 => 'hierarchicalSubject' },
+ 'hierarchicalsubject' => { 386 => 'hierarchicalSubject' },
'highestbiostratigraphiczone' => { 103 => [\'GeologicalContext','GeologicalContextHighestBiostratigraphicZone'] },
- 'highisomultiplierblue' => { 271 => 0x1a },
- 'highisomultipliergreen' => { 271 => 0x19 },
- 'highisomultiplierred' => { 271 => 0x18 },
- 'highisonoisereduction' => { 15 => 0xbc, 16 => 0xbd, 19 => 0xbd, 26 => 0xc9, 53 => 0x5, 72 => 0x202, 109 => 0x100e, 191 => 0xb1, 300 => 0x71, 339 => 0x2c, 340 => 0x26, 341 => 0x26, 351 => 0x2009, 355 => 0x12, 375 => 0x42 },
- 'highisonoisereduction2' => { 351 => 0xb050 },
- 'highlight' => { 332 => 0xf },
+ 'highisomultiplierblue' => { 272 => 0x1a },
+ 'highisomultipliergreen' => { 272 => 0x19 },
+ 'highisomultiplierred' => { 272 => 0x18 },
+ 'highisonoisereduction' => { 15 => 0xbc, 16 => 0xbd, 19 => 0xbd, 26 => 0xc9, 53 => 0x5, 72 => 0x202, 109 => 0x100e, 192 => 0xb1, 301 => 0x71, 340 => 0x2c, 341 => 0x26, 342 => 0x26, 352 => 0x2009, 356 => 0x12, 376 => 0x42 },
+ 'highisonoisereduction2' => { 352 => 0xb050 },
+ 'highlight' => { 333 => 0xf },
'highlightadj' => { 90 => 0x2030c },
- 'highlightcolordistortreduct' => { 379 => 0x8026 },
- 'highlightprotection' => { 226 => 0x6 },
- 'highlightrecovery' => { 394 => 'HighlightRecovery' },
- 'highlights' => { 387 => 'Highlights' },
- 'highlights2012' => { 394 => 'Highlights2012' },
+ 'highlightcolordistortreduct' => { 380 => 0x8026 },
+ 'highlightprotection' => { 227 => 0x6 },
+ 'highlightrecovery' => { 395 => 'HighlightRecovery' },
+ 'highlights' => { 388 => 'Highlights' },
+ 'highlights2012' => { 395 => 'Highlights2012' },
'highlighttone' => { 109 => 0x1041 },
'highlighttonepriority' => { 12 => 0x7, 15 => 0x7, 16 => 0x7, 17 => 0x7, 19 => 0x7, 21 => 0x7, 26 => 0x7, 53 => 0x3, 72 => 0x203 },
- 'highlowkeyadj' => { 300 => 0x6c },
- 'highspeedsync' => { 159 => 0x5, 339 => 0x2, 340 => 0x2 },
- 'histogramxml' => { 227 => 0x83a1a25 },
- 'history' => { 406 => 'History', 420 => 'History' },
- 'historyaction' => { 420 => [\'History','HistoryAction'] },
- 'historychanged' => { 420 => [\'History','HistoryChanged'] },
- 'historyinstanceid' => { 420 => [\'History','HistoryInstanceID'] },
- 'historyparameters' => { 420 => [\'History','HistoryParameters'] },
- 'historysoftwareagent' => { 420 => [\'History','HistorySoftwareAgent'] },
- 'historywhen' => { 420 => [\'History','HistoryWhen'] },
- 'hometowncity' => { 100 => 0x3006, 300 => 0x23, 306 => 0x2 },
- 'hometowncitycode' => { 307 => 0x1000 },
- 'hometowndst' => { 300 => 0x25, 306 => '0.2' },
+ 'highlowkeyadj' => { 301 => 0x6c },
+ 'highspeedsync' => { 159 => 0x5, 340 => 0x2, 341 => 0x2 },
+ 'histogramxml' => { 228 => 0x83a1a25 },
+ 'history' => { 407 => 'History', 421 => 'History' },
+ 'historyaction' => { 421 => [\'History','HistoryAction'] },
+ 'historychanged' => { 421 => [\'History','HistoryChanged'] },
+ 'historyinstanceid' => { 421 => [\'History','HistoryInstanceID'] },
+ 'historyparameters' => { 421 => [\'History','HistoryParameters'] },
+ 'historysoftwareagent' => { 421 => [\'History','HistorySoftwareAgent'] },
+ 'historywhen' => { 421 => [\'History','HistoryWhen'] },
+ 'hometowncity' => { 100 => 0x3006, 301 => 0x23, 307 => 0x2 },
+ 'hometowncitycode' => { 308 => 0x1000 },
+ 'hometowndst' => { 301 => 0x25, 307 => '0.2' },
'hostcomputer' => { 104 => 0x13c },
- 'hue' => { 164 => 0x3b, 300 => 0x67 },
- 'hueadj' => { 230 => 0x2f, 379 => 0x8019 },
- 'hueadjust' => { 323 => 0x1016 },
- 'hueadjustment' => { 157 => 0x4a, 158 => 0x40, 191 => 0x92, 193 => 0x36 },
- 'hueadjustmentaqua' => { 394 => 'HueAdjustmentAqua' },
- 'hueadjustmentblue' => { 394 => 'HueAdjustmentBlue' },
- 'hueadjustmentgreen' => { 394 => 'HueAdjustmentGreen' },
- 'hueadjustmentmagenta' => { 394 => 'HueAdjustmentMagenta' },
- 'hueadjustmentorange' => { 394 => 'HueAdjustmentOrange' },
- 'hueadjustmentpurple' => { 394 => 'HueAdjustmentPurple' },
- 'hueadjustmentred' => { 394 => 'HueAdjustmentRed' },
- 'hueadjustmentyellow' => { 394 => 'HueAdjustmentYellow' },
- 'huesetting' => { 255 => 0x1011 },
+ 'hue' => { 164 => 0x3b, 301 => 0x67 },
+ 'hueadj' => { 231 => 0x2f, 380 => 0x8019 },
+ 'hueadjust' => { 324 => 0x1016 },
+ 'hueadjustment' => { 157 => 0x4a, 158 => 0x40, 192 => 0x92, 194 => 0x36 },
+ 'hueadjustmentaqua' => { 395 => 'HueAdjustmentAqua' },
+ 'hueadjustmentblue' => { 395 => 'HueAdjustmentBlue' },
+ 'hueadjustmentgreen' => { 395 => 'HueAdjustmentGreen' },
+ 'hueadjustmentmagenta' => { 395 => 'HueAdjustmentMagenta' },
+ 'hueadjustmentorange' => { 395 => 'HueAdjustmentOrange' },
+ 'hueadjustmentpurple' => { 395 => 'HueAdjustmentPurple' },
+ 'hueadjustmentred' => { 395 => 'HueAdjustmentRed' },
+ 'hueadjustmentyellow' => { 395 => 'HueAdjustmentYellow' },
+ 'huesetting' => { 256 => 0x1011 },
'icc_profile' => { 105 => 'ICC_Profile' },
- 'iccprofilename' => { 406 => 'ICCProfile' },
- 'idccreativestyle' => { 379 => 0x8000 },
- 'idcpreviewlength' => { 379 => 0x202 },
- 'idcpreviewstart' => { 379 => 0x201 },
+ 'iccprofilename' => { 407 => 'ICCProfile' },
+ 'idccreativestyle' => { 380 => 0x8000 },
+ 'idcpreviewlength' => { 380 => 0x202 },
+ 'idcpreviewstart' => { 380 => 0x201 },
'identification' => { 103 => 'Identification' },
'identificationid' => { 103 => [\'Identification','IdentificationIdentificationID'] },
'identificationqualifier' => { 103 => [\'Identification','IdentificationIdentificationQualifier'] },
@@ -2386,207 +2386,207 @@ my %tagLookup = (
'identificationremarks' => { 103 => [\'Identification','IdentificationIdentificationRemarks'] },
'identificationverificationstatus' => { 103 => [\'Identification','IdentificationIdentificationVerificationStatus'] },
'identifiedby' => { 103 => [\'Identification','IdentificationIdentifiedBy'] },
- 'identifier' => { 395 => 'identifier', 417 => 'Identifier' },
- 'illumination' => { 242 => '0.5' },
- 'imageadjustment' => { 191 => 0x80, 217 => 0x5 },
- 'imagealterationconstraints' => { 407 => 'ImageAlterationConstraints' },
- 'imagearea' => { 202 => 0x10, 205 => 0x10 },
- 'imageareaoffset' => { 300 => 0x38 },
- 'imageauthentication' => { 191 => 0x20 },
- 'imageboundary' => { 191 => 0x16 },
- 'imagecount' => { 109 => 0x1438, 191 => 0xa5, 353 => 0x11b, 366 => [0x32,0x3a] },
- 'imagecount2' => { 366 => [0x4c,0x58] },
- 'imagecount3' => { 366 => [0x1a0,0x1aa,0x1bd,0x1cb] },
- 'imagecreator' => { 407 => 'ImageCreator' },
- 'imagecreatorid' => { 407 => [\'ImageCreator','ImageCreatorImageCreatorID'] },
- 'imagecreatorimageid' => { 407 => 'ImageCreatorImageID' },
- 'imagecreatorname' => { 407 => [\'ImageCreator','ImageCreatorImageCreatorName'] },
- 'imagedatasize' => { 191 => 0xa2 },
- 'imagedescription' => { 104 => 0x10e, 415 => 'ImageDescription' },
- 'imageduplicationconstraints' => { 407 => 'ImageDuplicationConstraints' },
- 'imagedustoff' => { 227 => 0xfe443a45 },
- 'imageeditcount' => { 300 => 0x41 },
- 'imageediting' => { 300 => 0x32 },
- 'imageeffects' => { 323 => 0x1010 },
- 'imagefileconstraints' => { 407 => 'ImageFileConstraints' },
- 'imagefileformatasdelivered' => { 407 => 'ImageFileFormatAsDelivered' },
- 'imagefilesizeasdelivered' => { 407 => 'ImageFileSizeAsDelivered' },
+ 'identifier' => { 396 => 'identifier', 418 => 'Identifier' },
+ 'illumination' => { 243 => '0.5' },
+ 'imageadjustment' => { 192 => 0x80, 218 => 0x5 },
+ 'imagealterationconstraints' => { 408 => 'ImageAlterationConstraints' },
+ 'imagearea' => { 203 => 0x10, 206 => 0x10 },
+ 'imageareaoffset' => { 301 => 0x38 },
+ 'imageauthentication' => { 192 => 0x20 },
+ 'imageboundary' => { 192 => 0x16 },
+ 'imagecount' => { 109 => 0x1438, 192 => 0xa5, 354 => 0x11b, 367 => [0x32,0x3a] },
+ 'imagecount2' => { 367 => [0x4c,0x58] },
+ 'imagecount3' => { 367 => [0x1a0,0x1aa,0x1bd,0x1cb] },
+ 'imagecreator' => { 408 => 'ImageCreator' },
+ 'imagecreatorid' => { 408 => [\'ImageCreator','ImageCreatorImageCreatorID'] },
+ 'imagecreatorimageid' => { 408 => 'ImageCreatorImageID' },
+ 'imagecreatorname' => { 408 => [\'ImageCreator','ImageCreatorImageCreatorName'] },
+ 'imagedatasize' => { 192 => 0xa2 },
+ 'imagedescription' => { 104 => 0x10e, 416 => 'ImageDescription' },
+ 'imageduplicationconstraints' => { 408 => 'ImageDuplicationConstraints' },
+ 'imagedustoff' => { 228 => 0xfe443a45 },
+ 'imageeditcount' => { 301 => 0x41 },
+ 'imageediting' => { 301 => 0x32 },
+ 'imageeffects' => { 324 => 0x1010 },
+ 'imagefileconstraints' => { 408 => 'ImageFileConstraints' },
+ 'imagefileformatasdelivered' => { 408 => 'ImageFileFormatAsDelivered' },
+ 'imagefilesizeasdelivered' => { 408 => 'ImageFileSizeAsDelivered' },
'imagegeneration' => { 109 => 0x1436 },
- 'imageheight' => { 104 => 0x101, 163 => 0xc, 415 => 'ImageLength' },
+ 'imageheight' => { 104 => 0x101, 163 => 0xc, 416 => 'ImageLength' },
'imagehistory' => { 104 => 0x9213 },
- 'imageidnumber' => { 263 => 0x340 },
- 'imagenumber' => { 104 => 0x9211, 134 => 'ImageNumber', 157 => 0xae, 158 => 0x5e, 339 => 0x9b, 341 => [0x400,'276.1',0x314], 390 => 'ImageNumber' },
+ 'imageidnumber' => { 264 => 0x340 },
+ 'imagenumber' => { 104 => 0x9211, 134 => 'ImageNumber', 157 => 0xae, 158 => 0x5e, 340 => 0x9b, 342 => [0x400,'276.1',0x314], 391 => 'ImageNumber' },
'imagenumber2' => { 158 => 0x62 },
- 'imageoptimization' => { 191 => 0xa9 },
+ 'imageoptimization' => { 192 => 0xa9 },
'imageorientation' => { 112 => 0x83 },
- 'imageprocessing' => { 191 => 0x1a },
- 'imageprocessingversion' => { 251 => 0x0 },
- 'imagequality' => { 134 => 'ImageQuality', 204 => '723.2', 205 => '732.2', 213 => '708.1', 267 => 0x1 },
- 'imagequality2' => { 247 => 0x603 },
- 'imageref' => { 402 => 'ImageRef' },
- 'imagereview' => { 236 => '0.4', 242 => '0.4' },
- 'imagereviewmonitorofftime' => { 235 => '21.1', 244 => '21.1' },
- 'imagereviewtime' => { 234 => '25.1', 236 => '2.1', 237 => '19.1', 238 => '20.1', 239 => '20.1', 240 => '9.2', 241 => '20.1', 245 => '21.2' },
+ 'imageprocessing' => { 192 => 0x1a },
+ 'imageprocessingversion' => { 252 => 0x0 },
+ 'imagequality' => { 134 => 'ImageQuality', 205 => '723.2', 206 => '732.2', 214 => '708.1', 268 => 0x1 },
+ 'imagequality2' => { 248 => 0x603 },
+ 'imageref' => { 403 => 'ImageRef' },
+ 'imagereview' => { 237 => '0.4', 243 => '0.4' },
+ 'imagereviewmonitorofftime' => { 236 => '21.1', 245 => '21.1' },
+ 'imagereviewtime' => { 235 => '25.1', 237 => '2.1', 238 => '19.1', 239 => '20.1', 240 => '20.1', 241 => '9.2', 242 => '20.1', 246 => '21.2' },
'imagesize' => { 140 => 'ImageSize' },
- 'imagesizerestriction' => { 412 => 'imageSizeRestriction' },
+ 'imagesizerestriction' => { 413 => 'imageSizeRestriction' },
'imagesourcedata' => { 104 => 0x935c },
- 'imagestabilization' => { 30 => 0x22, 100 => 0x3020, 109 => 0x1422, 134 => 'ImageStabilization', 157 => 0xbd, 158 => 0x71, 159 => 0x57, 160 => 0x0, 161 => [0x18,0x107,0x113], 162 => 0x49c2, 191 => 0xac, 247 => 0x604, 250 => 0x1600, 267 => 0x1a, 344 => 0x12, 345 => 0x11, 351 => 0xb026 },
- 'imagestabilization2' => { 343 => 0xa },
- 'imagestabilizationsetting' => { 162 => 0x14, 339 => 0x3d, 340 => 0x3d, 350 => 0x14 },
- 'imagestyle' => { 339 => 0x2d, 340 => 0x27 },
- 'imagesupplier' => { 407 => 'ImageSupplier' },
- 'imagesupplierid' => { 407 => [\'ImageSupplier','ImageSupplierImageSupplierID'] },
- 'imagesupplierimageid' => { 407 => 'ImageSupplierImageID' },
- 'imagesuppliername' => { 407 => [\'ImageSupplier','ImageSupplierImageSupplierName'] },
+ 'imagestabilization' => { 30 => 0x22, 100 => 0x3020, 109 => 0x1422, 134 => 'ImageStabilization', 157 => 0xbd, 158 => 0x71, 159 => 0x57, 160 => 0x0, 161 => [0x18,0x107,0x113], 162 => 0x49c2, 192 => 0xac, 248 => 0x604, 251 => 0x1600, 268 => 0x1a, 345 => 0x12, 346 => 0x11, 352 => 0xb026 },
+ 'imagestabilization2' => { 344 => 0xa },
+ 'imagestabilizationsetting' => { 162 => 0x14, 340 => 0x3d, 341 => 0x3d, 351 => 0x14 },
+ 'imagestyle' => { 340 => 0x2d, 341 => 0x27 },
+ 'imagesupplier' => { 408 => 'ImageSupplier' },
+ 'imagesupplierid' => { 408 => [\'ImageSupplier','ImageSupplierImageSupplierID'] },
+ 'imagesupplierimageid' => { 408 => 'ImageSupplierImageID' },
+ 'imagesuppliername' => { 408 => [\'ImageSupplier','ImageSupplierImageSupplierName'] },
'imagetemperaturemax' => { 106 => 0x1 },
'imagetemperaturemin' => { 106 => 0x2 },
- 'imagetone' => { 300 => 0x4f },
- 'imagetype' => { 112 => 0x82, 407 => 'ImageType' },
- 'imageuniqueid' => { 54 => 0x28, 104 => 0xa420, 398 => 'ImageUniqueID' },
- 'imagewidth' => { 104 => 0x100, 163 => 0xe, 415 => 'ImageWidth' },
- 'incrementaltemperature' => { 394 => 'IncrementalTemperature' },
- 'incrementaltint' => { 394 => 'IncrementalTint' },
- 'industry' => { 409 => 'industry', 410 => 'industry' },
+ 'imagetone' => { 301 => 0x4f },
+ 'imagetype' => { 112 => 0x82, 408 => 'ImageType' },
+ 'imageuniqueid' => { 54 => 0x28, 104 => 0xa420, 399 => 'ImageUniqueID' },
+ 'imagewidth' => { 104 => 0x100, 163 => 0xe, 416 => 'ImageWidth' },
+ 'incrementaltemperature' => { 395 => 'IncrementalTemperature' },
+ 'incrementaltint' => { 395 => 'IncrementalTint' },
+ 'industry' => { 410 => 'industry', 411 => 'industry' },
'infobuttonwhenshooting' => { 72 => 0x409 },
- 'infraredilluminator' => { 319 => 0x28 },
- 'ingredientexclusion' => { 411 => 'ingredientExclusion' },
- 'ingredients' => { 420 => 'Ingredients' },
- 'ingredientsalternatepaths' => { 420 => [\'Ingredients','IngredientsAlternatePaths'] },
- 'ingredientsdocumentid' => { 420 => [\'Ingredients','IngredientsDocumentID'] },
- 'ingredientsfilepath' => { 420 => [\'Ingredients','IngredientsFilePath'] },
- 'ingredientsfrompart' => { 420 => [\'Ingredients','IngredientsFromPart'] },
- 'ingredientsinstanceid' => { 420 => [\'Ingredients','IngredientsInstanceID'] },
- 'ingredientslastmodifydate' => { 420 => [\'Ingredients','IngredientsLastModifyDate'] },
- 'ingredientsmanager' => { 420 => [\'Ingredients','IngredientsManager'] },
- 'ingredientsmanagervariant' => { 420 => [\'Ingredients','IngredientsManagerVariant'] },
- 'ingredientsmanageto' => { 420 => [\'Ingredients','IngredientsManageTo'] },
- 'ingredientsmanageui' => { 420 => [\'Ingredients','IngredientsManageUI'] },
- 'ingredientsmaskmarkers' => { 420 => [\'Ingredients','IngredientsMaskMarkers'] },
- 'ingredientsoriginaldocumentid' => { 420 => [\'Ingredients','IngredientsOriginalDocumentID'] },
- 'ingredientspartmapping' => { 420 => [\'Ingredients','IngredientsPartMapping'] },
- 'ingredientsrenditionclass' => { 420 => [\'Ingredients','IngredientsRenditionClass'] },
- 'ingredientsrenditionparams' => { 420 => [\'Ingredients','IngredientsRenditionParams'] },
- 'ingredientstopart' => { 420 => [\'Ingredients','IngredientsToPart'] },
- 'ingredientsversionid' => { 420 => [\'Ingredients','IngredientsVersionID'] },
- 'initialhorizontalfovdegrees' => { 383 => 'InitialHorizontalFOVDegrees' },
- 'initialviewheadingdegrees' => { 383 => 'InitialViewHeadingDegrees' },
- 'initialviewpitchdegrees' => { 383 => 'InitialViewPitchDegrees' },
- 'initialviewrolldegrees' => { 383 => 'InitialViewRollDegrees' },
- 'initialzoomliveview' => { 234 => '4.4' },
- 'initialzoomsetting' => { 234 => '9.3', 240 => '27.3' },
+ 'infraredilluminator' => { 320 => 0x28 },
+ 'ingredientexclusion' => { 412 => 'ingredientExclusion' },
+ 'ingredients' => { 421 => 'Ingredients' },
+ 'ingredientsalternatepaths' => { 421 => [\'Ingredients','IngredientsAlternatePaths'] },
+ 'ingredientsdocumentid' => { 421 => [\'Ingredients','IngredientsDocumentID'] },
+ 'ingredientsfilepath' => { 421 => [\'Ingredients','IngredientsFilePath'] },
+ 'ingredientsfrompart' => { 421 => [\'Ingredients','IngredientsFromPart'] },
+ 'ingredientsinstanceid' => { 421 => [\'Ingredients','IngredientsInstanceID'] },
+ 'ingredientslastmodifydate' => { 421 => [\'Ingredients','IngredientsLastModifyDate'] },
+ 'ingredientsmanager' => { 421 => [\'Ingredients','IngredientsManager'] },
+ 'ingredientsmanagervariant' => { 421 => [\'Ingredients','IngredientsManagerVariant'] },
+ 'ingredientsmanageto' => { 421 => [\'Ingredients','IngredientsManageTo'] },
+ 'ingredientsmanageui' => { 421 => [\'Ingredients','IngredientsManageUI'] },
+ 'ingredientsmaskmarkers' => { 421 => [\'Ingredients','IngredientsMaskMarkers'] },
+ 'ingredientsoriginaldocumentid' => { 421 => [\'Ingredients','IngredientsOriginalDocumentID'] },
+ 'ingredientspartmapping' => { 421 => [\'Ingredients','IngredientsPartMapping'] },
+ 'ingredientsrenditionclass' => { 421 => [\'Ingredients','IngredientsRenditionClass'] },
+ 'ingredientsrenditionparams' => { 421 => [\'Ingredients','IngredientsRenditionParams'] },
+ 'ingredientstopart' => { 421 => [\'Ingredients','IngredientsToPart'] },
+ 'ingredientsversionid' => { 421 => [\'Ingredients','IngredientsVersionID'] },
+ 'initialhorizontalfovdegrees' => { 384 => 'InitialHorizontalFOVDegrees' },
+ 'initialviewheadingdegrees' => { 384 => 'InitialViewHeadingDegrees' },
+ 'initialviewpitchdegrees' => { 384 => 'InitialViewPitchDegrees' },
+ 'initialviewrolldegrees' => { 384 => 'InitialViewRollDegrees' },
+ 'initialzoomliveview' => { 235 => '4.4' },
+ 'initialzoomsetting' => { 235 => '9.3', 241 => '27.3' },
'inkset' => { 104 => 0x14c },
'inputprofile' => { 118 => 0x1389 },
- 'instanceid' => { 420 => 'InstanceID' },
+ 'instanceid' => { 421 => 'InstanceID' },
'instantplaybacksetup' => { 159 => 0x3e },
'instantplaybacktime' => { 159 => 0x3d },
- 'instructions' => { 406 => 'Instructions' },
- 'instrument' => { 419 => 'instrument' },
- 'intellectualgenre' => { 403 => 'IntellectualGenre' },
- 'intelligentauto' => { 351 => 0xb052 },
+ 'instructions' => { 407 => 'Instructions' },
+ 'instrument' => { 420 => 'instrument' },
+ 'intellectualgenre' => { 404 => 'IntellectualGenre' },
+ 'intelligentauto' => { 352 => 0xb052 },
'intelligentcontrast' => { 43 => 0x4 },
- 'intelligentd-range' => { 267 => 0x79 },
- 'intelligentexposure' => { 267 => 0x5d },
- 'intelligentresolution' => { 267 => 0x70 },
+ 'intelligentd-range' => { 268 => 0x79 },
+ 'intelligentexposure' => { 268 => 0x5d },
+ 'intelligentresolution' => { 268 => 0x70 },
'interchangecolorspace' => { 114 => 0x40 },
- 'internalflash' => { 156 => 0x2b, 234 => '23.1', 236 => '8.1', 237 => '22.1', 239 => '23.1', 242 => '8.1', 245 => '24.1', 250 => 0x1208 },
- 'internalflashae1' => { 252 => 0x1021 },
- 'internalflashae1_0' => { 252 => 0x101d },
- 'internalflashae2' => { 252 => 0x1022 },
- 'internalflashae2_0' => { 252 => 0x101e },
- 'internalflashmode' => { 288 => 0x1 },
- 'internalflashstrength' => { 288 => 0x3 },
- 'internalflashtable' => { 252 => 0x1024 },
- 'internallensserialnumber' => { 329 => 0xa005 },
- 'internalndfilter' => { 267 => 0x9d },
- 'internalserialnumber' => { 54 => 0x96, 65 => 0x9, 109 => 0x10, 162 => 0x49dc, 246 => 0x18, 248 => 0x102, 267 => 0x25, 280 => 0x4, 323 => 0x5, 366 => [0x7c,0x88,0xf0] },
- 'interopindex' => { 104 => 0x1, 399 => 'InteroperabilityIndex' },
+ 'internalflash' => { 156 => 0x2b, 235 => '23.1', 237 => '8.1', 238 => '22.1', 240 => '23.1', 243 => '8.1', 246 => '24.1', 251 => 0x1208 },
+ 'internalflashae1' => { 253 => 0x1021 },
+ 'internalflashae1_0' => { 253 => 0x101d },
+ 'internalflashae2' => { 253 => 0x1022 },
+ 'internalflashae2_0' => { 253 => 0x101e },
+ 'internalflashmode' => { 289 => 0x1 },
+ 'internalflashstrength' => { 289 => 0x3 },
+ 'internalflashtable' => { 253 => 0x1024 },
+ 'internallensserialnumber' => { 330 => 0xa005 },
+ 'internalndfilter' => { 268 => 0x9d },
+ 'internalserialnumber' => { 54 => 0x96, 65 => 0x9, 109 => 0x10, 162 => 0x49dc, 247 => 0x18, 249 => 0x102, 268 => 0x25, 281 => 0x4, 324 => 0x5, 367 => [0x7c,0x88,0xf0] },
+ 'interopindex' => { 104 => 0x1, 400 => 'InteroperabilityIndex' },
'interopversion' => { 104 => 0x2 },
'intervallength' => { 156 => 0x10 },
'intervalmode' => { 156 => 0x26 },
'intervalnumber' => { 156 => 0x11 },
- 'introtime' => { 419 => 'introTime' },
- 'introtimescale' => { 419 => [\'introTime','introTimeScale'] },
- 'introtimevalue' => { 419 => [\'introTime','introTimeValue'] },
+ 'introtime' => { 420 => 'introTime' },
+ 'introtimescale' => { 420 => [\'introTime','introTimeScale'] },
+ 'introtimevalue' => { 420 => [\'introTime','introTimeValue'] },
'iptc' => { 105 => 'IPTC' },
- 'iptc-naa' => { 104 => 0x83bb, 271 => 0x83bb },
+ 'iptc-naa' => { 104 => 0x83bb, 272 => 0x83bb },
'iptcbitspersample' => { 114 => 0x56 },
- 'iptcdigest' => { 312 => 0x425 },
+ 'iptcdigest' => { 313 => 0x425 },
'iptcimageheight' => { 114 => 0x1e },
'iptcimagerotation' => { 114 => 0x66 },
'iptcimagewidth' => { 114 => 0x14 },
- 'iptclastedited' => { 404 => 'IptcLastEdited' },
+ 'iptclastedited' => { 405 => 'IptcLastEdited' },
'iptcpicturenumber' => { 114 => 0xa },
'iptcpixelheight' => { 114 => 0x32 },
'iptcpixelwidth' => { 114 => 0x28 },
- 'isalternativeof' => { 409 => 'isAlternativeOf' },
- 'isbn' => { 409 => 'isbn' },
- 'iscorrectionof' => { 409 => 'isCorrectionOf' },
+ 'isalternativeof' => { 410 => 'isAlternativeOf' },
+ 'isbn' => { 410 => 'isbn' },
+ 'iscorrectionof' => { 410 => 'isCorrectionOf' },
'iscustompicturestyle' => { 96 => 0x3 },
- 'ismergedhdr' => { 390 => 'IsMergedHDR' },
- 'ismergedpanorama' => { 390 => 'IsMergedPanorama' },
- 'iso' => { 6 => 0x6, 8 => 0x6, 9 => 0x75, 10 => 0x6, 11 => 0x79, 12 => 0x6, 13 => 0x6, 14 => 0x6, 15 => 0x6, 16 => 0x6, 17 => 0x6, 18 => 0x6, 19 => 0x6, 20 => 0x6, 21 => 0x6, 22 => 0x6, 23 => 0x6, 24 => 0x6, 25 => 0x6, 26 => 0x6, 27 => 0x0, 28 => 0x1, 99 => 0x14, 100 => [0x3014,0x14], 104 => 0x8827, 117 => 0xfd06, 118 => 0x1784, 120 => 0x60, 122 => [0xfa2e,0xfa46], 123 => [0x27,0x28], 124 => 0xf105, 127 => 0x14, 129 => 0x4e, 132 => 0x34, 134 => 'ISO', 156 => 0x8, 162 => 0x49ba, 185 => 0x0, 191 => 0x2, 271 => 0x17, 300 => [0x8b,0x14], 307 => 0x14, 329 => 0xa014, 350 => 0x6f, 355 => [0x1f,0x21,0x25], 398 => 'ISOSpeedRatings' },
- 'iso2' => { 185 => 0x6, 199 => 0x265, 200 => 0x25c, 201 => 0x265, 202 => 0x221, 203 => 0x25d, 204 => 0x256, 205 => 0x25d, 208 => 0x2b5, 211 => 0x265, 216 => 0x2b5 },
- 'isoauto' => { 281 => '14.4' },
- 'isoautoparameters' => { 300 => 0x7a },
- 'isodisplay' => { 237 => '2.3', 238 => '3.3', 239 => '3.3', 241 => '3.3', 244 => '4.3', 245 => '4.3' },
- 'isoexpansion' => { 72 => 0x103, 73 => 0x7, 74 => 0x8, 77 => 0x8, 185 => 0x4 },
- 'isoexpansion2' => { 185 => 0xa },
- 'isofloor' => { 281 => 0x6 },
- 'isoselection' => { 191 => 0xf },
- 'isosensitivitystep' => { 241 => '6.2' },
- 'isosetting' => { 120 => 0x5e, 134 => 'ISOSetting', 156 => 0x24, 157 => 0x26, 158 => 0x1c, 159 => 0x13, 164 => 0x6, 191 => 0x13, 281 => '17.3', 322 => 0x27, 339 => 0x16, 340 => 0x14, 341 => 0x2, 350 => 0x6d },
- 'isospeed' => { 104 => 0x8833, 399 => 'ISOSpeed' },
+ 'ismergedhdr' => { 391 => 'IsMergedHDR' },
+ 'ismergedpanorama' => { 391 => 'IsMergedPanorama' },
+ 'iso' => { 6 => 0x6, 8 => 0x6, 9 => 0x75, 10 => 0x6, 11 => 0x79, 12 => 0x6, 13 => 0x6, 14 => 0x6, 15 => 0x6, 16 => 0x6, 17 => 0x6, 18 => 0x6, 19 => 0x6, 20 => 0x6, 21 => 0x6, 22 => 0x6, 23 => 0x6, 24 => 0x6, 25 => 0x6, 26 => 0x6, 27 => 0x0, 28 => 0x1, 99 => 0x14, 100 => [0x3014,0x14], 104 => 0x8827, 117 => 0xfd06, 118 => 0x1784, 120 => 0x60, 122 => [0xfa2e,0xfa46], 123 => [0x27,0x28], 124 => 0xf105, 127 => 0x14, 129 => 0x4e, 132 => 0x34, 134 => 'ISO', 156 => 0x8, 162 => 0x49ba, 186 => 0x0, 192 => 0x2, 272 => 0x17, 301 => [0x8b,0x14], 308 => 0x14, 330 => 0xa014, 351 => 0x6f, 356 => [0x1f,0x21,0x25], 399 => 'ISOSpeedRatings' },
+ 'iso2' => { 186 => 0x6, 200 => 0x265, 201 => 0x25c, 202 => 0x265, 203 => 0x221, 204 => 0x25d, 205 => 0x256, 206 => 0x25d, 209 => 0x2b5, 212 => 0x265, 217 => 0x2b5 },
+ 'isoauto' => { 282 => '14.4' },
+ 'isoautoparameters' => { 301 => 0x7a },
+ 'isodisplay' => { 238 => '2.3', 239 => '3.3', 240 => '3.3', 242 => '3.3', 245 => '4.3', 246 => '4.3' },
+ 'isoexpansion' => { 72 => 0x103, 73 => 0x7, 74 => 0x8, 77 => 0x8, 186 => 0x4 },
+ 'isoexpansion2' => { 186 => 0xa },
+ 'isofloor' => { 282 => 0x6 },
+ 'isoselection' => { 192 => 0xf },
+ 'isosensitivitystep' => { 242 => '6.2' },
+ 'isosetting' => { 120 => 0x5e, 134 => 'ISOSetting', 156 => 0x24, 157 => 0x26, 158 => 0x1c, 159 => 0x13, 164 => 0x6, 192 => 0x13, 282 => '17.3', 323 => 0x27, 340 => 0x16, 341 => 0x14, 342 => 0x2, 351 => 0x6d },
+ 'isospeed' => { 104 => 0x8833, 400 => 'ISOSpeed' },
'isospeedexpansion' => { 71 => 0x3 },
'isospeedincrements' => { 72 => 0x102 },
- 'isospeedlatitudeyyy' => { 104 => 0x8834, 399 => 'ISOSpeedLatitudeyyy' },
- 'isospeedlatitudezzz' => { 104 => 0x8835, 399 => 'ISOSpeedLatitudezzz' },
+ 'isospeedlatitudeyyy' => { 104 => 0x8834, 400 => 'ISOSpeedLatitudeyyy' },
+ 'isospeedlatitudezzz' => { 104 => 0x8835, 400 => 'ISOSpeedLatitudezzz' },
'isospeedrange' => { 72 => 0x103 },
- 'isostepsize' => { 234 => '6.1', 235 => '7.2', 240 => '4.1', 244 => '7.2' },
- 'isovalue' => { 252 => 0x1001 },
- 'issn' => { 409 => 'issn' },
- 'issueidentifier' => { 409 => 'issueIdentifier' },
- 'issuename' => { 409 => 'issueName' },
- 'issueteaser' => { 409 => 'issueTeaser' },
- 'issuetype' => { 409 => 'issueType' },
- 'istranslationof' => { 409 => 'isTranslationOf' },
+ 'isostepsize' => { 235 => '6.1', 236 => '7.2', 241 => '4.1', 245 => '7.2' },
+ 'isovalue' => { 253 => 0x1001 },
+ 'issn' => { 410 => 'issn' },
+ 'issueidentifier' => { 410 => 'issueIdentifier' },
+ 'issuename' => { 410 => 'issueName' },
+ 'issueteaser' => { 410 => 'issueTeaser' },
+ 'issuetype' => { 410 => 'issueType' },
+ 'istranslationof' => { 410 => 'isTranslationOf' },
'jobid' => { 112 => 0xb8 },
- 'jobname' => { 400 => 'JobName' },
- 'jobref' => { 418 => 'JobRef' },
- 'jobrefid' => { 418 => [\'JobRef','JobRefId'] },
- 'jobrefname' => { 418 => [\'JobRef','JobRefName'] },
- 'jobrefurl' => { 418 => [\'JobRef','JobRefUrl'] },
- 'jobstatus' => { 400 => 'JobStatus' },
- 'jpegquality' => { 9 => 0x66, 269 => 0x3034, 351 => 0xb047 },
- 'jpegsize' => { 269 => 0x303a },
- 'jpgfromraw' => { 85 => 0x2007, 101 => 'JpgFromRaw', 271 => 0x2e },
+ 'jobname' => { 401 => 'JobName' },
+ 'jobref' => { 419 => 'JobRef' },
+ 'jobrefid' => { 419 => [\'JobRef','JobRefId'] },
+ 'jobrefname' => { 419 => [\'JobRef','JobRefName'] },
+ 'jobrefurl' => { 419 => [\'JobRef','JobRefUrl'] },
+ 'jobstatus' => { 401 => 'JobStatus' },
+ 'jpegquality' => { 9 => 0x66, 270 => 0x3034, 352 => 0xb047 },
+ 'jpegsize' => { 270 => 0x303a },
+ 'jpgfromraw' => { 85 => 0x2007, 101 => 'JpgFromRaw', 272 => 0x2e },
'jpgfromrawlength' => { 104 => [0x117,0x202] },
'jpgfromrawstart' => { 104 => [0x111,0x201] },
- 'jpgrecordedpixels' => { 281 => '14.1' },
- 'jurisdiction' => { 391 => 'jurisdiction' },
- 'kelvinwb_01' => { 289 => 0x5 },
- 'kelvinwb_02' => { 289 => 0x9 },
- 'kelvinwb_03' => { 289 => 0xd },
- 'kelvinwb_04' => { 289 => 0x11 },
- 'kelvinwb_05' => { 289 => 0x15 },
- 'kelvinwb_06' => { 289 => 0x19 },
- 'kelvinwb_07' => { 289 => 0x1d },
- 'kelvinwb_08' => { 289 => 0x21 },
- 'kelvinwb_09' => { 289 => 0x25 },
- 'kelvinwb_10' => { 289 => 0x29 },
- 'kelvinwb_11' => { 289 => 0x2d },
- 'kelvinwb_12' => { 289 => 0x31 },
- 'kelvinwb_13' => { 289 => 0x35 },
- 'kelvinwb_14' => { 289 => 0x39 },
- 'kelvinwb_15' => { 289 => 0x3d },
- 'kelvinwb_16' => { 289 => 0x41 },
- 'kelvinwb_daylight' => { 289 => 0x1 },
- 'key' => { 419 => 'key' },
- 'keyword' => { 409 => 'keyword' },
+ 'jpgrecordedpixels' => { 282 => '14.1' },
+ 'jurisdiction' => { 392 => 'jurisdiction' },
+ 'kelvinwb_01' => { 290 => 0x5 },
+ 'kelvinwb_02' => { 290 => 0x9 },
+ 'kelvinwb_03' => { 290 => 0xd },
+ 'kelvinwb_04' => { 290 => 0x11 },
+ 'kelvinwb_05' => { 290 => 0x15 },
+ 'kelvinwb_06' => { 290 => 0x19 },
+ 'kelvinwb_07' => { 290 => 0x1d },
+ 'kelvinwb_08' => { 290 => 0x21 },
+ 'kelvinwb_09' => { 290 => 0x25 },
+ 'kelvinwb_10' => { 290 => 0x29 },
+ 'kelvinwb_11' => { 290 => 0x2d },
+ 'kelvinwb_12' => { 290 => 0x31 },
+ 'kelvinwb_13' => { 290 => 0x35 },
+ 'kelvinwb_14' => { 290 => 0x39 },
+ 'kelvinwb_15' => { 290 => 0x3d },
+ 'kelvinwb_16' => { 290 => 0x41 },
+ 'kelvinwb_daylight' => { 290 => 0x1 },
+ 'key' => { 420 => 'key' },
+ 'keyword' => { 410 => 'keyword' },
'keywordinfo' => { 149 => 'Keywords' },
- 'keywords' => { 112 => 0x19, 135 => 'Keywords', 256 => 'Keywords', 314 => 'Keywords', 388 => 'keywords', 405 => 'Keywords', 417 => 'Keywords' },
- 'killdate' => { 409 => 'killDate' },
- 'killdatea-platform' => { 409 => [\'killDate','killDateA-platform'] },
- 'killdatedate' => { 409 => [\'killDate','killDateDate'] },
+ 'keywords' => { 112 => 0x19, 135 => 'Keywords', 257 => 'Keywords', 315 => 'Keywords', 389 => 'keywords', 406 => 'Keywords', 418 => 'Keywords' },
+ 'killdate' => { 410 => 'killDate' },
+ 'killdatea-platform' => { 410 => [\'killDate','killDateA-platform'] },
+ 'killdatedate' => { 410 => [\'killDate','killDateDate'] },
'kodakimageheight' => { 117 => 0xf908, 120 => 0xe, 122 => [0xfa1e,0xfa52], 128 => 0x70 },
'kodakimagewidth' => { 117 => 0xf907, 120 => 0xc, 122 => [0xfa1d,0xfa51], 128 => 0x6c },
'kodakinfotype' => { 117 => 0xfa00 },
@@ -2594,14 +2594,14 @@ my %tagLookup = (
'kodaklookprofile' => { 118 => 0x138a },
'kodakmaker' => { 128 => 0x8 },
'kodakmodel' => { 120 => 0x0, 128 => 0x28 },
- 'label' => { 259 => 'Label', 417 => 'Label' },
- 'labelname1' => { 402 => [\'TagStructure','TagStructureLabelName'] },
- 'labelname2' => { 402 => [\'TagStructure','TagStructureSubLabelsLabelName'] },
- 'labelname3' => { 402 => [\'TagStructure','TagStructureSubLabelsSubLabelsLabelName'] },
- 'labelname4' => { 402 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsLabelName'] },
- 'labelname5' => { 402 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] },
- 'labelname6' => { 402 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] },
- 'landmark' => { 267 => 0x6f },
+ 'label' => { 260 => 'Label', 418 => 'Label' },
+ 'labelname1' => { 403 => [\'TagStructure','TagStructureLabelName'] },
+ 'labelname2' => { 403 => [\'TagStructure','TagStructureSubLabelsLabelName'] },
+ 'labelname3' => { 403 => [\'TagStructure','TagStructureSubLabelsSubLabelsLabelName'] },
+ 'labelname4' => { 403 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsLabelName'] },
+ 'labelname5' => { 403 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] },
+ 'labelname6' => { 403 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsLabelName'] },
+ 'landmark' => { 268 => 0x6f },
'landscapeoutputhighlightpoint' => { 96 => 0x26 },
'landscapeoutputshadowpoint' => { 96 => 0x27 },
'landscaperawcolortone' => { 96 => 0x1f },
@@ -2616,223 +2616,223 @@ my %tagLookup = (
'landscapeunsharpmaskfineness' => { 96 => 0xa0 },
'landscapeunsharpmaskstrength' => { 96 => 0x9e },
'landscapeunsharpmaskthreshold' => { 96 => 0xa2 },
- 'language' => { 395 => 'language' },
+ 'language' => { 396 => 'language' },
'languageidentifier' => { 112 => 0x87 },
- 'largestvalidinteriorrectheight' => { 383 => 'LargestValidInteriorRectHeight' },
- 'largestvalidinteriorrectleft' => { 383 => 'LargestValidInteriorRectLeft' },
- 'largestvalidinteriorrecttop' => { 383 => 'LargestValidInteriorRectTop' },
- 'largestvalidinteriorrectwidth' => { 383 => 'LargestValidInteriorRectWidth' },
+ 'largestvalidinteriorrectheight' => { 384 => 'LargestValidInteriorRectHeight' },
+ 'largestvalidinteriorrectleft' => { 384 => 'LargestValidInteriorRectLeft' },
+ 'largestvalidinteriorrecttop' => { 384 => 'LargestValidInteriorRectTop' },
+ 'largestvalidinteriorrectwidth' => { 384 => 'LargestValidInteriorRectWidth' },
'lastfilenumber' => { 156 => 0x1b },
'lastkeywordiptc' => { 154 => 'LastKeywordIPTC' },
'lastkeywordxmp' => { 154 => 'LastKeywordXMP' },
- 'lastphotodate' => { 383 => 'LastPhotoDate' },
- 'lasturl' => { 420 => 'LastURL' },
- 'lateralchromaticaberration' => { 351 => 0x2012 },
- 'lateralchromaticaberrationcorrectionalreadyapplied' => { 390 => 'LateralChromaticAberrationCorrectionAlreadyApplied' },
+ 'lastphotodate' => { 384 => 'LastPhotoDate' },
+ 'lasturl' => { 421 => 'LastURL' },
+ 'lateralchromaticaberration' => { 352 => 0x2012 },
+ 'lateralchromaticaberrationcorrectionalreadyapplied' => { 391 => 'LateralChromaticAberrationCorrectionAlreadyApplied' },
'latestageorhigheststage' => { 103 => [\'GeologicalContext','GeologicalContextLatestAgeOrHighestStage'] },
'latesteonorhighesteonothem' => { 103 => [\'GeologicalContext','GeologicalContextLatestEonOrHighestEonothem'] },
'latestepochorhighestseries' => { 103 => [\'GeologicalContext','GeologicalContextLatestEpochOrHighestSeries'] },
'latesteraorhighesterathem' => { 103 => [\'GeologicalContext','GeologicalContextLatestEraOrHighestErathem'] },
'latestperiodorhighestsystem' => { 103 => [\'GeologicalContext','GeologicalContextLatestPeriodOrHighestSystem'] },
- 'lc1' => { 291 => 0x2 },
- 'lc10' => { 291 => 0xb },
- 'lc11' => { 291 => 0xc },
- 'lc12' => { 291 => 0xd },
- 'lc14' => { 291 => 0xf },
- 'lc15' => { 291 => 0x10 },
- 'lc3' => { 291 => 0x4 },
- 'lc4' => { 291 => 0x5 },
- 'lc5' => { 291 => 0x6 },
- 'lc6' => { 291 => 0x7 },
- 'lc7' => { 291 => 0x8 },
- 'lc8' => { 291 => 0x9 },
+ 'lc1' => { 292 => 0x2 },
+ 'lc10' => { 292 => 0xb },
+ 'lc11' => { 292 => 0xc },
+ 'lc12' => { 292 => 0xd },
+ 'lc14' => { 292 => 0xf },
+ 'lc15' => { 292 => 0x10 },
+ 'lc3' => { 292 => 0x4 },
+ 'lc4' => { 292 => 0x5 },
+ 'lc5' => { 292 => 0x6 },
+ 'lc6' => { 292 => 0x7 },
+ 'lc7' => { 292 => 0x8 },
+ 'lc8' => { 292 => 0x9 },
'lcddisplayatpoweron' => { 72 => 0x811, 76 => 0xa },
'lcddisplayreturntoshoot' => { 77 => 0x12 },
- 'lcdillumination' => { 234 => '17.5', 235 => '5.2', 240 => '10.3', 241 => '4.2', 244 => '5.2', 245 => '5.4' },
+ 'lcdillumination' => { 235 => '17.5', 236 => '5.2', 241 => '10.3', 242 => '4.2', 245 => '5.2', 246 => '5.4' },
'lcdilluminationduringbulb' => { 72 => 0x408 },
'lcdpanels' => { 71 => 0x8 },
- 'lcheditor' => { 227 => 0x8ae85e },
- 'legacyiptcdigest' => { 406 => 'LegacyIPTCDigest' },
- 'legalcode' => { 391 => 'legalcode' },
- 'lens' => { 104 => 0xfdea, 191 => 0x84, 390 => 'Lens' },
+ 'lcheditor' => { 228 => 0x8ae85e },
+ 'legacyiptcdigest' => { 407 => 'LegacyIPTCDigest' },
+ 'legalcode' => { 392 => 'legalcode' },
+ 'lens' => { 104 => 0xfdea, 192 => 0x84, 391 => 'Lens' },
'lensafstopbutton' => { 70 => 0x11, 71 => 0x13, 72 => 0x506, 73 => 0x10, 74 => 0x12, 77 => 0x13, 78 => 0x9 },
- 'lensaperturerange' => { 332 => [0x30,0x48] },
- 'lensdistortionparams' => { 252 => 0x206 },
+ 'lensaperturerange' => { 333 => [0x30,0x48] },
+ 'lensdistortionparams' => { 253 => 0x206 },
'lensdrivenoaf' => { 72 => 0x505 },
- 'lense-mountversion' => { 341 => 0x3f0, 378 => 0xd },
- 'lensfirmware' => { 324 => 0x20, 329 => 0xa004 },
- 'lensfirmwareversion' => { 248 => 0x204, 267 => 0x60, 341 => 0x3f4, 378 => 0x15 },
- 'lensfocallength' => { 90 => 0xf0512, 291 => 0x9 },
- 'lensfocalrange' => { 332 => [0xa,0x2a] },
- 'lensfocusfunctionbuttons' => { 235 => '55.1', 244 => '52.1' },
- 'lensformat' => { 362 => 0x1891, 364 => 0x18bd, 365 => 0x18ed, 366 => 0x106, 374 => 0x603, 375 => 0x5d },
- 'lensfstops' => { 186 => 0x7, 187 => 0xc, 188 => 0xd, 191 => 0x8b, 291 => '0.3' },
- 'lensid' => { 390 => 'LensID' },
- 'lensidnumber' => { 186 => 0x6, 187 => 0xb, 188 => 0xc },
- 'lensinfo' => { 104 => 0xa432, 297 => 0x2a, 390 => 'LensInfo', 399 => 'LensSpecification' },
- 'lenskind' => { 291 => 0x1 },
- 'lensmake' => { 104 => 0xa433, 141 => 'Make', 399 => 'LensMake' },
- 'lensmanualdistortionamount' => { 394 => 'LensManualDistortionAmount' },
+ 'lense-mountversion' => { 342 => 0x3f0, 379 => 0xd },
+ 'lensfirmware' => { 325 => 0x20, 330 => 0xa004 },
+ 'lensfirmwareversion' => { 249 => 0x204, 268 => 0x60, 342 => 0x3f4, 379 => 0x15 },
+ 'lensfocallength' => { 90 => 0xf0512, 292 => 0x9 },
+ 'lensfocalrange' => { 333 => [0xa,0x2a] },
+ 'lensfocusfunctionbuttons' => { 236 => '55.1', 245 => '52.1' },
+ 'lensformat' => { 363 => 0x1891, 365 => 0x18bd, 366 => 0x18ed, 367 => 0x106, 375 => 0x603, 376 => 0x5d },
+ 'lensfstops' => { 187 => 0x7, 188 => 0xc, 189 => 0xd, 192 => 0x8b, 292 => '0.3' },
+ 'lensid' => { 391 => 'LensID' },
+ 'lensidnumber' => { 187 => 0x6, 188 => 0xb, 189 => 0xc },
+ 'lensinfo' => { 104 => 0xa432, 298 => 0x2a, 391 => 'LensInfo', 400 => 'LensSpecification' },
+ 'lenskind' => { 292 => 0x1 },
+ 'lensmake' => { 104 => 0xa433, 141 => 'Make', 400 => 'LensMake' },
+ 'lensmanualdistortionamount' => { 395 => 'LensManualDistortionAmount' },
'lensmanufacturer' => { 154 => 'LensManufacturer' },
- 'lensmaxaperturerange' => { 332 => 0x2b },
- 'lensmodel' => { 6 => 0x937, 13 => 0x92b, 14 => 0x933, 54 => 0x95, 104 => 0xa434, 141 => 'Model', 154 => 'LensModel', 189 => 0x18a, 248 => 0x203, 265 => 0x303, 297 => 0xc, 399 => 'LensModel' },
- 'lensmount' => { 341 => 0x99, 362 => 0x1892, 364 => 0x18be, 365 => 0x18ee, 366 => 0x105, 374 => 0x604, 375 => 0x5e },
- 'lensmount2' => { 378 => 0x8 },
- 'lensparameters' => { 359 => 0x1a23, 362 => 0x1870, 364 => 0x189c, 365 => 0x18cc, 374 => 0x6ca, 375 => 0x64 },
- 'lensprofilechromaticaberrationscale' => { 394 => 'LensProfileChromaticAberrationScale' },
- 'lensprofiledigest' => { 394 => 'LensProfileDigest' },
- 'lensprofiledistortionscale' => { 394 => 'LensProfileDistortionScale' },
- 'lensprofileenable' => { 394 => 'LensProfileEnable' },
- 'lensprofilefilename' => { 394 => 'LensProfileFilename' },
- 'lensprofilematchkeycameramodelname' => { 394 => 'LensProfileMatchKeyCameraModelName' },
- 'lensprofilematchkeyexifmake' => { 394 => 'LensProfileMatchKeyExifMake' },
- 'lensprofilematchkeyexifmodel' => { 394 => 'LensProfileMatchKeyExifModel' },
- 'lensprofilematchkeyisraw' => { 394 => 'LensProfileMatchKeyIsRaw' },
- 'lensprofilematchkeylensid' => { 394 => 'LensProfileMatchKeyLensID' },
- 'lensprofilematchkeylensinfo' => { 394 => 'LensProfileMatchKeyLensInfo' },
- 'lensprofilematchkeylensname' => { 394 => 'LensProfileMatchKeyLensName' },
- 'lensprofilematchkeysensorformatfactor' => { 394 => 'LensProfileMatchKeySensorFormatFactor' },
- 'lensprofilename' => { 394 => 'LensProfileName' },
- 'lensprofilesetup' => { 394 => 'LensProfileSetup' },
- 'lensprofilevignettingscale' => { 394 => 'LensProfileVignettingScale' },
- 'lensproperties' => { 248 => 0x20b },
- 'lensserialnumber' => { 52 => 0x0, 104 => 0xa435, 141 => 'SerialNumber', 248 => 0x202, 267 => 0x52, 324 => 0x30, 390 => 'LensSerialNumber', 399 => 'LensSerialNumber' },
+ 'lensmaxaperturerange' => { 333 => 0x2b },
+ 'lensmodel' => { 6 => 0x937, 13 => 0x92b, 14 => 0x933, 54 => 0x95, 104 => 0xa434, 141 => 'Model', 154 => 'LensModel', 190 => 0x18a, 249 => 0x203, 266 => 0x303, 298 => 0xc, 400 => 'LensModel' },
+ 'lensmount' => { 342 => 0x99, 363 => 0x1892, 365 => 0x18be, 366 => 0x18ee, 367 => 0x105, 375 => 0x604, 376 => 0x5e },
+ 'lensmount2' => { 379 => 0x8 },
+ 'lensparameters' => { 360 => 0x1a23, 363 => 0x1870, 365 => 0x189c, 366 => 0x18cc, 375 => 0x6ca, 376 => 0x64 },
+ 'lensprofilechromaticaberrationscale' => { 395 => 'LensProfileChromaticAberrationScale' },
+ 'lensprofiledigest' => { 395 => 'LensProfileDigest' },
+ 'lensprofiledistortionscale' => { 395 => 'LensProfileDistortionScale' },
+ 'lensprofileenable' => { 395 => 'LensProfileEnable' },
+ 'lensprofilefilename' => { 395 => 'LensProfileFilename' },
+ 'lensprofilematchkeycameramodelname' => { 395 => 'LensProfileMatchKeyCameraModelName' },
+ 'lensprofilematchkeyexifmake' => { 395 => 'LensProfileMatchKeyExifMake' },
+ 'lensprofilematchkeyexifmodel' => { 395 => 'LensProfileMatchKeyExifModel' },
+ 'lensprofilematchkeyisraw' => { 395 => 'LensProfileMatchKeyIsRaw' },
+ 'lensprofilematchkeylensid' => { 395 => 'LensProfileMatchKeyLensID' },
+ 'lensprofilematchkeylensinfo' => { 395 => 'LensProfileMatchKeyLensInfo' },
+ 'lensprofilematchkeylensname' => { 395 => 'LensProfileMatchKeyLensName' },
+ 'lensprofilematchkeysensorformatfactor' => { 395 => 'LensProfileMatchKeySensorFormatFactor' },
+ 'lensprofilename' => { 395 => 'LensProfileName' },
+ 'lensprofilesetup' => { 395 => 'LensProfileSetup' },
+ 'lensprofilevignettingscale' => { 395 => 'LensProfileVignettingScale' },
+ 'lensproperties' => { 249 => 0x20b },
+ 'lensserialnumber' => { 52 => 0x0, 104 => 0xa435, 141 => 'SerialNumber', 249 => 0x202, 268 => 0x52, 325 => 0x30, 391 => 'LensSerialNumber', 400 => 'LensSerialNumber' },
'lensshutterlock' => { 159 => 0x4a },
- 'lensspec' => { 336 => 0x0, 337 => 0x0, 338 => 0x0, 351 => 0xb02a },
- 'lensspecfeatures' => { 366 => [0x115,0x116] },
- 'lenstemperature' => { 252 => 0x1008 },
- 'lenstype' => { 6 => 0xe2, 7 => 0xd, 8 => 0x1a7, 9 => 0xc, 10 => 0x111, 11 => 0xc, 12 => 0x14f, 13 => 0xd6, 14 => 0xde, 15 => 0xf6, 16 => 0xea, 17 => 0xff, 18 => [0xc,0x97], 19 => 0xe6, 20 => 0x153, 21 => 0xea, 22 => 0xe8, 23 => 0x127, 24 => 0x161, 25 => 0x166, 26 => 0x112, 30 => 0x16, 161 => 0x10c, 162 => 0x49bd, 191 => 0x83, 248 => 0x201, 260 => 0x16, 263 => 0x310, 266 => 0x303, 267 => 0x51, 269 => 0x3405, 292 => 0x0, 293 => 0x0, 294 => 0x1, 295 => 0x1, 296 => 0x1, 298 => 0x0, 329 => 0xa003, 332 => 0x27, 351 => 0xb027, 362 => 0x1896, 364 => 0x18c2, 365 => 0x18f2, 366 => 0x109, 374 => 0x608, 375 => 0x62 },
- 'lenstype2' => { 341 => 0x3f7, 362 => 0x1893, 364 => 0x18bf, 365 => 0x18ef, 366 => 0x107, 374 => 0x605, 375 => 0x60 },
- 'lenstype3' => { 378 => 0x9 },
- 'lenszoomposition' => { 372 => 0x19, 373 => 0x1e, 375 => [0x342,0x35a] },
- 'levelindicator' => { 274 => 0x15 },
- 'levelorientation' => { 299 => 0x0 },
- 'license' => { 391 => 'license' },
- 'licensee' => { 407 => 'Licensee' },
- 'licenseeid' => { 407 => [\'Licensee','LicenseeLicenseeID'] },
- 'licenseeimageid' => { 407 => 'LicenseeImageID' },
- 'licenseeimagenotes' => { 407 => 'LicenseeImageNotes' },
- 'licenseename' => { 407 => [\'Licensee','LicenseeLicenseeName'] },
- 'licenseenddate' => { 407 => 'LicenseEndDate' },
- 'licenseeprojectreference' => { 407 => 'LicenseeProjectReference' },
- 'licenseetransactionid' => { 407 => 'LicenseeTransactionID' },
- 'licenseid' => { 407 => 'LicenseID' },
- 'licensestartdate' => { 407 => 'LicenseStartDate' },
- 'licensetransactiondate' => { 407 => 'LicenseTransactionDate' },
- 'licensetype' => { 396 => 'licensetype' },
- 'licensor' => { 407 => 'Licensor' },
- 'licensorcity' => { 407 => [\'Licensor','LicensorLicensorCity'] },
- 'licensorcountry' => { 407 => [\'Licensor','LicensorLicensorCountry'] },
- 'licensoremail' => { 407 => [\'Licensor','LicensorLicensorEmail'] },
- 'licensorextendedaddress' => { 407 => [\'Licensor','LicensorLicensorExtendedAddress'] },
- 'licensorid' => { 407 => [\'Licensor','LicensorLicensorID'] },
- 'licensorimageid' => { 407 => 'LicensorImageID' },
- 'licensorname' => { 407 => [\'Licensor','LicensorLicensorName'] },
- 'licensornotes' => { 407 => 'LicensorNotes' },
- 'licensorpostalcode' => { 407 => [\'Licensor','LicensorLicensorPostalCode'] },
- 'licensorregion' => { 407 => [\'Licensor','LicensorLicensorRegion'] },
- 'licensorstreetaddress' => { 407 => [\'Licensor','LicensorLicensorStreetAddress'] },
- 'licensortelephone1' => { 407 => [\'Licensor','LicensorLicensorTelephone1'] },
- 'licensortelephone2' => { 407 => [\'Licensor','LicensorLicensorTelephone2'] },
- 'licensortelephonetype1' => { 407 => [\'Licensor','LicensorLicensorTelephoneType1'] },
- 'licensortelephonetype2' => { 407 => [\'Licensor','LicensorLicensorTelephoneType2'] },
- 'licensortransactionid' => { 407 => 'LicensorTransactionID' },
- 'licensorurl' => { 407 => [\'Licensor','LicensorLicensorURL'] },
- 'lightcondition' => { 252 => 0x1009 },
+ 'lensspec' => { 337 => 0x0, 338 => 0x0, 339 => 0x0, 352 => 0xb02a },
+ 'lensspecfeatures' => { 367 => [0x115,0x116] },
+ 'lenstemperature' => { 253 => 0x1008 },
+ 'lenstype' => { 6 => 0xe2, 7 => 0xd, 8 => 0x1a7, 9 => 0xc, 10 => 0x111, 11 => 0xc, 12 => 0x14f, 13 => 0xd6, 14 => 0xde, 15 => 0xf6, 16 => 0xea, 17 => 0xff, 18 => [0xc,0x97], 19 => 0xe6, 20 => 0x153, 21 => 0xea, 22 => 0xe8, 23 => 0x127, 24 => 0x161, 25 => 0x166, 26 => 0x112, 30 => 0x16, 161 => 0x10c, 162 => 0x49bd, 192 => 0x83, 249 => 0x201, 261 => 0x16, 264 => 0x310, 267 => 0x303, 268 => 0x51, 270 => 0x3405, 293 => 0x0, 294 => 0x0, 295 => 0x1, 296 => 0x1, 297 => 0x1, 299 => 0x0, 330 => 0xa003, 333 => 0x27, 352 => 0xb027, 363 => 0x1896, 365 => 0x18c2, 366 => 0x18f2, 367 => 0x109, 375 => 0x608, 376 => 0x62 },
+ 'lenstype2' => { 342 => 0x3f7, 363 => 0x1893, 365 => 0x18bf, 366 => 0x18ef, 367 => 0x107, 375 => 0x605, 376 => 0x60 },
+ 'lenstype3' => { 379 => 0x9 },
+ 'lenszoomposition' => { 373 => 0x19, 374 => 0x1e, 376 => [0x342,0x35a] },
+ 'levelindicator' => { 275 => 0x15 },
+ 'levelorientation' => { 300 => 0x0 },
+ 'license' => { 392 => 'license' },
+ 'licensee' => { 408 => 'Licensee' },
+ 'licenseeid' => { 408 => [\'Licensee','LicenseeLicenseeID'] },
+ 'licenseeimageid' => { 408 => 'LicenseeImageID' },
+ 'licenseeimagenotes' => { 408 => 'LicenseeImageNotes' },
+ 'licenseename' => { 408 => [\'Licensee','LicenseeLicenseeName'] },
+ 'licenseenddate' => { 408 => 'LicenseEndDate' },
+ 'licenseeprojectreference' => { 408 => 'LicenseeProjectReference' },
+ 'licenseetransactionid' => { 408 => 'LicenseeTransactionID' },
+ 'licenseid' => { 408 => 'LicenseID' },
+ 'licensestartdate' => { 408 => 'LicenseStartDate' },
+ 'licensetransactiondate' => { 408 => 'LicenseTransactionDate' },
+ 'licensetype' => { 397 => 'licensetype' },
+ 'licensor' => { 408 => 'Licensor' },
+ 'licensorcity' => { 408 => [\'Licensor','LicensorLicensorCity'] },
+ 'licensorcountry' => { 408 => [\'Licensor','LicensorLicensorCountry'] },
+ 'licensoremail' => { 408 => [\'Licensor','LicensorLicensorEmail'] },
+ 'licensorextendedaddress' => { 408 => [\'Licensor','LicensorLicensorExtendedAddress'] },
+ 'licensorid' => { 408 => [\'Licensor','LicensorLicensorID'] },
+ 'licensorimageid' => { 408 => 'LicensorImageID' },
+ 'licensorname' => { 408 => [\'Licensor','LicensorLicensorName'] },
+ 'licensornotes' => { 408 => 'LicensorNotes' },
+ 'licensorpostalcode' => { 408 => [\'Licensor','LicensorLicensorPostalCode'] },
+ 'licensorregion' => { 408 => [\'Licensor','LicensorLicensorRegion'] },
+ 'licensorstreetaddress' => { 408 => [\'Licensor','LicensorLicensorStreetAddress'] },
+ 'licensortelephone1' => { 408 => [\'Licensor','LicensorLicensorTelephone1'] },
+ 'licensortelephone2' => { 408 => [\'Licensor','LicensorLicensorTelephone2'] },
+ 'licensortelephonetype1' => { 408 => [\'Licensor','LicensorLicensorTelephoneType1'] },
+ 'licensortelephonetype2' => { 408 => [\'Licensor','LicensorLicensorTelephoneType2'] },
+ 'licensortransactionid' => { 408 => 'LicensorTransactionID' },
+ 'licensorurl' => { 408 => [\'Licensor','LicensorLicensorURL'] },
+ 'lightcondition' => { 253 => 0x1009 },
'lightingmode' => { 100 => 0x302a },
- 'lightreading' => { 300 => 0x15 },
- 'lightsource' => { 104 => 0x9208, 191 => 0x90, 255 => 0x1000, 398 => 'LightSource' },
- 'lightsourcespecial' => { 331 => 0x21d },
- 'lightswitch' => { 244 => '0.1', 245 => '0.1' },
- 'lightvaluecenter' => { 252 => 0x103d },
- 'lightvalueperiphery' => { 252 => 0x103e },
- 'limitafareamodeselection' => { 235 => '51.1', 244 => '49.1' },
- 'linearitylimitblue' => { 271 => 0x10 },
- 'linearitylimitgreen' => { 271 => 0xf },
- 'linearitylimitred' => { 271 => 0xe },
+ 'lightreading' => { 301 => 0x15 },
+ 'lightsource' => { 104 => 0x9208, 192 => 0x90, 256 => 0x1000, 399 => 'LightSource' },
+ 'lightsourcespecial' => { 332 => 0x21d },
+ 'lightswitch' => { 245 => '0.1', 246 => '0.1' },
+ 'lightvaluecenter' => { 253 => 0x103d },
+ 'lightvalueperiphery' => { 253 => 0x103e },
+ 'limitafareamodeselection' => { 236 => '51.1', 245 => '49.1' },
+ 'linearitylimitblue' => { 272 => 0x10 },
+ 'linearitylimitgreen' => { 272 => 0xf },
+ 'linearitylimitred' => { 272 => 0xe },
'linearityuppermargin' => { 37 => [0x2ba,0x2d1,0x2d5], 39 => 0x1e5, 40 => [0x1fe,0x2de], 41 => 0x310 },
'linearizationtable' => { 104 => 0xc618 },
'linearresponselimit' => { 104 => 0xc62e },
- 'link' => { 409 => 'link' },
- 'linkaetoafpoint' => { 281 => '14.2' },
- 'linkedencodedrightsexpr' => { 404 => [\'LinkedEncRightsExpr','LinkedEncRightsExprLinkedRightsExpr'] },
- 'linkedencodedrightsexprlangid' => { 404 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprLangId'] },
- 'linkedencodedrightsexprtype' => { 404 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprEncType'] },
- 'linkedencrightsexpr' => { 404 => 'LinkedEncRightsExpr' },
+ 'link' => { 410 => 'link' },
+ 'linkaetoafpoint' => { 282 => '14.2' },
+ 'linkedencodedrightsexpr' => { 405 => [\'LinkedEncRightsExpr','LinkedEncRightsExprLinkedRightsExpr'] },
+ 'linkedencodedrightsexprlangid' => { 405 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprLangId'] },
+ 'linkedencodedrightsexprtype' => { 405 => [\'LinkedEncRightsExpr','LinkedEncRightsExprRightsExprEncType'] },
+ 'linkedencrightsexpr' => { 405 => 'LinkedEncRightsExpr' },
'lithostratigraphicterms' => { 103 => [\'GeologicalContext','GeologicalContextLithostratigraphicTerms'] },
- 'liveviewaf' => { 237 => '32.1', 245 => '34.1' },
- 'liveviewafareamode' => { 241 => '34.1' },
- 'liveviewafmethod' => { 355 => 0x20 },
- 'liveviewafmode' => { 241 => '34.2' },
- 'liveviewafsetting' => { 341 => 0x36 },
- 'liveviewbuttonoptions' => { 235 => '50.2', 244 => '48.2' },
+ 'liveviewaf' => { 238 => '32.1', 246 => '34.1' },
+ 'liveviewafareamode' => { 242 => '34.1' },
+ 'liveviewafmethod' => { 356 => 0x20 },
+ 'liveviewafmode' => { 242 => '34.2' },
+ 'liveviewafsetting' => { 342 => 0x36 },
+ 'liveviewbuttonoptions' => { 236 => '50.2', 245 => '48.2' },
'liveviewexposuresimulation' => { 72 => 0x810 },
- 'liveviewfocusmode' => { 341 => [0x8b,0x28b] },
- 'liveviewmetering' => { 341 => [0x84,0x284] },
- 'liveviewmonitorofftime' => { 235 => '21.2', 238 => '20.2', 239 => '20.2', 241 => '20.2', 244 => '21.2' },
+ 'liveviewfocusmode' => { 342 => [0x8b,0x28b] },
+ 'liveviewmetering' => { 342 => [0x84,0x284] },
+ 'liveviewmonitorofftime' => { 236 => '21.2', 239 => '20.2', 240 => '20.2', 242 => '20.2', 245 => '21.2' },
'liveviewshooting' => { 48 => 0x13 },
'localcaption' => { 112 => 0x79 },
'localizedcameramodel' => { 104 => 0xc615 },
- 'locallocationname' => { 329 => 0x30 },
- 'location' => { 190 => 0x9, 267 => 0x67, 386 => 'Location', 403 => 'Location', 408 => 'location', 409 => 'location' },
- 'locationareacode' => { 392 => 'lac' },
- 'locationcreated' => { 404 => 'LocationCreated' },
- 'locationcreatedcity' => { 404 => [\'LocationCreated','LocationCreatedCity'] },
- 'locationcreatedcountrycode' => { 404 => [\'LocationCreated','LocationCreatedCountryCode'] },
- 'locationcreatedcountryname' => { 404 => [\'LocationCreated','LocationCreatedCountryName'] },
- 'locationcreatedlocationid' => { 404 => [\'LocationCreated','LocationCreatedLocationId'] },
- 'locationcreatedprovincestate' => { 404 => [\'LocationCreated','LocationCreatedProvinceState'] },
- 'locationcreatedsublocation' => { 404 => [\'LocationCreated','LocationCreatedSublocation'] },
- 'locationcreatedworldregion' => { 404 => [\'LocationCreated','LocationCreatedWorldRegion'] },
- 'locationinfoversion' => { 190 => 0x0 },
- 'locationname' => { 329 => 0x31 },
- 'locationshown' => { 404 => 'LocationShown' },
- 'locationshowncity' => { 404 => [\'LocationShown','LocationShownCity'] },
- 'locationshowncountrycode' => { 404 => [\'LocationShown','LocationShownCountryCode'] },
- 'locationshowncountryname' => { 404 => [\'LocationShown','LocationShownCountryName'] },
- 'locationshownlocationid' => { 404 => [\'LocationShown','LocationShownLocationId'] },
- 'locationshownprovincestate' => { 404 => [\'LocationShown','LocationShownProvinceState'] },
- 'locationshownsublocation' => { 404 => [\'LocationShown','LocationShownSublocation'] },
- 'locationshownworldregion' => { 404 => [\'LocationShown','LocationShownWorldRegion'] },
+ 'locallocationname' => { 330 => 0x30 },
+ 'location' => { 191 => 0x9, 268 => 0x67, 387 => 'Location', 404 => 'Location', 409 => 'location', 410 => 'location' },
+ 'locationareacode' => { 393 => 'lac' },
+ 'locationcreated' => { 405 => 'LocationCreated' },
+ 'locationcreatedcity' => { 405 => [\'LocationCreated','LocationCreatedCity'] },
+ 'locationcreatedcountrycode' => { 405 => [\'LocationCreated','LocationCreatedCountryCode'] },
+ 'locationcreatedcountryname' => { 405 => [\'LocationCreated','LocationCreatedCountryName'] },
+ 'locationcreatedlocationid' => { 405 => [\'LocationCreated','LocationCreatedLocationId'] },
+ 'locationcreatedprovincestate' => { 405 => [\'LocationCreated','LocationCreatedProvinceState'] },
+ 'locationcreatedsublocation' => { 405 => [\'LocationCreated','LocationCreatedSublocation'] },
+ 'locationcreatedworldregion' => { 405 => [\'LocationCreated','LocationCreatedWorldRegion'] },
+ 'locationinfoversion' => { 191 => 0x0 },
+ 'locationname' => { 330 => 0x31 },
+ 'locationshown' => { 405 => 'LocationShown' },
+ 'locationshowncity' => { 405 => [\'LocationShown','LocationShownCity'] },
+ 'locationshowncountrycode' => { 405 => [\'LocationShown','LocationShownCountryCode'] },
+ 'locationshowncountryname' => { 405 => [\'LocationShown','LocationShownCountryName'] },
+ 'locationshownlocationid' => { 405 => [\'LocationShown','LocationShownLocationId'] },
+ 'locationshownprovincestate' => { 405 => [\'LocationShown','LocationShownProvinceState'] },
+ 'locationshownsublocation' => { 405 => [\'LocationShown','LocationShownSublocation'] },
+ 'locationshownworldregion' => { 405 => [\'LocationShown','LocationShownWorldRegion'] },
'lockmicrophonebutton' => { 72 => 0x709 },
- 'logcomment' => { 419 => 'logComment' },
- 'longexposurenoisereduction' => { 53 => 0x4, 72 => 0x201, 73 => 0x1, 74 => 0x2, 75 => 0x1, 76 => 0x1, 77 => 0x2, 78 => 0x1, 267 => 0x49, 339 => 0x2b, 340 => 0x25, 341 => 0x25, 351 => 0x2008, 355 => 0x11, 375 => 0x44 },
+ 'logcomment' => { 420 => 'logComment' },
+ 'longexposurenoisereduction' => { 53 => 0x4, 72 => 0x201, 73 => 0x1, 74 => 0x2, 75 => 0x1, 76 => 0x1, 77 => 0x2, 78 => 0x1, 268 => 0x49, 340 => 0x2b, 341 => 0x25, 342 => 0x25, 352 => 0x2008, 356 => 0x11, 376 => 0x44 },
'longexposurenoisereduction2' => { 48 => 0x8 },
- 'loop' => { 419 => 'loop' },
+ 'loop' => { 420 => 'loop' },
'lowestbiostratigraphiczone' => { 103 => [\'GeologicalContext','GeologicalContextLowestBiostratigraphicZone'] },
- 'luminanceadjustmentaqua' => { 394 => 'LuminanceAdjustmentAqua' },
- 'luminanceadjustmentblue' => { 394 => 'LuminanceAdjustmentBlue' },
- 'luminanceadjustmentgreen' => { 394 => 'LuminanceAdjustmentGreen' },
- 'luminanceadjustmentmagenta' => { 394 => 'LuminanceAdjustmentMagenta' },
- 'luminanceadjustmentorange' => { 394 => 'LuminanceAdjustmentOrange' },
- 'luminanceadjustmentpurple' => { 394 => 'LuminanceAdjustmentPurple' },
- 'luminanceadjustmentred' => { 394 => 'LuminanceAdjustmentRed' },
- 'luminanceadjustmentyellow' => { 394 => 'LuminanceAdjustmentYellow' },
+ 'luminanceadjustmentaqua' => { 395 => 'LuminanceAdjustmentAqua' },
+ 'luminanceadjustmentblue' => { 395 => 'LuminanceAdjustmentBlue' },
+ 'luminanceadjustmentgreen' => { 395 => 'LuminanceAdjustmentGreen' },
+ 'luminanceadjustmentmagenta' => { 395 => 'LuminanceAdjustmentMagenta' },
+ 'luminanceadjustmentorange' => { 395 => 'LuminanceAdjustmentOrange' },
+ 'luminanceadjustmentpurple' => { 395 => 'LuminanceAdjustmentPurple' },
+ 'luminanceadjustmentred' => { 395 => 'LuminanceAdjustmentRed' },
+ 'luminanceadjustmentyellow' => { 395 => 'LuminanceAdjustmentYellow' },
'luminancecurvelimits' => { 95 => 0x150 },
'luminancecurvepoints' => { 95 => 0x126 },
- 'luminancenoisereduction' => { 90 => 0x20600, 96 => 0x5f, 332 => 0x1b },
- 'luminancenoisereductioncontrast' => { 394 => 'LuminanceNoiseReductionContrast' },
- 'luminancenoisereductiondetail' => { 394 => 'LuminanceNoiseReductionDetail' },
+ 'luminancenoisereduction' => { 90 => 0x20600, 96 => 0x5f, 333 => 0x1b },
+ 'luminancenoisereductioncontrast' => { 395 => 'LuminanceNoiseReductionContrast' },
+ 'luminancenoisereductiondetail' => { 395 => 'LuminanceNoiseReductionDetail' },
'luminancenr_tiff_jpeg' => { 96 => 0x6d },
- 'luminancesmoothing' => { 394 => 'LuminanceSmoothing' },
+ 'luminancesmoothing' => { 395 => 'LuminanceSmoothing' },
'lvshootingareadisplay' => { 72 => 0x40b },
- 'lyrics' => { 419 => 'lyrics' },
- 'm16cversion' => { 263 => 0x333 },
- 'macatom' => { 393 => 'macAtom' },
- 'macatomapplicationcode' => { 393 => [\'macAtom','macAtomApplicationCode'] },
- 'macatominvocationappleevent' => { 393 => [\'macAtom','macAtomInvocationAppleEvent'] },
- 'macatomposixprojectpath' => { 393 => [\'macAtom','macAtomPosixProjectPath'] },
- 'macro' => { 109 => 0x1020, 110 => 0x202, 252 => 0x202, 322 => 0x21, 331 => 0x202, 351 => 0xb040 },
- 'macroled' => { 250 => 0x120a },
+ 'lyrics' => { 420 => 'lyrics' },
+ 'm16cversion' => { 264 => 0x333 },
+ 'macatom' => { 394 => 'macAtom' },
+ 'macatomapplicationcode' => { 394 => [\'macAtom','macAtomApplicationCode'] },
+ 'macatominvocationappleevent' => { 394 => [\'macAtom','macAtomInvocationAppleEvent'] },
+ 'macatomposixprojectpath' => { 394 => [\'macAtom','macAtomPosixProjectPath'] },
+ 'macro' => { 109 => 0x1020, 110 => 0x202, 253 => 0x202, 323 => 0x21, 332 => 0x202, 352 => 0xb040 },
+ 'macroled' => { 251 => 0x120a },
'macromagnification' => { 6 => 0x1b, 10 => 0x1b, 13 => 0x1b, 14 => 0x1b, 18 => 0x1b, 19 => 0x1b, 48 => 0x10 },
- 'macromode' => { 30 => 0x1, 156 => 0xb, 247 => 0x300, 267 => 0x1c, 323 => 0x1009 },
+ 'macromode' => { 30 => 0x1, 156 => 0xb, 248 => 0x300, 268 => 0x1c, 324 => 0x1009 },
'magentahsl' => { 90 => 0x20917 },
- 'magicfilter' => { 247 => 0x52c },
+ 'magicfilter' => { 248 => 0x52c },
'magnifiedview' => { 74 => 0x11, 76 => 0x9 },
- 'maindialexposurecomp' => { 242 => '0.6' },
- 'mainingredient' => { 411 => 'mainIngredient' },
- 'make' => { 86 => 0x0, 104 => 0x10f, 134 => 'Make', 259 => 'Make', 271 => 0x10f, 408 => 'make', 415 => 'Make' },
- 'makernote' => { 398 => 'MakerNote' },
+ 'maindialexposurecomp' => { 243 => '0.6' },
+ 'mainingredient' => { 412 => 'mainIngredient' },
+ 'make' => { 86 => 0x0, 104 => 0x10f, 134 => 'Make', 260 => 'Make', 272 => 0x10f, 409 => 'make', 416 => 'Make' },
+ 'makernote' => { 399 => 'MakerNote' },
'makernoteapple' => { 102 => 'MakN', 104 => 0x927c },
'makernotecanon' => { 102 => 'MakN', 104 => 0x927c },
'makernotecasio' => { 102 => 'MakN', 104 => 0x927c },
@@ -2878,11 +2878,12 @@ my %tagLookup = (
'makernoteminolta' => { 102 => 'MakN', 104 => 0x927c },
'makernoteminolta2' => { 102 => 'MakN', 104 => 0x927c },
'makernoteminolta3' => { 102 => 'MakN', 104 => 0x927c },
+ 'makernotemotorola' => { 102 => 'MakN', 104 => 0x927c },
'makernotenikon' => { 102 => 'MakN', 104 => 0x927c },
'makernotenikon2' => { 102 => 'MakN', 104 => 0x927c },
'makernotenikon3' => { 102 => 'MakN', 104 => 0x927c },
'makernotenintendo' => { 102 => 'MakN', 104 => 0x927c },
- 'makernoteoffset' => { 331 => 0xff },
+ 'makernoteoffset' => { 332 => 0xff },
'makernoteolympus' => { 102 => 'MakN', 104 => 0x927c },
'makernoteolympus2' => { 102 => 'MakN', 104 => 0x927c },
'makernotepanasonic' => { 102 => 'MakN', 104 => 0x927c },
@@ -2913,116 +2914,116 @@ my %tagLookup = (
'makernotesony5' => { 102 => 'MakN', 104 => 0x927c },
'makernotesonyericsson' => { 102 => 'MakN', 104 => 0x927c },
'makernotesonysrf' => { 102 => 'MakN', 104 => 0x927c },
- 'makernotetype' => { 323 => 0x1 },
+ 'makernotetype' => { 324 => 0x1 },
'makernoteunknown' => { 102 => 'MakN', 104 => 0x927c },
'makernoteunknownbinary' => { 102 => 'MakN', 104 => 0x927c },
'makernoteunknowntext' => { 102 => 'MakN', 104 => 0x927c },
- 'makernoteversion' => { 161 => 0x0, 191 => 0x1, 252 => 0x0, 267 => 0x8000, 327 => 0x0, 329 => 0x1, 332 => [0x1d,0x1f], 342 => 0x2000 },
- 'managedfrom' => { 420 => 'ManagedFrom' },
- 'managedfromalternatepaths' => { 420 => [\'ManagedFrom','ManagedFromAlternatePaths'] },
- 'managedfromdocumentid' => { 420 => [\'ManagedFrom','ManagedFromDocumentID'] },
- 'managedfromfilepath' => { 420 => [\'ManagedFrom','ManagedFromFilePath'] },
- 'managedfromfrompart' => { 420 => [\'ManagedFrom','ManagedFromFromPart'] },
- 'managedfrominstanceid' => { 420 => [\'ManagedFrom','ManagedFromInstanceID'] },
- 'managedfromlastmodifydate' => { 420 => [\'ManagedFrom','ManagedFromLastModifyDate'] },
- 'managedfrommanager' => { 420 => [\'ManagedFrom','ManagedFromManager'] },
- 'managedfrommanagervariant' => { 420 => [\'ManagedFrom','ManagedFromManagerVariant'] },
- 'managedfrommanageto' => { 420 => [\'ManagedFrom','ManagedFromManageTo'] },
- 'managedfrommanageui' => { 420 => [\'ManagedFrom','ManagedFromManageUI'] },
- 'managedfrommaskmarkers' => { 420 => [\'ManagedFrom','ManagedFromMaskMarkers'] },
- 'managedfromoriginaldocumentid' => { 420 => [\'ManagedFrom','ManagedFromOriginalDocumentID'] },
- 'managedfrompartmapping' => { 420 => [\'ManagedFrom','ManagedFromPartMapping'] },
- 'managedfromrenditionclass' => { 420 => [\'ManagedFrom','ManagedFromRenditionClass'] },
- 'managedfromrenditionparams' => { 420 => [\'ManagedFrom','ManagedFromRenditionParams'] },
- 'managedfromtopart' => { 420 => [\'ManagedFrom','ManagedFromToPart'] },
- 'managedfromversionid' => { 420 => [\'ManagedFrom','ManagedFromVersionID'] },
- 'manager' => { 420 => 'Manager' },
- 'managervariant' => { 420 => 'ManagerVariant' },
- 'manageto' => { 420 => 'ManageTo' },
- 'manageui' => { 420 => 'ManageUI' },
- 'manifest' => { 420 => 'Manifest' },
- 'manifestlinkform' => { 420 => [\'Manifest','ManifestLinkForm'] },
- 'manifestplacedresolutionunit' => { 420 => [\'Manifest','ManifestPlacedResolutionUnit'] },
- 'manifestplacedxresolution' => { 420 => [\'Manifest','ManifestPlacedXResolution'] },
- 'manifestplacedyresolution' => { 420 => [\'Manifest','ManifestPlacedYResolution'] },
- 'manifestreference' => { 420 => [\'Manifest','ManifestReference'] },
- 'manifestreferencealternatepaths' => { 420 => [\'Manifest','ManifestReferenceAlternatePaths'] },
- 'manifestreferencedocumentid' => { 420 => [\'Manifest','ManifestReferenceDocumentID'] },
- 'manifestreferencefilepath' => { 420 => [\'Manifest','ManifestReferenceFilePath'] },
- 'manifestreferencefrompart' => { 420 => [\'Manifest','ManifestReferenceFromPart'] },
- 'manifestreferenceinstanceid' => { 420 => [\'Manifest','ManifestReferenceInstanceID'] },
- 'manifestreferencelastmodifydate' => { 420 => [\'Manifest','ManifestReferenceLastModifyDate'] },
- 'manifestreferencemanager' => { 420 => [\'Manifest','ManifestReferenceManager'] },
- 'manifestreferencemanagervariant' => { 420 => [\'Manifest','ManifestReferenceManagerVariant'] },
- 'manifestreferencemanageto' => { 420 => [\'Manifest','ManifestReferenceManageTo'] },
- 'manifestreferencemanageui' => { 420 => [\'Manifest','ManifestReferenceManageUI'] },
- 'manifestreferencemaskmarkers' => { 420 => [\'Manifest','ManifestReferenceMaskMarkers'] },
- 'manifestreferenceoriginaldocumentid' => { 420 => [\'Manifest','ManifestReferenceOriginalDocumentID'] },
- 'manifestreferencepartmapping' => { 420 => [\'Manifest','ManifestReferencePartMapping'] },
- 'manifestreferencerenditionclass' => { 420 => [\'Manifest','ManifestReferenceRenditionClass'] },
- 'manifestreferencerenditionparams' => { 420 => [\'Manifest','ManifestReferenceRenditionParams'] },
- 'manifestreferencetopart' => { 420 => [\'Manifest','ManifestReferenceToPart'] },
- 'manifestreferenceversionid' => { 420 => [\'Manifest','ManifestReferenceVersionID'] },
- 'manometerpressure' => { 247 => 0x900, 267 => 0x86 },
- 'manometerreading' => { 247 => 0x901 },
+ 'makernoteversion' => { 161 => 0x0, 192 => 0x1, 253 => 0x0, 268 => 0x8000, 328 => 0x0, 330 => 0x1, 333 => [0x1d,0x1f], 343 => 0x2000 },
+ 'managedfrom' => { 421 => 'ManagedFrom' },
+ 'managedfromalternatepaths' => { 421 => [\'ManagedFrom','ManagedFromAlternatePaths'] },
+ 'managedfromdocumentid' => { 421 => [\'ManagedFrom','ManagedFromDocumentID'] },
+ 'managedfromfilepath' => { 421 => [\'ManagedFrom','ManagedFromFilePath'] },
+ 'managedfromfrompart' => { 421 => [\'ManagedFrom','ManagedFromFromPart'] },
+ 'managedfrominstanceid' => { 421 => [\'ManagedFrom','ManagedFromInstanceID'] },
+ 'managedfromlastmodifydate' => { 421 => [\'ManagedFrom','ManagedFromLastModifyDate'] },
+ 'managedfrommanager' => { 421 => [\'ManagedFrom','ManagedFromManager'] },
+ 'managedfrommanagervariant' => { 421 => [\'ManagedFrom','ManagedFromManagerVariant'] },
+ 'managedfrommanageto' => { 421 => [\'ManagedFrom','ManagedFromManageTo'] },
+ 'managedfrommanageui' => { 421 => [\'ManagedFrom','ManagedFromManageUI'] },
+ 'managedfrommaskmarkers' => { 421 => [\'ManagedFrom','ManagedFromMaskMarkers'] },
+ 'managedfromoriginaldocumentid' => { 421 => [\'ManagedFrom','ManagedFromOriginalDocumentID'] },
+ 'managedfrompartmapping' => { 421 => [\'ManagedFrom','ManagedFromPartMapping'] },
+ 'managedfromrenditionclass' => { 421 => [\'ManagedFrom','ManagedFromRenditionClass'] },
+ 'managedfromrenditionparams' => { 421 => [\'ManagedFrom','ManagedFromRenditionParams'] },
+ 'managedfromtopart' => { 421 => [\'ManagedFrom','ManagedFromToPart'] },
+ 'managedfromversionid' => { 421 => [\'ManagedFrom','ManagedFromVersionID'] },
+ 'manager' => { 421 => 'Manager' },
+ 'managervariant' => { 421 => 'ManagerVariant' },
+ 'manageto' => { 421 => 'ManageTo' },
+ 'manageui' => { 421 => 'ManageUI' },
+ 'manifest' => { 421 => 'Manifest' },
+ 'manifestlinkform' => { 421 => [\'Manifest','ManifestLinkForm'] },
+ 'manifestplacedresolutionunit' => { 421 => [\'Manifest','ManifestPlacedResolutionUnit'] },
+ 'manifestplacedxresolution' => { 421 => [\'Manifest','ManifestPlacedXResolution'] },
+ 'manifestplacedyresolution' => { 421 => [\'Manifest','ManifestPlacedYResolution'] },
+ 'manifestreference' => { 421 => [\'Manifest','ManifestReference'] },
+ 'manifestreferencealternatepaths' => { 421 => [\'Manifest','ManifestReferenceAlternatePaths'] },
+ 'manifestreferencedocumentid' => { 421 => [\'Manifest','ManifestReferenceDocumentID'] },
+ 'manifestreferencefilepath' => { 421 => [\'Manifest','ManifestReferenceFilePath'] },
+ 'manifestreferencefrompart' => { 421 => [\'Manifest','ManifestReferenceFromPart'] },
+ 'manifestreferenceinstanceid' => { 421 => [\'Manifest','ManifestReferenceInstanceID'] },
+ 'manifestreferencelastmodifydate' => { 421 => [\'Manifest','ManifestReferenceLastModifyDate'] },
+ 'manifestreferencemanager' => { 421 => [\'Manifest','ManifestReferenceManager'] },
+ 'manifestreferencemanagervariant' => { 421 => [\'Manifest','ManifestReferenceManagerVariant'] },
+ 'manifestreferencemanageto' => { 421 => [\'Manifest','ManifestReferenceManageTo'] },
+ 'manifestreferencemanageui' => { 421 => [\'Manifest','ManifestReferenceManageUI'] },
+ 'manifestreferencemaskmarkers' => { 421 => [\'Manifest','ManifestReferenceMaskMarkers'] },
+ 'manifestreferenceoriginaldocumentid' => { 421 => [\'Manifest','ManifestReferenceOriginalDocumentID'] },
+ 'manifestreferencepartmapping' => { 421 => [\'Manifest','ManifestReferencePartMapping'] },
+ 'manifestreferencerenditionclass' => { 421 => [\'Manifest','ManifestReferenceRenditionClass'] },
+ 'manifestreferencerenditionparams' => { 421 => [\'Manifest','ManifestReferenceRenditionParams'] },
+ 'manifestreferencetopart' => { 421 => [\'Manifest','ManifestReferenceToPart'] },
+ 'manifestreferenceversionid' => { 421 => [\'Manifest','ManifestReferenceVersionID'] },
+ 'manometerpressure' => { 248 => 0x900, 268 => 0x86 },
+ 'manometerreading' => { 248 => 0x901 },
'manualafpointselectpattern' => { 72 => 0x513 },
- 'manualflash' => { 250 => 0x1209 },
- 'manualflashoutput' => { 30 => 0x29, 236 => '8.2', 237 => '22.2', 238 => '23.1', 239 => '23.2', 240 => '16.2', 241 => '23.2', 242 => '8.2', 243 => '23.2', 245 => '24.2', 323 => 0x100c },
- 'manualflashstrength' => { 247 => 0x406 },
- 'manualfocusdistance' => { 191 => 0x85, 252 => 0x100c, 331 => 0x223 },
+ 'manualflash' => { 251 => 0x1209 },
+ 'manualflashoutput' => { 30 => 0x29, 237 => '8.2', 238 => '22.2', 239 => '23.1', 240 => '23.2', 241 => '16.2', 242 => '23.2', 243 => '8.2', 244 => '23.2', 246 => '24.2', 324 => 0x100c },
+ 'manualflashstrength' => { 248 => 0x406 },
+ 'manualfocusdistance' => { 192 => 0x85, 253 => 0x100c, 332 => 0x223 },
'manualtv' => { 71 => 0x5, 72 => 0x705 },
- 'manufacturedate' => { 280 => 0x1 },
- 'manufacturedate1' => { 325 => 0x4 },
- 'manufacturedate2' => { 325 => 0x5 },
- 'manufacturer' => { 408 => 'manufacturer' },
- 'marked' => { 405 => 'Marked', 423 => 'Marked' },
- 'markers' => { 419 => 'markers' },
- 'markerscomment' => { 419 => [\'markers','markersComment'] },
- 'markerscuepointparams' => { 419 => [\'markers','markersCuePointParams'] },
- 'markerscuepointparamskey' => { 419 => [\'markers','markersCuePointParamsKey'] },
- 'markerscuepointparamsvalue' => { 419 => [\'markers','markersCuePointParamsValue'] },
- 'markerscuepointtype' => { 419 => [\'markers','markersCuePointType'] },
- 'markersduration' => { 419 => [\'markers','markersDuration'] },
- 'markerslocation' => { 419 => [\'markers','markersLocation'] },
- 'markersname' => { 419 => [\'markers','markersName'] },
- 'markersprobability' => { 419 => [\'markers','markersProbability'] },
- 'markersspeaker' => { 419 => [\'markers','markersSpeaker'] },
- 'markersstarttime' => { 419 => [\'markers','markersStartTime'] },
- 'markerstarget' => { 419 => [\'markers','markersTarget'] },
- 'markerstype' => { 419 => [\'markers','markersType'] },
+ 'manufacturedate' => { 166 => 0x6705, 281 => 0x1 },
+ 'manufacturedate1' => { 326 => 0x4 },
+ 'manufacturedate2' => { 326 => 0x5 },
+ 'manufacturer' => { 409 => 'manufacturer' },
+ 'marked' => { 406 => 'Marked', 424 => 'Marked' },
+ 'markers' => { 420 => 'markers' },
+ 'markerscomment' => { 420 => [\'markers','markersComment'] },
+ 'markerscuepointparams' => { 420 => [\'markers','markersCuePointParams'] },
+ 'markerscuepointparamskey' => { 420 => [\'markers','markersCuePointParamsKey'] },
+ 'markerscuepointparamsvalue' => { 420 => [\'markers','markersCuePointParamsValue'] },
+ 'markerscuepointtype' => { 420 => [\'markers','markersCuePointType'] },
+ 'markersduration' => { 420 => [\'markers','markersDuration'] },
+ 'markerslocation' => { 420 => [\'markers','markersLocation'] },
+ 'markersname' => { 420 => [\'markers','markersName'] },
+ 'markersprobability' => { 420 => [\'markers','markersProbability'] },
+ 'markersspeaker' => { 420 => [\'markers','markersSpeaker'] },
+ 'markersstarttime' => { 420 => [\'markers','markersStartTime'] },
+ 'markerstarget' => { 420 => [\'markers','markersTarget'] },
+ 'markerstype' => { 420 => [\'markers','markersType'] },
'maskedareas' => { 104 => 0xc68e },
'masterdocumentid' => { 112 => 0xb9 },
- 'mastergain' => { 197 => 0x50 },
- 'matrixmetering' => { 235 => '50.1', 244 => '48.1' },
- 'maxaperture' => { 30 => 0x1a, 124 => 0x6103, 141 => 'MaxAperture', 156 => 0x17, 162 => 0x49c5, 248 => 0x20a, 291 => '14.1', 366 => 0x0 },
- 'maxapertureatmaxfocal' => { 109 => 0x1407, 141 => 'MaxApertureAtMaxFocal', 186 => 0xb, 187 => 0x10, 188 => 0x11, 248 => 0x206 },
- 'maxapertureatminfocal' => { 109 => 0x1406, 186 => 0xa, 187 => 0xf, 188 => 0x10, 248 => 0x205 },
- 'maxaperturevalue' => { 104 => 0x9205, 398 => 'MaxApertureValue' },
- 'maxavailheight' => { 404 => 'MaxAvailHeight' },
- 'maxavailwidth' => { 404 => 'MaxAvailWidth' },
- 'maxcontinuousrelease' => { 234 => 0xb, 235 => 0xc, 240 => 0xc, 241 => 0xb, 244 => '12.1' },
- 'maxfaces' => { 251 => 0x1202 },
- 'maxfocallength' => { 6 => 0xe6, 7 => 0x10, 8 => 0x1ab, 9 => 0x13, 10 => 0x115, 11 => 0x13, 12 => 0x153, 13 => 0xda, 15 => 0xfa, 16 => 0xee, 17 => 0x103, 18 => 0x95, 19 => 0xea, 20 => 0x157, 21 => 0xee, 22 => 0xec, 23 => 0x12b, 24 => 0x165, 25 => 0x16a, 26 => 0x116, 30 => 0x17, 109 => 0x1405, 141 => 'MaxFocalLength', 186 => 0x9, 187 => 0xe, 188 => 0xf, 248 => 0x208, 362 => 0x127c, 363 => 0x1138, 364 => 0x330, 365 => 0x330 },
+ 'mastergain' => { 198 => 0x50 },
+ 'matrixmetering' => { 236 => '50.1', 245 => '48.1' },
+ 'maxaperture' => { 30 => 0x1a, 124 => 0x6103, 141 => 'MaxAperture', 156 => 0x17, 162 => 0x49c5, 249 => 0x20a, 292 => '14.1', 367 => 0x0 },
+ 'maxapertureatmaxfocal' => { 109 => 0x1407, 141 => 'MaxApertureAtMaxFocal', 187 => 0xb, 188 => 0x10, 189 => 0x11, 249 => 0x206 },
+ 'maxapertureatminfocal' => { 109 => 0x1406, 187 => 0xa, 188 => 0xf, 189 => 0x10, 249 => 0x205 },
+ 'maxaperturevalue' => { 104 => 0x9205, 399 => 'MaxApertureValue' },
+ 'maxavailheight' => { 405 => 'MaxAvailHeight' },
+ 'maxavailwidth' => { 405 => 'MaxAvailWidth' },
+ 'maxcontinuousrelease' => { 235 => 0xb, 236 => 0xc, 241 => 0xc, 242 => 0xb, 245 => '12.1' },
+ 'maxfaces' => { 252 => 0x1202 },
+ 'maxfocallength' => { 6 => 0xe6, 7 => 0x10, 8 => 0x1ab, 9 => 0x13, 10 => 0x115, 11 => 0x13, 12 => 0x153, 13 => 0xda, 15 => 0xfa, 16 => 0xee, 17 => 0x103, 18 => 0x95, 19 => 0xea, 20 => 0x157, 21 => 0xee, 22 => 0xec, 23 => 0x12b, 24 => 0x165, 25 => 0x16a, 26 => 0x116, 30 => 0x17, 109 => 0x1405, 141 => 'MaxFocalLength', 187 => 0x9, 188 => 0xe, 189 => 0xf, 249 => 0x208, 363 => 0x127c, 364 => 0x1138, 365 => 0x330, 366 => 0x330 },
'maximumdensityrange' => { 114 => 0x8c },
- 'maxpagesize' => { 424 => 'MaxPageSize' },
- 'maxpagesizeh' => { 424 => [\'MaxPageSize','MaxPageSizeH'] },
- 'maxpagesizeunit' => { 424 => [\'MaxPageSize','MaxPageSizeUnit'] },
- 'maxpagesizew' => { 424 => [\'MaxPageSize','MaxPageSizeW'] },
+ 'maxpagesize' => { 425 => 'MaxPageSize' },
+ 'maxpagesizeh' => { 425 => [\'MaxPageSize','MaxPageSizeH'] },
+ 'maxpagesizeunit' => { 425 => [\'MaxPageSize','MaxPageSizeUnit'] },
+ 'maxpagesizew' => { 425 => [\'MaxPageSize','MaxPageSizeW'] },
'maxsamplevalue' => { 104 => 0x119 },
- 'maxstorage' => { 414 => 'maxstorage' },
- 'mb-d10batteries' => { 234 => '12.6' },
- 'mb-d10batterytype' => { 240 => '13.3' },
- 'mb-d11batterytype' => { 241 => '2.3' },
- 'mb-d12batterytype' => { 244 => '3.2' },
- 'mb-d80batteries' => { 242 => '6.5' },
- 'mb-d80batterytype' => { 245 => '3.2' },
- 'mcuversion' => { 186 => 0xc, 187 => 0x11, 188 => 0x12 },
+ 'maxstorage' => { 415 => 'maxstorage' },
+ 'mb-d10batteries' => { 235 => '12.6' },
+ 'mb-d10batterytype' => { 241 => '13.3' },
+ 'mb-d11batterytype' => { 242 => '2.3' },
+ 'mb-d12batterytype' => { 245 => '3.2' },
+ 'mb-d80batteries' => { 243 => '6.5' },
+ 'mb-d80batterytype' => { 246 => '3.2' },
+ 'mcuversion' => { 187 => 0xc, 188 => 0x11, 189 => 0x12 },
'md5digest' => { 142 => 'zmd5' },
- 'meal' => { 411 => 'meal' },
+ 'meal' => { 412 => 'meal' },
'measuredev' => { 26 => 0x9, 66 => 0x3, 85 => 0x1814, 134 => 'MeasuredEV' },
'measuredev2' => { 12 => 0x8, 26 => 0x8, 66 => 0x17 },
'measuredev3' => { 12 => 0x9 },
- 'measuredlv' => { 162 => 0x690, 263 => 0x312, 269 => 0x3407 },
+ 'measuredlv' => { 162 => 0x690, 264 => 0x312, 270 => 0x3407 },
'measuredrggb' => { 55 => 0x1 },
'measuredrggbdata' => { 36 => 0x287 },
'measurementaccuracy' => { 103 => [\'MeasurementOrFact','MeasurementOrFactMeasurementAccuracy'] },
@@ -3035,70 +3036,70 @@ my %tagLookup = (
'measurementtype' => { 103 => [\'MeasurementOrFact','MeasurementOrFactMeasurementType'] },
'measurementunit' => { 103 => [\'MeasurementOrFact','MeasurementOrFactMeasurementUnit'] },
'measurementvalue' => { 103 => [\'MeasurementOrFact','MeasurementOrFactMeasurementValue'] },
- 'mediaconstraints' => { 407 => 'MediaConstraints' },
- 'mediacreatedate' => { 315 => 0x1 },
- 'mediamodifydate' => { 315 => 0x2 },
- 'mediasummarycode' => { 407 => 'MediaSummaryCode' },
+ 'mediaconstraints' => { 408 => 'MediaConstraints' },
+ 'mediacreatedate' => { 316 => 0x1 },
+ 'mediamodifydate' => { 316 => 0x2 },
+ 'mediasummarycode' => { 408 => 'MediaSummaryCode' },
'memoaudioquality' => { 72 => 0x812 },
- 'memorycardconfiguration' => { 345 => 0x16 },
+ 'memorycardconfiguration' => { 346 => 0x16 },
'menubuttondisplayposition' => { 70 => 0xb, 73 => 0xa, 74 => 0xb, 77 => 0xb },
'menubuttonreturn' => { 78 => 0xb },
- 'menumonitorofftime' => { 234 => '26.1', 235 => '22.1', 240 => '8.2', 241 => '21.1', 244 => '22.1', 245 => '22.1' },
- 'metadatadate' => { 417 => 'MetadataDate' },
- 'metadatamoddate' => { 419 => 'metadataModDate' },
- 'metaversion' => { 357 => 0x34 },
- 'meterinfo1row1' => { 352 => 0x0 },
- 'meterinfo1row2' => { 352 => 0x6c },
- 'meterinfo1row3' => { 352 => 0xd8 },
- 'meterinfo1row4' => { 352 => 0x144 },
- 'meterinfo1row5' => { 352 => 0x1b0 },
- 'meterinfo1row6' => { 352 => 0x21c },
- 'meterinfo1row7' => { 352 => 0x288 },
- 'meterinfo2row1' => { 352 => 0x2f4 },
- 'meterinfo2row2' => { 352 => 0x378 },
- 'meterinfo2row3' => { 352 => 0x3fc },
- 'meterinfo2row4' => { 352 => 0x480 },
- 'meterinfo2row5' => { 352 => 0x504 },
- 'meterinfo2row6' => { 352 => 0x588 },
- 'meterinfo2row7' => { 352 => 0x60c },
- 'meterinfo2row8' => { 352 => 0x690 },
- 'meterinfo2row9' => { 352 => 0x714 },
- 'metering' => { 236 => '6.1' },
- 'meteringmode' => { 30 => 0x11, 104 => 0x9207, 120 => 0x1c, 156 => 0x7, 157 => 0x25, 159 => 0x12, 247 => 0x202, 300 => 0x17, 332 => 0x9, 339 => 0x15, 340 => 0x13, 341 => 0x7, 355 => 0x3, 358 => 0x1174, 359 => 0x1178, 360 => 0x1154, 361 => 0x11d0, 362 => 0x11ac, 363 => 0x1064, 364 => 0x25c, 365 => 0x25c, 398 => 'MeteringMode' },
- 'meteringmode2' => { 281 => '2.1' },
- 'meteringmode3' => { 281 => '16.1' },
+ 'menumonitorofftime' => { 235 => '26.1', 236 => '22.1', 241 => '8.2', 242 => '21.1', 245 => '22.1', 246 => '22.1' },
+ 'metadatadate' => { 418 => 'MetadataDate' },
+ 'metadatamoddate' => { 420 => 'metadataModDate' },
+ 'metaversion' => { 358 => 0x34 },
+ 'meterinfo1row1' => { 353 => 0x0 },
+ 'meterinfo1row2' => { 353 => 0x6c },
+ 'meterinfo1row3' => { 353 => 0xd8 },
+ 'meterinfo1row4' => { 353 => 0x144 },
+ 'meterinfo1row5' => { 353 => 0x1b0 },
+ 'meterinfo1row6' => { 353 => 0x21c },
+ 'meterinfo1row7' => { 353 => 0x288 },
+ 'meterinfo2row1' => { 353 => 0x2f4 },
+ 'meterinfo2row2' => { 353 => 0x378 },
+ 'meterinfo2row3' => { 353 => 0x3fc },
+ 'meterinfo2row4' => { 353 => 0x480 },
+ 'meterinfo2row5' => { 353 => 0x504 },
+ 'meterinfo2row6' => { 353 => 0x588 },
+ 'meterinfo2row7' => { 353 => 0x60c },
+ 'meterinfo2row8' => { 353 => 0x690 },
+ 'meterinfo2row9' => { 353 => 0x714 },
+ 'metering' => { 237 => '6.1' },
+ 'meteringmode' => { 30 => 0x11, 104 => 0x9207, 120 => 0x1c, 156 => 0x7, 157 => 0x25, 159 => 0x12, 248 => 0x202, 301 => 0x17, 333 => 0x9, 340 => 0x15, 341 => 0x13, 342 => 0x7, 356 => 0x3, 359 => 0x1174, 360 => 0x1178, 361 => 0x1154, 362 => 0x11d0, 363 => 0x11ac, 364 => 0x1064, 365 => 0x25c, 366 => 0x25c, 399 => 'MeteringMode' },
+ 'meteringmode2' => { 282 => '2.1' },
+ 'meteringmode3' => { 282 => '16.1' },
'meteringoffscaleindicator' => { 159 => 0x53 },
- 'meteringtime' => { 234 => '22.2', 236 => '3.2', 237 => '17.1', 238 => '18.1', 240 => '7.3', 241 => '18.1', 242 => '3.2', 245 => '19.1' },
+ 'meteringtime' => { 235 => '22.2', 237 => '3.2', 238 => '17.1', 239 => '18.1', 241 => '7.3', 242 => '18.1', 243 => '3.2', 246 => '19.1' },
'mieversion' => { 142 => '0Vers' },
- 'minaperture' => { 30 => 0x1b, 141 => 'MinAperture', 291 => '0.2', 366 => 0x1 },
- 'minfocallength' => { 6 => 0xe4, 7 => 0xe, 8 => 0x1a9, 9 => 0x11, 10 => 0x113, 11 => 0x11, 12 => 0x151, 13 => 0xd8, 15 => 0xf8, 16 => 0xec, 17 => 0x101, 18 => 0x93, 19 => 0xe8, 20 => 0x155, 21 => 0xec, 22 => 0xea, 23 => 0x129, 24 => 0x163, 25 => 0x168, 26 => 0x114, 30 => 0x18, 109 => 0x1404, 141 => 'MinFocalLength', 186 => 0x8, 187 => 0xd, 188 => 0xe, 248 => 0x207, 362 => 0x127a, 363 => 0x1136, 364 => 0x32e, 365 => 0x32e },
- 'minfocusdistance' => { 291 => 0x3 },
+ 'minaperture' => { 30 => 0x1b, 141 => 'MinAperture', 292 => '0.2', 367 => 0x1 },
+ 'minfocallength' => { 6 => 0xe4, 7 => 0xe, 8 => 0x1a9, 9 => 0x11, 10 => 0x113, 11 => 0x11, 12 => 0x151, 13 => 0xd8, 15 => 0xf8, 16 => 0xec, 17 => 0x101, 18 => 0x93, 19 => 0xe8, 20 => 0x155, 21 => 0xec, 22 => 0xea, 23 => 0x129, 24 => 0x163, 25 => 0x168, 26 => 0x114, 30 => 0x18, 109 => 0x1404, 141 => 'MinFocalLength', 187 => 0x8, 188 => 0xd, 189 => 0xe, 249 => 0x207, 363 => 0x127a, 364 => 0x1136, 365 => 0x32e, 366 => 0x32e },
+ 'minfocusdistance' => { 292 => 0x3 },
'minoltadate' => { 156 => 0x15 },
'minoltaimagesize' => { 156 => 0x4, 157 => 0xc, 158 => 0x2, 161 => 0x103 },
'minoltamodelid' => { 156 => 0x25 },
'minoltaquality' => { 156 => 0x5, 157 => 0xd, 158 => 0x3, 161 => [0x102,0x103] },
'minoltatime' => { 156 => 0x16 },
- 'minormodelagedisclosure' => { 407 => 'MinorModelAgeDisclosure' },
+ 'minormodelagedisclosure' => { 408 => 'MinorModelAgeDisclosure' },
'minsamplevalue' => { 104 => 0x118 },
'mirrorlockup' => { 70 => 0xc, 71 => 0xc, 72 => 0x60f, 73 => 0xb, 74 => 0xc, 75 => 0x6, 76 => 0x6, 77 => 0xc, 78 => 0x3 },
- 'mobilecountrycode' => { 392 => 'mcc' },
- 'mobilenetworkcode' => { 392 => 'mnc' },
- 'moddate' => { 259 => 'modify-date', 405 => 'ModDate' },
- 'modedialposition' => { 345 => 0x14 },
- 'model' => { 86 => 0x6, 104 => 0x110, 134 => 'Model', 259 => 'Model', 271 => 0x110, 408 => 'model', 415 => 'Model' },
- 'modelage' => { 404 => 'ModelAge' },
- 'modelid' => { 246 => 0x0 },
- 'modelingflash' => { 234 => '21.4', 235 => '31.1', 240 => '26.4', 241 => '30.2', 242 => '7.4', 243 => '30.1', 244 => '31.1', 245 => '31.3' },
- 'modelreleaseid' => { 407 => 'ModelReleaseID' },
- 'modelreleasestatus' => { 407 => 'ModelReleaseStatus' },
- 'modelreleaseyear' => { 367 => 0x52, 368 => 0x46, 369 => 0x53 },
- 'modelyear' => { 408 => 'modelYear' },
- 'modificationdate' => { 409 => 'modificationDate' },
+ 'mobilecountrycode' => { 393 => 'mcc' },
+ 'mobilenetworkcode' => { 393 => 'mnc' },
+ 'moddate' => { 260 => 'modify-date', 406 => 'ModDate' },
+ 'modedialposition' => { 346 => 0x14 },
+ 'model' => { 86 => 0x6, 104 => 0x110, 134 => 'Model', 260 => 'Model', 272 => 0x110, 409 => 'model', 416 => 'Model' },
+ 'modelage' => { 405 => 'ModelAge' },
+ 'modelid' => { 247 => 0x0 },
+ 'modelingflash' => { 235 => '21.4', 236 => '31.1', 241 => '26.4', 242 => '30.2', 243 => '7.4', 244 => '30.1', 245 => '31.1', 246 => '31.3' },
+ 'modelreleaseid' => { 408 => 'ModelReleaseID' },
+ 'modelreleasestatus' => { 408 => 'ModelReleaseStatus' },
+ 'modelreleaseyear' => { 368 => 0x52, 369 => 0x46, 370 => 0x53 },
+ 'modelyear' => { 409 => 'modelYear' },
+ 'modificationdate' => { 410 => 'modificationDate' },
'modifiedcolortemp' => { 56 => 0x9 },
'modifieddigitalgain' => { 56 => 0xb },
'modifiedparamflag' => { 49 => 0x1 },
'modifiedpicturestyle' => { 56 => 0xa },
- 'modifiedsaturation' => { 247 => 0x504 },
+ 'modifiedsaturation' => { 248 => 0x504 },
'modifiedsensorbluelevel' => { 56 => 0x5 },
'modifiedsensorredlevel' => { 56 => 0x4 },
'modifiedsharpness' => { 56 => 0x2 },
@@ -3107,12 +3108,12 @@ my %tagLookup = (
'modifiedwhitebalance' => { 56 => 0x8 },
'modifiedwhitebalanceblue' => { 56 => 0x7 },
'modifiedwhitebalancered' => { 56 => 0x6 },
- 'modifydate' => { 104 => 0x132, 135 => 'ModifyDate', 256 => 'ModDate', 257 => 'tIME', 314 => 'ModDate', 316 => 0x2, 417 => 'ModifyDate' },
- 'moirefilter' => { 104 => 0xfe58, 394 => 'MoireFilter' },
+ 'modifydate' => { 104 => 0x132, 135 => 'ModifyDate', 257 => 'ModDate', 258 => 'tIME', 315 => 'ModDate', 317 => 0x2, 418 => 'ModifyDate' },
+ 'moirefilter' => { 104 => 0xfe58, 395 => 'MoireFilter' },
'monitordisplayoff' => { 159 => 0x4c },
- 'monitorofftime' => { 234 => '18.2', 236 => '3.1', 242 => '3.1' },
+ 'monitorofftime' => { 235 => '18.2', 237 => '3.1', 243 => '3.1' },
'monochromecontrast' => { 96 => 0x3c },
- 'monochromefiltereffect' => { 90 => 0x20307, 96 => 0x3a, 300 => 0x73 },
+ 'monochromefiltereffect' => { 90 => 0x20307, 96 => 0x3a, 301 => 0x73 },
'monochromelinear' => { 96 => 0x3d },
'monochromeoutputhighlightpoint' => { 96 => 0x41 },
'monochromeoutputshadowpoint' => { 96 => 0x42 },
@@ -3121,51 +3122,51 @@ my %tagLookup = (
'monochromerawshadow' => { 96 => 0x83 },
'monochromerawshadowpoint' => { 96 => 0x40 },
'monochromesharpness' => { 96 => 0x3e },
- 'monochrometoning' => { 300 => 0x74 },
+ 'monochrometoning' => { 301 => 0x74 },
'monochrometoningeffect' => { 90 => 0x20306, 96 => 0x3b },
'monochromeunsharpmaskfineness' => { 96 => 0xb2 },
'monochromeunsharpmaskstrength' => { 96 => 0xb0 },
'monochromeunsharpmaskthreshold' => { 96 => 0xb4 },
'monthdaycreated' => { 120 => 0x12, 129 => 0xe },
- 'moonphase' => { 319 => 0x12 },
- 'morepermissions' => { 391 => 'morePermissions' },
- 'motionsensitivity' => { 319 => 0x29 },
- 'movieaelockbuttonassignment' => { 244 => '40.1' },
- 'moviefunctionbutton' => { 235 => '41.1', 244 => '41.1' },
- 'moviefunctionbuttonplusdials' => { 235 => '52.1' },
- 'moviepreviewbutton' => { 235 => '41.2', 244 => '41.2' },
- 'moviepreviewbuttonplusdials' => { 235 => '52.2' },
- 'movieshutterbutton' => { 235 => '38.3', 244 => '38.3' },
- 'moviesubselectorassignment' => { 235 => '48.2' },
- 'moviesubselectorassignmentplusdials' => { 235 => '53.1' },
- 'multiburstimageheight' => { 351 => 0x1002 },
- 'multiburstimagewidth' => { 351 => 0x1001 },
- 'multiburstmode' => { 351 => 0x1000 },
+ 'moonphase' => { 320 => 0x12 },
+ 'morepermissions' => { 392 => 'morePermissions' },
+ 'motionsensitivity' => { 320 => 0x29 },
+ 'movieaelockbuttonassignment' => { 245 => '40.1' },
+ 'moviefunctionbutton' => { 236 => '41.1', 245 => '41.1' },
+ 'moviefunctionbuttonplusdials' => { 236 => '52.1' },
+ 'moviepreviewbutton' => { 236 => '41.2', 245 => '41.2' },
+ 'moviepreviewbuttonplusdials' => { 236 => '52.2' },
+ 'movieshutterbutton' => { 236 => '38.3', 245 => '38.3' },
+ 'moviesubselectorassignment' => { 236 => '48.2' },
+ 'moviesubselectorassignmentplusdials' => { 236 => '53.1' },
+ 'multiburstimageheight' => { 352 => 0x1002 },
+ 'multiburstimagewidth' => { 352 => 0x1001 },
+ 'multiburstmode' => { 352 => 0x1000 },
'multicontrollerwhilemetering' => { 72 => 0x517 },
'multiexposure' => { 58 => 0x1 },
- 'multiexposureautogain' => { 192 => 0x3 },
+ 'multiexposureautogain' => { 193 => 0x3 },
'multiexposurecontrol' => { 58 => 0x2 },
- 'multiexposuremode' => { 192 => 0x1 },
- 'multiexposureshots' => { 58 => 0x3, 192 => 0x2 },
- 'multiframenoisereduction' => { 341 => 0x35, 351 => 0x200b, 355 => 0x15 },
+ 'multiexposuremode' => { 193 => 0x1 },
+ 'multiexposureshots' => { 58 => 0x3, 193 => 0x2 },
+ 'multiframenoisereduction' => { 342 => 0x35, 352 => 0x200b, 356 => 0x15 },
'multifunctionlock' => { 72 => 0x70f },
- 'multipleexposuremode' => { 251 => 0x101c },
- 'multipleexposureset' => { 281 => '10.1' },
- 'multisample' => { 197 => 0x40 },
- 'multiselector' => { 234 => '9.4', 235 => '10.3', 240 => '27.4', 244 => '10.3' },
- 'multiselectorliveview' => { 234 => '4.3', 244 => '37.1' },
- 'multiselectorliveviewmode' => { 207 => 0x18c2 },
- 'multiselectorplaybackmode' => { 234 => ['13.5','9.2'], 235 => '10.2', 240 => '27.2', 244 => '10.2' },
- 'multiselectorshootmode' => { 234 => '9.1', 235 => '10.1', 240 => '27.1', 244 => '10.1' },
+ 'multipleexposuremode' => { 252 => 0x101c },
+ 'multipleexposureset' => { 282 => '10.1' },
+ 'multisample' => { 198 => 0x40 },
+ 'multiselector' => { 235 => '9.4', 236 => '10.3', 241 => '27.4', 245 => '10.3' },
+ 'multiselectorliveview' => { 235 => '4.3', 245 => '37.1' },
+ 'multiselectorliveviewmode' => { 208 => 0x18c2 },
+ 'multiselectorplaybackmode' => { 235 => ['13.5','9.2'], 236 => '10.2', 241 => '27.2', 245 => '10.2' },
+ 'multiselectorshootmode' => { 235 => '9.1', 236 => '10.1', 241 => '27.1', 245 => '10.1' },
'mycolormode' => { 59 => 0x2 },
- 'nationalcatalognumber' => { 409 => 'nationalCatalogNumber' },
- 'nativedigest' => { 398 => 'NativeDigest', 415 => 'NativeDigest' },
+ 'nationalcatalognumber' => { 410 => 'nationalCatalogNumber' },
+ 'nativedigest' => { 399 => 'NativeDigest', 416 => 'NativeDigest' },
'ncdfileinfo' => { 118 => 0x414 },
- 'ndfilter' => { 66 => 0x1c, 247 => 0x204, 323 => 0x1019 },
- 'nefbitdepth' => { 191 => 0xe22 },
- 'nefcompression' => { 191 => 0x93 },
- 'neflinearizationtable' => { 191 => 0x96 },
- 'neutraldensityfilter' => { 300 => 0x88 },
+ 'ndfilter' => { 66 => 0x1c, 248 => 0x204, 324 => 0x1019 },
+ 'nefbitdepth' => { 192 => 0xe22 },
+ 'nefcompression' => { 192 => 0x93 },
+ 'neflinearizationtable' => { 192 => 0x96 },
+ 'neutraldensityfilter' => { 301 => 0x88 },
'neutraloutputhighlightpoint' => { 96 => 0x2f },
'neutraloutputshadowpoint' => { 96 => 0x30 },
'neutralrawcolortone' => { 96 => 0x28 },
@@ -3182,48 +3183,48 @@ my %tagLookup = (
'neutraunsharpmaskstrength' => { 96 => 0xa4 },
'newrawimagedigest' => { 104 => 0xc7a7 },
'newsphotoversion' => { 114 => 0x0 },
- 'nickname' => { 417 => 'Nickname' },
- 'nikoncapturedata' => { 191 => 0xe01 },
- 'nikoncaptureeditversions' => { 191 => 0xe13 },
- 'nikoncaptureoutput' => { 191 => 0xe1e },
- 'nikoncaptureversion' => { 191 => 0xe09 },
- 'nikoniccprofile' => { 191 => 0xe1d },
- 'nikonimagesize' => { 204 => '723.1', 205 => '732.1', 213 => 0x2c4 },
- 'noisefilter' => { 247 => 0x527 },
+ 'nickname' => { 418 => 'Nickname' },
+ 'nikoncapturedata' => { 192 => 0xe01 },
+ 'nikoncaptureeditversions' => { 192 => 0xe13 },
+ 'nikoncaptureoutput' => { 192 => 0xe1e },
+ 'nikoncaptureversion' => { 192 => 0xe09 },
+ 'nikoniccprofile' => { 192 => 0xe1d },
+ 'nikonimagesize' => { 205 => '723.1', 206 => '732.1', 214 => 0x2c4 },
+ 'noisefilter' => { 248 => 0x527 },
'noiseprofile' => { 104 => 0xc761 },
- 'noisereduction' => { 109 => 0x100b, 157 => 0xb0, 158 => 0x60, 159 => 0x3f, 191 => 0x95, 227 => 0x753dcbc0, 228 => 0x17, 247 => 0x50a, 252 => 0x103a, 267 => 0x2d, 300 => 0x49, 323 => 0x100f, 325 => 0x2a },
- 'noisereduction2' => { 251 => 0x1010 },
+ 'noisereduction' => { 109 => 0x100b, 157 => 0xb0, 158 => 0x60, 159 => 0x3f, 192 => 0x95, 228 => 0x753dcbc0, 229 => 0x17, 248 => 0x50a, 253 => 0x103a, 268 => 0x2d, 301 => 0x49, 324 => 0x100f, 326 => 0x2a },
+ 'noisereduction2' => { 252 => 0x1010 },
'noisereductionapplied' => { 104 => 0xc6f7 },
- 'noisereductionintensity' => { 228 => 0x9 },
- 'noisereductionmethod' => { 228 => 0x11 },
- 'noisereductionmode' => { 379 => 0x801e },
- 'noisereductionsharpness' => { 228 => 0xd },
- 'noisereductionvalue' => { 379 => 0x8027 },
- 'nomemorycard' => { 234 => '22.1', 235 => '4.2', 236 => '0.3', 237 => '2.4', 238 => '3.2', 239 => '3.2', 240 => '33.7', 241 => '3.2', 242 => '0.3', 244 => '4.2', 245 => '4.5' },
- 'nominalmaxaperture' => { 291 => 0xa },
- 'nominalminaperture' => { 291 => '10.1' },
+ 'noisereductionintensity' => { 229 => 0x9 },
+ 'noisereductionmethod' => { 229 => 0x11 },
+ 'noisereductionmode' => { 380 => 0x801e },
+ 'noisereductionsharpness' => { 229 => 0xd },
+ 'noisereductionvalue' => { 380 => 0x8027 },
+ 'nomemorycard' => { 235 => '22.1', 236 => '4.2', 237 => '0.3', 238 => '2.4', 239 => '3.2', 240 => '3.2', 241 => '33.7', 242 => '3.2', 243 => '0.3', 245 => '4.2', 246 => '4.5' },
+ 'nominalmaxaperture' => { 292 => 0xa },
+ 'nominalminaperture' => { 292 => '10.1' },
'normalwhitelevel' => { 37 => [0x2b8,0x2cf,0x2d3], 39 => 0x1e3, 40 => [0x1fc,0x2dc], 41 => 0x30e },
- 'notes' => { 380 => 'Notes', 388 => 'notes' },
- 'npages' => { 424 => 'NPages' },
- 'nrwdata' => { 191 => 0x14 },
+ 'notes' => { 381 => 'Notes', 389 => 'notes' },
+ 'npages' => { 425 => 'NPages' },
+ 'nrwdata' => { 192 => 0x14 },
'nullrecord' => { 85 => 0x0 },
- 'number' => { 409 => 'number' },
- 'numberofbeats' => { 419 => 'numberOfBeats' },
- 'numberoffocuspoints' => { 239 => '0.2', 241 => '0.3' },
- 'numfacepositions' => { 261 => 0x0 },
+ 'number' => { 410 => 'number' },
+ 'numberofbeats' => { 420 => 'numberOfBeats' },
+ 'numberoffocuspoints' => { 240 => '0.2', 242 => '0.3' },
+ 'numfacepositions' => { 262 => 0x0 },
'numindexentries' => { 114 => 0x54 },
- 'numwbentries' => { 272 => 0x0, 273 => 0x0 },
- 'object' => { 409 => 'object' },
+ 'numwbentries' => { 273 => 0x0, 274 => 0x0 },
+ 'object' => { 410 => 'object' },
'objectattributereference' => { 112 => 0x4 },
'objectcycle' => { 112 => 0x4b },
- 'objectdescription' => { 408 => 'objectDescription' },
+ 'objectdescription' => { 409 => 'objectDescription' },
'objectdistance' => { 99 => 0x6, 100 => 0x2022 },
'objectname' => { 112 => 0x5 },
'objectpreviewdata' => { 112 => 0xca },
'objectpreviewfileformat' => { 112 => 0xc8 },
'objectpreviewfileversion' => { 112 => 0xc9 },
- 'objectsubtype' => { 408 => 'objectSubtype' },
- 'objecttype' => { 408 => 'objectType' },
+ 'objectsubtype' => { 409 => 'objectSubtype' },
+ 'objecttype' => { 409 => 'objectType' },
'objecttypereference' => { 112 => 0x3 },
'occurrence' => { 103 => 'Occurrence' },
'occurrenceassociatedmedia' => { 103 => [\'Occurrence','OccurrenceAssociatedMedia'] },
@@ -3249,47 +3250,47 @@ my %tagLookup = (
'occurrencereproductivecondition' => { 103 => [\'Occurrence','OccurrenceReproductiveCondition'] },
'occurrencesex' => { 103 => [\'Occurrence','OccurrenceSex'] },
'occurrencestatus' => { 103 => [\'Occurrence','OccurrenceOccurrenceStatus'] },
- 'oecfcolumns' => { 398 => [\'OECF','OECFColumns'] },
- 'oecfnames' => { 398 => [\'OECF','OECFNames'] },
- 'oecfrows' => { 398 => [\'OECF','OECFRows'] },
- 'oecfvalues' => { 398 => [\'OECF','OECFValues'] },
- 'offsaledate' => { 409 => 'offSaleDate' },
- 'offsaledatea-platform' => { 409 => [\'offSaleDate','offSaleDateA-platform'] },
- 'offsaledatedate' => { 409 => [\'offSaleDate','offSaleDateDate'] },
+ 'oecfcolumns' => { 399 => [\'OECF','OECFColumns'] },
+ 'oecfnames' => { 399 => [\'OECF','OECFNames'] },
+ 'oecfrows' => { 399 => [\'OECF','OECFRows'] },
+ 'oecfvalues' => { 399 => [\'OECF','OECFValues'] },
+ 'offsaledate' => { 410 => 'offSaleDate' },
+ 'offsaledatea-platform' => { 410 => [\'offSaleDate','offSaleDateA-platform'] },
+ 'offsaledatedate' => { 410 => [\'offSaleDate','offSaleDateDate'] },
'offsetschema' => { 104 => 0xea1d },
- 'okbutton' => { 241 => '15.1', 245 => '16.1' },
+ 'okbutton' => { 242 => '15.1', 246 => '16.1' },
'oldsubfiletype' => { 104 => 0xff },
- 'olympusimageheight' => { 252 => 0x102f },
- 'olympusimagewidth' => { 252 => 0x102e },
- 'onetouchwb' => { 252 => 0x302 },
- 'onsaledate' => { 409 => 'onSaleDate' },
- 'onsaledatea-platform' => { 409 => [\'onSaleDate','onSaleDateA-platform'] },
- 'onsaledatedate' => { 409 => [\'onSaleDate','onSaleDateDate'] },
- 'onsaleday' => { 409 => 'onSaleDay' },
- 'onsaledaya-platform' => { 409 => [\'onSaleDay','onSaleDayA-platform'] },
- 'onsaledayday' => { 409 => [\'onSaleDay','onSaleDayDay'] },
+ 'olympusimageheight' => { 253 => 0x102f },
+ 'olympusimagewidth' => { 253 => 0x102e },
+ 'onetouchwb' => { 253 => 0x302 },
+ 'onsaledate' => { 410 => 'onSaleDate' },
+ 'onsaledatea-platform' => { 410 => [\'onSaleDate','onSaleDateA-platform'] },
+ 'onsaledatedate' => { 410 => [\'onSaleDate','onSaleDateDate'] },
+ 'onsaleday' => { 410 => 'onSaleDay' },
+ 'onsaledaya-platform' => { 410 => [\'onSaleDay','onSaleDayA-platform'] },
+ 'onsaledayday' => { 410 => [\'onSaleDay','onSaleDayDay'] },
'opticalzoom' => { 122 => 0xfa3d, 124 => [0x6006,0xf006], 125 => 0x1000, 126 => 0xf, 129 => 0x1e, 141 => 'OpticalZoom' },
'opticalzoomcode' => { 66 => 0xa },
- 'opticalzoommode' => { 267 => 0x34 },
- 'opticalzoomon' => { 331 => 0x219 },
- 'optionenddate' => { 412 => 'optionEndDate' },
- 'opto-electricconvfactor' => { 398 => 'OECF' },
+ 'opticalzoommode' => { 268 => 0x34 },
+ 'opticalzoomon' => { 332 => 0x219 },
+ 'optionenddate' => { 413 => 'optionEndDate' },
+ 'opto-electricconvfactor' => { 399 => 'OECF' },
'orangehsl' => { 90 => 0x20911 },
'ordernumber' => { 109 => 0x8002 },
- 'organisationinimagecode' => { 404 => 'OrganisationInImageCode' },
- 'organisationinimagename' => { 404 => 'OrganisationInImageName' },
- 'organization' => { 409 => 'organization' },
- 'orientation' => { 104 => 0x112, 271 => 0x112, 408 => 'orientation', 415 => 'Orientation' },
- 'orientation2' => { 355 => [0x28,0x2e] },
+ 'organisationinimagecode' => { 405 => 'OrganisationInImageCode' },
+ 'organisationinimagename' => { 405 => 'OrganisationInImageName' },
+ 'organization' => { 410 => 'organization' },
+ 'orientation' => { 104 => 0x112, 272 => 0x112, 409 => 'orientation', 416 => 'Orientation' },
+ 'orientation2' => { 356 => [0x28,0x2e] },
'orientationlinkedafpoint' => { 72 => 0x516 },
'originalbestqualitysize' => { 104 => 0xc792 },
'originaldecisiondata' => { 101 => 'OriginalDecisionData' },
'originaldecisiondataoffset' => { 54 => 0x83 },
'originaldefaultcropsize' => { 104 => 0xc793 },
'originaldefaultfinalsize' => { 104 => 0xc791 },
- 'originaldirectory' => { 265 => 0x408 },
- 'originaldocumentid' => { 420 => 'OriginalDocumentID' },
- 'originalfilename' => { 85 => 0x816, 118 => 0x3e9, 130 => 0x20, 265 => 0x407, 384 => 'OriginalFilename' },
+ 'originaldirectory' => { 266 => 0x408 },
+ 'originaldocumentid' => { 421 => 'OriginalDocumentID' },
+ 'originalfilename' => { 85 => 0x816, 118 => 0x3e9, 130 => 0x20, 266 => 0x407, 385 => 'OriginalFilename' },
'originalimageheight' => { 68 => 0xc, 108 => 0x1 },
'originalimagewidth' => { 68 => 0xb, 108 => 0x0 },
'originalrawfiledata' => { 104 => 0xc68c },
@@ -3297,108 +3298,108 @@ my %tagLookup = (
'originalrawfilename' => { 104 => 0xc68b },
'originaltransmissionreference' => { 112 => 0x67 },
'originatingprogram' => { 112 => 0x41 },
- 'originplatform' => { 409 => 'originPlatform' },
- 'os' => { 396 => 'os' },
- 'otherconditions' => { 407 => 'OtherConditions' },
- 'otherconstraints' => { 407 => 'OtherConstraints' },
+ 'originplatform' => { 410 => 'originPlatform' },
+ 'os' => { 397 => 'os' },
+ 'otherconditions' => { 408 => 'OtherConditions' },
+ 'otherconstraints' => { 408 => 'OtherConstraints' },
'otherimage' => { 101 => 'OtherImage' },
- 'otherimageinfo' => { 407 => 'OtherImageInfo' },
+ 'otherimageinfo' => { 408 => 'OtherImageInfo' },
'otherimagelength' => { 104 => 0x202 },
'otherimagestart' => { 104 => 0x201 },
- 'otherlicensedocuments' => { 407 => 'OtherLicenseDocuments' },
- 'otherlicenseinfo' => { 407 => 'OtherLicenseInfo' },
- 'otherlicenserequirements' => { 407 => 'OtherLicenseRequirements' },
- 'outcue' => { 419 => 'outCue' },
- 'outcuescale' => { 419 => [\'outCue','outCueScale'] },
- 'outcuevalue' => { 419 => [\'outCue','outCueValue'] },
- 'outputimageheight' => { 170 => 0x3 },
- 'outputimagewidth' => { 170 => 0x2 },
+ 'otherlicensedocuments' => { 408 => 'OtherLicenseDocuments' },
+ 'otherlicenseinfo' => { 408 => 'OtherLicenseInfo' },
+ 'otherlicenserequirements' => { 408 => 'OtherLicenseRequirements' },
+ 'outcue' => { 420 => 'outCue' },
+ 'outcuescale' => { 420 => [\'outCue','outCueScale'] },
+ 'outcuevalue' => { 420 => [\'outCue','outCueValue'] },
+ 'outputimageheight' => { 171 => 0x3 },
+ 'outputimagewidth' => { 171 => 0x2 },
'outputprofile' => { 118 => 0x138b },
- 'outputresolution' => { 170 => 0x4 },
- 'owner' => { 423 => 'Owner' },
+ 'outputresolution' => { 171 => 0x4 },
+ 'owner' => { 424 => 'Owner' },
'ownerid' => { 112 => 0xbc },
- 'ownername' => { 14 => 0x10f, 54 => 0x9, 85 => 0x810, 104 => [0xa430,0xfde8], 134 => 'OwnerName', 390 => 'OwnerName', 399 => 'CameraOwnerName' },
+ 'ownername' => { 14 => 0x10f, 54 => 0x9, 85 => 0x810, 104 => [0xa430,0xfde8], 134 => 'OwnerName', 391 => 'OwnerName', 400 => 'CameraOwnerName' },
'padding' => { 104 => 0xea1c },
- 'pagecount' => { 409 => 'pageCount' },
- 'pageimage' => { 417 => [\'PageInfo','PageInfoImage'] },
- 'pageimageformat' => { 417 => [\'PageInfo','PageInfoFormat'] },
- 'pageimageheight' => { 417 => [\'PageInfo','PageInfoHeight'] },
- 'pageimagepagenumber' => { 417 => [\'PageInfo','PageInfoPageNumber'] },
- 'pageimagewidth' => { 417 => [\'PageInfo','PageInfoWidth'] },
- 'pageinfo' => { 417 => 'PageInfo' },
+ 'pagecount' => { 410 => 'pageCount' },
+ 'pageimage' => { 418 => [\'PageInfo','PageInfoImage'] },
+ 'pageimageformat' => { 418 => [\'PageInfo','PageInfoFormat'] },
+ 'pageimageheight' => { 418 => [\'PageInfo','PageInfoHeight'] },
+ 'pageimagepagenumber' => { 418 => [\'PageInfo','PageInfoPageNumber'] },
+ 'pageimagewidth' => { 418 => [\'PageInfo','PageInfoWidth'] },
+ 'pageinfo' => { 418 => 'PageInfo' },
'pagename' => { 104 => 0x11d },
'pagenumber' => { 104 => 0x129 },
- 'pageprogressiondirection' => { 409 => 'pageProgressionDirection' },
- 'pagerange' => { 409 => 'pageRange' },
- 'paintbasedcorrectionmasks' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'] },
- 'paintbasedcorrections' => { 394 => 'PaintBasedCorrections' },
- 'paintcorrectionactive' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'] },
- 'paintcorrectionamount' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'] },
- 'paintcorrectionbrightness' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'] },
- 'paintcorrectionclarity' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'] },
- 'paintcorrectionclarity2012' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'] },
- 'paintcorrectioncontrast' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'] },
- 'paintcorrectioncontrast2012' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'] },
- 'paintcorrectiondefringe' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'] },
- 'paintcorrectionexposure' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'] },
- 'paintcorrectionexposure2012' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'] },
- 'paintcorrectionhighlights2012' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'] },
- 'paintcorrectionhue' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'] },
- 'paintcorrectionluminancenoise' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'] },
- 'paintcorrectionmaskalpha' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'] },
- 'paintcorrectionmaskangle' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'] },
- 'paintcorrectionmaskbottom' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'] },
- 'paintcorrectionmaskcentervalue' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'] },
- 'paintcorrectionmaskcenterweight' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'] },
- 'paintcorrectionmaskdabs' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'] },
- 'paintcorrectionmaskfeather' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'] },
- 'paintcorrectionmaskflipped' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'] },
- 'paintcorrectionmaskflow' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'] },
- 'paintcorrectionmaskfullx' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'] },
- 'paintcorrectionmaskfully' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'] },
- 'paintcorrectionmaskleft' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'] },
- 'paintcorrectionmaskmidpoint' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'] },
- 'paintcorrectionmaskperimetervalue' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'] },
- 'paintcorrectionmaskradius' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'] },
- 'paintcorrectionmaskright' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'] },
- 'paintcorrectionmaskroundness' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'] },
- 'paintcorrectionmasksizex' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'] },
- 'paintcorrectionmasksizey' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'] },
- 'paintcorrectionmasktop' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'] },
- 'paintcorrectionmaskvalue' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'] },
- 'paintcorrectionmaskversion' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'] },
- 'paintcorrectionmaskwhat' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'] },
- 'paintcorrectionmaskx' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'] },
- 'paintcorrectionmasky' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'] },
- 'paintcorrectionmaskzerox' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'] },
- 'paintcorrectionmaskzeroy' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'] },
- 'paintcorrectionmoire' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'] },
- 'paintcorrectionsaturation' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation','PaintBasedCorrectionsLocalToningSaturation'] },
- 'paintcorrectionshadows2012' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'] },
- 'paintcorrectionsharpness' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'] },
- 'paintcorrectiontemperature' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'] },
- 'paintcorrectiontint' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'] },
- 'paintcorrectionwhat' => { 394 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'] },
- 'panasonicexifversion' => { 267 => 0x26 },
- 'panasonicimageheight' => { 267 => 0x4c },
- 'panasonicimagewidth' => { 267 => 0x4b },
- 'panasonicrawversion' => { 271 => 0x1 },
+ 'pageprogressiondirection' => { 410 => 'pageProgressionDirection' },
+ 'pagerange' => { 410 => 'pageRange' },
+ 'paintbasedcorrectionmasks' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasks'] },
+ 'paintbasedcorrections' => { 395 => 'PaintBasedCorrections' },
+ 'paintcorrectionactive' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionActive'] },
+ 'paintcorrectionamount' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionAmount'] },
+ 'paintcorrectionbrightness' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalBrightness'] },
+ 'paintcorrectionclarity' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity'] },
+ 'paintcorrectionclarity2012' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalClarity2012'] },
+ 'paintcorrectioncontrast' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast'] },
+ 'paintcorrectioncontrast2012' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalContrast2012'] },
+ 'paintcorrectiondefringe' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalDefringe'] },
+ 'paintcorrectionexposure' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure'] },
+ 'paintcorrectionexposure2012' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalExposure2012'] },
+ 'paintcorrectionhighlights2012' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalHighlights2012'] },
+ 'paintcorrectionhue' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalToningHue'] },
+ 'paintcorrectionluminancenoise' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalLuminanceNoise'] },
+ 'paintcorrectionmaskalpha' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAlpha'] },
+ 'paintcorrectionmaskangle' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksAngle'] },
+ 'paintcorrectionmaskbottom' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksBottom'] },
+ 'paintcorrectionmaskcentervalue' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterValue'] },
+ 'paintcorrectionmaskcenterweight' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksCenterWeight'] },
+ 'paintcorrectionmaskdabs' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksDabs'] },
+ 'paintcorrectionmaskfeather' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFeather'] },
+ 'paintcorrectionmaskflipped' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlipped'] },
+ 'paintcorrectionmaskflow' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFlow'] },
+ 'paintcorrectionmaskfullx' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullX'] },
+ 'paintcorrectionmaskfully' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksFullY'] },
+ 'paintcorrectionmaskleft' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksLeft'] },
+ 'paintcorrectionmaskmidpoint' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMidpoint'] },
+ 'paintcorrectionmaskperimetervalue' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksPerimeterValue'] },
+ 'paintcorrectionmaskradius' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRadius'] },
+ 'paintcorrectionmaskright' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRight'] },
+ 'paintcorrectionmaskroundness' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksRoundness'] },
+ 'paintcorrectionmasksizex' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeX'] },
+ 'paintcorrectionmasksizey' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksSizeY'] },
+ 'paintcorrectionmasktop' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksTop'] },
+ 'paintcorrectionmaskvalue' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksMaskValue'] },
+ 'paintcorrectionmaskversion' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksVersion'] },
+ 'paintcorrectionmaskwhat' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksWhat'] },
+ 'paintcorrectionmaskx' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksX'] },
+ 'paintcorrectionmasky' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksY'] },
+ 'paintcorrectionmaskzerox' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroX'] },
+ 'paintcorrectionmaskzeroy' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsCorrectionMasksZeroY'] },
+ 'paintcorrectionmoire' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalMoire'] },
+ 'paintcorrectionsaturation' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSaturation','PaintBasedCorrectionsLocalToningSaturation'] },
+ 'paintcorrectionshadows2012' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalShadows2012'] },
+ 'paintcorrectionsharpness' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalSharpness'] },
+ 'paintcorrectiontemperature' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTemperature'] },
+ 'paintcorrectiontint' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsLocalTint'] },
+ 'paintcorrectionwhat' => { 395 => [\'PaintBasedCorrections','PaintBasedCorrectionsWhat'] },
+ 'panasonicexifversion' => { 268 => 0x26 },
+ 'panasonicimageheight' => { 268 => 0x4c },
+ 'panasonicimagewidth' => { 268 => 0x4b },
+ 'panasonicrawversion' => { 272 => 0x1 },
'panasonictitle' => { 104 => 0xc6d2 },
'panasonictitle2' => { 104 => 0xc6d3 },
- 'panoramacropbottom' => { 356 => 0x7 },
- 'panoramacropleft' => { 356 => 0x4 },
- 'panoramacropright' => { 356 => 0x6 },
- 'panoramacroptop' => { 356 => 0x5 },
- 'panoramadirection' => { 62 => 0x5, 356 => 0x3 },
- 'panoramaframeheight' => { 356 => 0x9 },
+ 'panoramacropbottom' => { 357 => 0x7 },
+ 'panoramacropleft' => { 357 => 0x4 },
+ 'panoramacropright' => { 357 => 0x6 },
+ 'panoramacroptop' => { 357 => 0x5 },
+ 'panoramadirection' => { 62 => 0x5, 357 => 0x3 },
+ 'panoramaframeheight' => { 357 => 0x9 },
'panoramaframenumber' => { 62 => 0x2 },
- 'panoramaframewidth' => { 356 => 0x8 },
- 'panoramafullheight' => { 356 => 0x2 },
- 'panoramafullwidth' => { 356 => 0x1 },
- 'panoramamode' => { 120 => 0x3c, 247 => 0x601 },
- 'panoramasize3d' => { 341 => 0x38 },
- 'panoramasourceheight' => { 356 => 0xb },
- 'panoramasourcewidth' => { 356 => 0xa },
+ 'panoramaframewidth' => { 357 => 0x8 },
+ 'panoramafullheight' => { 357 => 0x2 },
+ 'panoramafullwidth' => { 357 => 0x1 },
+ 'panoramamode' => { 120 => 0x3c, 248 => 0x601 },
+ 'panoramasize3d' => { 342 => 0x38 },
+ 'panoramasourceheight' => { 357 => 0xb },
+ 'panoramasourcewidth' => { 357 => 0xa },
'panoramicstitchcameramotion' => { 152 => 'PanoramicStitchCameraMotion', 153 => 0x1 },
'panoramicstitchmaptype' => { 152 => 'PanoramicStitchMapType', 153 => 0x2 },
'panoramicstitchphi0' => { 152 => 'PanoramicStitchPhi0', 153 => 0x5 },
@@ -3406,63 +3407,63 @@ my %tagLookup = (
'panoramicstitchtheta0' => { 152 => 'PanoramicStitchTheta0', 153 => 0x3 },
'panoramicstitchtheta1' => { 152 => 'PanoramicStitchTheta1', 153 => 0x4 },
'panoramicstitchversion' => { 153 => 0x0 },
- 'pantry' => { 420 => 'Pantry' },
- 'parallax' => { 109 => 0xb211, 246 => 0x28 },
- 'parametricdarks' => { 394 => 'ParametricDarks' },
- 'parametrichighlights' => { 394 => 'ParametricHighlights' },
- 'parametrichighlightsplit' => { 394 => 'ParametricHighlightSplit' },
- 'parametriclights' => { 394 => 'ParametricLights' },
- 'parametricmidtonesplit' => { 394 => 'ParametricMidtoneSplit' },
- 'parametricshadows' => { 394 => 'ParametricShadows' },
- 'parametricshadowsplit' => { 394 => 'ParametricShadowSplit' },
- 'parentmeid' => { 384 => 'ParentMEID' },
- 'parentreference1' => { 402 => [\'TagStructure','TagStructureParentReference'] },
- 'parentreference2' => { 402 => [\'TagStructure','TagStructureSubLabelsParentReference'] },
- 'parentreference3' => { 402 => [\'TagStructure','TagStructureSubLabelsSubLabelsParentReference'] },
- 'parentreference4' => { 402 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsParentReference'] },
- 'parentreference5' => { 402 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] },
- 'parentreference6' => { 402 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] },
- 'partofcompilation' => { 419 => 'partOfCompilation' },
- 'patientbirthdate' => { 381 => 'PatientDOB' },
- 'patientid' => { 381 => 'PatientID' },
- 'patientname' => { 381 => 'PatientName' },
- 'patientsex' => { 381 => 'PatientSex' },
- 'pdfversion' => { 405 => 'PDFVersion' },
- 'pentaximagesize' => { 300 => 0x9 },
- 'pentaxmodelid' => { 280 => 0x0, 300 => 0x5 },
- 'pentaxmodeltype' => { 300 => 0x1 },
- 'pentaxversion' => { 300 => 0x0 },
- 'people' => { 382 => 'People', 386 => 'People' },
+ 'pantry' => { 421 => 'Pantry' },
+ 'parallax' => { 109 => 0xb211, 247 => 0x28 },
+ 'parametricdarks' => { 395 => 'ParametricDarks' },
+ 'parametrichighlights' => { 395 => 'ParametricHighlights' },
+ 'parametrichighlightsplit' => { 395 => 'ParametricHighlightSplit' },
+ 'parametriclights' => { 395 => 'ParametricLights' },
+ 'parametricmidtonesplit' => { 395 => 'ParametricMidtoneSplit' },
+ 'parametricshadows' => { 395 => 'ParametricShadows' },
+ 'parametricshadowsplit' => { 395 => 'ParametricShadowSplit' },
+ 'parentmeid' => { 385 => 'ParentMEID' },
+ 'parentreference1' => { 403 => [\'TagStructure','TagStructureParentReference'] },
+ 'parentreference2' => { 403 => [\'TagStructure','TagStructureSubLabelsParentReference'] },
+ 'parentreference3' => { 403 => [\'TagStructure','TagStructureSubLabelsSubLabelsParentReference'] },
+ 'parentreference4' => { 403 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsParentReference'] },
+ 'parentreference5' => { 403 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] },
+ 'parentreference6' => { 403 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsParentReference'] },
+ 'partofcompilation' => { 420 => 'partOfCompilation' },
+ 'patientbirthdate' => { 382 => 'PatientDOB' },
+ 'patientid' => { 382 => 'PatientID' },
+ 'patientname' => { 382 => 'PatientName' },
+ 'patientsex' => { 382 => 'PatientSex' },
+ 'pdfversion' => { 406 => 'PDFVersion' },
+ 'pentaximagesize' => { 301 => 0x9 },
+ 'pentaxmodelid' => { 281 => 0x0, 301 => 0x5 },
+ 'pentaxmodeltype' => { 301 => 0x1 },
+ 'pentaxversion' => { 301 => 0x0 },
+ 'people' => { 383 => 'People', 387 => 'People' },
'perchannelblacklevel' => { 36 => 0xc4, 37 => [0x2b4,0x2cb,0x2cf], 38 => 0x108, 39 => 0x1df, 40 => [0x1f8,0x2d8], 41 => 0x30a },
- 'peripheralillumcentralradius' => { 379 => 0x8030 },
- 'peripheralillumcentralvalue' => { 379 => 0x8031 },
+ 'peripheralillumcentralradius' => { 380 => 0x8030 },
+ 'peripheralillumcentralvalue' => { 380 => 0x8031 },
'peripheralillumination' => { 90 => 0x20702, 96 => 0x68 },
- 'peripheralilluminationcorr' => { 53 => 0x1, 290 => 0x2 },
+ 'peripheralilluminationcorr' => { 53 => 0x1, 291 => 0x2 },
'peripheralilluminationon' => { 90 => '0x20702.0', 96 => 0x64 },
- 'peripheralillumperiphvalue' => { 379 => 0x8032 },
+ 'peripheralillumperiphvalue' => { 380 => 0x8032 },
'peripherallighting' => { 68 => 0x2 },
'peripherallightingsetting' => { 69 => 0x5 },
'peripherallightingvalue' => { 68 => 0x6 },
- 'permissions' => { 412 => 'permissions' },
- 'permits' => { 391 => 'permits' },
- 'person' => { 409 => 'person' },
- 'personality' => { 384 => 'Personality' },
- 'personinimage' => { 404 => 'PersonInImage' },
- 'personinimagecharacteristic' => { 404 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristic'] },
- 'personinimagecvtermcvid' => { 404 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvId'] },
- 'personinimagecvtermid' => { 404 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermId'] },
- 'personinimagecvtermname' => { 404 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermName'] },
- 'personinimagecvtermrefinedabout' => { 404 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermRefinedAbout'] },
- 'personinimagedescription' => { 404 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonDescription'] },
- 'personinimageid' => { 404 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonId'] },
- 'personinimagename' => { 404 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonName'] },
- 'personinimagewdetails' => { 404 => 'PersonInImageWDetails' },
- 'perspectiveaspect' => { 394 => 'PerspectiveAspect' },
- 'perspectivehorizontal' => { 394 => 'PerspectiveHorizontal' },
- 'perspectiverotate' => { 394 => 'PerspectiveRotate' },
- 'perspectivescale' => { 394 => 'PerspectiveScale' },
- 'perspectiveupright' => { 394 => 'PerspectiveUpright' },
- 'perspectivevertical' => { 394 => 'PerspectiveVertical' },
+ 'permissions' => { 413 => 'permissions' },
+ 'permits' => { 392 => 'permits' },
+ 'person' => { 410 => 'person' },
+ 'personality' => { 385 => 'Personality' },
+ 'personinimage' => { 405 => 'PersonInImage' },
+ 'personinimagecharacteristic' => { 405 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristic'] },
+ 'personinimagecvtermcvid' => { 405 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvId'] },
+ 'personinimagecvtermid' => { 405 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermId'] },
+ 'personinimagecvtermname' => { 405 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermName'] },
+ 'personinimagecvtermrefinedabout' => { 405 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonCharacteristicCvTermRefinedAbout'] },
+ 'personinimagedescription' => { 405 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonDescription'] },
+ 'personinimageid' => { 405 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonId'] },
+ 'personinimagename' => { 405 => [\'PersonInImageWDetails','PersonInImageWDetailsPersonName'] },
+ 'personinimagewdetails' => { 405 => 'PersonInImageWDetails' },
+ 'perspectiveaspect' => { 395 => 'PerspectiveAspect' },
+ 'perspectivehorizontal' => { 395 => 'PerspectiveHorizontal' },
+ 'perspectiverotate' => { 395 => 'PerspectiveRotate' },
+ 'perspectivescale' => { 395 => 'PerspectiveScale' },
+ 'perspectiveupright' => { 395 => 'PerspectiveUpright' },
+ 'perspectivevertical' => { 395 => 'PerspectiveVertical' },
'pf0customfuncregistration' => { 80 => 0x1 },
'pf10retainprogramshift' => { 80 => 0xb },
'pf13drivepriority' => { 80 => 0xe },
@@ -3516,70 +3517,70 @@ my %tagLookup = (
'pf8bracketshots' => { 79 => 0x8 },
'pf8setbracketshots' => { 80 => 0x9 },
'pf9changebracketsequence' => { 80 => 0xa },
- 'phasedetectaf' => { 167 => 0x6 },
+ 'phasedetectaf' => { 168 => 0x6 },
'phonenumber' => { 135 => 'Phone' },
'photoeffect' => { 30 => 0x28 },
- 'photoeffecthistoryxml' => { 227 => 0xe9651831 },
- 'photoeffects' => { 227 => 0xab5eca5e },
- 'photoeffectsblue' => { 229 => 0x8 },
- 'photoeffectsgreen' => { 229 => 0x6 },
- 'photoeffectsred' => { 229 => 0x4 },
- 'photoeffectstype' => { 229 => 0x0 },
- 'photographicsensitivity' => { 399 => 'PhotographicSensitivity' },
- 'photoinfoplayback' => { 234 => '17.6', 240 => '33.6' },
- 'photometricinterpretation' => { 104 => 0x106, 415 => 'PhotometricInterpretation' },
- 'photoshopbgrthumbnail' => { 312 => 0x409 },
- 'photoshopquality' => { 311 => 0x0 },
- 'photoshopthumbnail' => { 312 => 0x40c },
- 'photostyle' => { 267 => 0x89 },
- 'picklabel' => { 397 => 'PickLabel' },
- 'pictinfo' => { 331 => 0x208 },
- 'picturecontrol' => { 227 => 0xe2173c47 },
- 'picturecontrolactive' => { 230 => 0x0 },
- 'picturecontroladjust' => { 193 => 0x30 },
- 'picturecontrolbase' => { 193 => 0x18 },
- 'picturecontroldata' => { 191 => [0xbd,0x23] },
- 'picturecontrolmode' => { 230 => 0x13 },
- 'picturecontrolname' => { 193 => 0x4 },
- 'picturecontrolquickadjust' => { 193 => 0x31 },
- 'pictureeffect' => { 351 => 0x200e },
- 'pictureeffect2' => { 358 => 0x1163, 359 => 0x1167, 360 => 0x1143, 361 => 0x11bf, 362 => 0x119b, 363 => 0x1053, 364 => 0x24b, 365 => 0x24b, 375 => 0x46 },
+ 'photoeffecthistoryxml' => { 228 => 0xe9651831 },
+ 'photoeffects' => { 228 => 0xab5eca5e },
+ 'photoeffectsblue' => { 230 => 0x8 },
+ 'photoeffectsgreen' => { 230 => 0x6 },
+ 'photoeffectsred' => { 230 => 0x4 },
+ 'photoeffectstype' => { 230 => 0x0 },
+ 'photographicsensitivity' => { 400 => 'PhotographicSensitivity' },
+ 'photoinfoplayback' => { 235 => '17.6', 241 => '33.6' },
+ 'photometricinterpretation' => { 104 => 0x106, 416 => 'PhotometricInterpretation' },
+ 'photoshopbgrthumbnail' => { 313 => 0x409 },
+ 'photoshopquality' => { 312 => 0x0 },
+ 'photoshopthumbnail' => { 313 => 0x40c },
+ 'photostyle' => { 268 => 0x89 },
+ 'picklabel' => { 398 => 'PickLabel' },
+ 'pictinfo' => { 332 => 0x208 },
+ 'picturecontrol' => { 228 => 0xe2173c47 },
+ 'picturecontrolactive' => { 231 => 0x0 },
+ 'picturecontroladjust' => { 194 => 0x30 },
+ 'picturecontrolbase' => { 194 => 0x18 },
+ 'picturecontroldata' => { 192 => [0xbd,0x23] },
+ 'picturecontrolmode' => { 231 => 0x13 },
+ 'picturecontrolname' => { 194 => 0x4 },
+ 'picturecontrolquickadjust' => { 194 => 0x31 },
+ 'pictureeffect' => { 352 => 0x200e },
+ 'pictureeffect2' => { 359 => 0x1163, 360 => 0x1167, 361 => 0x1143, 362 => 0x11bf, 363 => 0x119b, 364 => 0x1053, 365 => 0x24b, 366 => 0x24b, 376 => 0x46 },
'picturefinish' => { 157 => 0x71 },
- 'picturemode' => { 109 => 0x1031, 247 => 0x520, 300 => [0xb,0x33], 332 => 0x3d },
- 'picturemode2' => { 281 => 0x0 },
- 'picturemodebwfilter' => { 247 => 0x525 },
- 'picturemodecontrast' => { 247 => 0x523 },
- 'picturemodeeffect' => { 247 => 0x52d },
- 'picturemodehue' => { 247 => 0x522 },
- 'picturemodesaturation' => { 247 => 0x521 },
- 'picturemodesharpness' => { 247 => 0x524 },
- 'picturemodetone' => { 247 => 0x526 },
- 'pictureprofile' => { 358 => [0x115e,0x115f], 359 => [0x1162,0x1163], 360 => [0x113e,0x113f], 361 => [0x11ba,0x11bb], 362 => [0x1196,0x1197], 363 => [0x104e,0x104f], 364 => [0x246,0x247], 365 => [0x246,0x247] },
+ 'picturemode' => { 109 => 0x1031, 248 => 0x520, 301 => [0xb,0x33], 333 => 0x3d },
+ 'picturemode2' => { 282 => 0x0 },
+ 'picturemodebwfilter' => { 248 => 0x525 },
+ 'picturemodecontrast' => { 248 => 0x523 },
+ 'picturemodeeffect' => { 248 => 0x52d },
+ 'picturemodehue' => { 248 => 0x522 },
+ 'picturemodesaturation' => { 248 => 0x521 },
+ 'picturemodesharpness' => { 248 => 0x524 },
+ 'picturemodetone' => { 248 => 0x526 },
+ 'pictureprofile' => { 359 => [0x115e,0x115f], 360 => [0x1162,0x1163], 361 => [0x113e,0x113f], 362 => [0x11ba,0x11bb], 363 => [0x1196,0x1197], 364 => [0x104e,0x104f], 365 => [0x246,0x247], 366 => [0x246,0x247] },
'picturestyle' => { 7 => [0x4b,0x51], 8 => 0xf4, 9 => 0x6c, 10 => 0x86, 11 => 0x73, 15 => 0xab, 16 => 0xa7, 17 => 0xb0, 18 => 0x6c, 19 => 0xa7, 20 => 0xf4, 21 => 0xb3, 23 => 0xf4, 24 => 0xfa, 64 => 0xa, 90 => 0x20301, 96 => 0x2 },
- 'picturewizard' => { 329 => 0x21 },
- 'picturewizardcolor' => { 328 => 0x1 },
- 'picturewizardcontrast' => { 328 => 0x4 },
- 'picturewizardmode' => { 328 => 0x0 },
- 'picturewizardsaturation' => { 328 => 0x2 },
- 'picturewizardsharpness' => { 328 => 0x3 },
+ 'picturewizard' => { 330 => 0x21 },
+ 'picturewizardcolor' => { 329 => 0x1 },
+ 'picturewizardcontrast' => { 329 => 0x4 },
+ 'picturewizardmode' => { 329 => 0x0 },
+ 'picturewizardsaturation' => { 329 => 0x2 },
+ 'picturewizardsharpness' => { 329 => 0x3 },
'pipelineversion' => { 152 => 'PipelineVersion' },
- 'pitch' => { 235 => '4.1', 244 => '4.1' },
- 'pitchangle' => { 207 => 0x350f, 247 => 0x904, 267 => 0x91, 299 => 0x2 },
- 'pixelshiftresolution' => { 301 => 0x0 },
- 'pixelsperunitx' => { 258 => 0x0 },
- 'pixelsperunity' => { 258 => 0x4 },
- 'pixelunits' => { 258 => 0x8 },
- 'planarconfiguration' => { 104 => 0x11c, 415 => 'PlanarConfiguration' },
- 'platenames' => { 424 => 'PlateNames' },
- 'platform' => { 409 => 'platform' },
- 'playbackmenustime' => { 237 => '20.1', 238 => '21.1', 239 => '21.1' },
- 'playbackmonitorofftime' => { 234 => '25.2', 235 => '36.1', 240 => '8.1', 241 => '35.1', 244 => '36.1', 245 => '21.1' },
- 'playbackzoom' => { 235 => '37.1' },
+ 'pitch' => { 236 => '4.1', 245 => '4.1' },
+ 'pitchangle' => { 208 => 0x350f, 248 => 0x904, 268 => 0x91, 300 => 0x2 },
+ 'pixelshiftresolution' => { 302 => 0x0 },
+ 'pixelsperunitx' => { 259 => 0x0 },
+ 'pixelsperunity' => { 259 => 0x4 },
+ 'pixelunits' => { 259 => 0x8 },
+ 'planarconfiguration' => { 104 => 0x11c, 416 => 'PlanarConfiguration' },
+ 'platenames' => { 425 => 'PlateNames' },
+ 'platform' => { 410 => 'platform' },
+ 'playbackmenustime' => { 238 => '20.1', 239 => '21.1', 240 => '21.1' },
+ 'playbackmonitorofftime' => { 235 => '25.2', 236 => '36.1', 241 => '8.1', 242 => '35.1', 245 => '36.1', 246 => '21.1' },
+ 'playbackzoom' => { 236 => '37.1' },
'playdisplay' => { 159 => 0x4e },
- 'plusversion' => { 407 => 'Version' },
- 'pmversion' => { 310 => 'PMVersion' },
- 'pngwarning' => { 259 => 'Warning' },
- 'poilevel' => { 190 => 0x8 },
+ 'plusversion' => { 408 => 'Version' },
+ 'pmversion' => { 311 => 'PMVersion' },
+ 'pngwarning' => { 260 => 'Warning' },
+ 'poilevel' => { 191 => 0x8 },
'portraitoutputhighlightpoint' => { 96 => 0x1d },
'portraitoutputshadowpoint' => { 96 => 0x1e },
'portraitrawcolortone' => { 96 => 0x16 },
@@ -3595,76 +3596,76 @@ my %tagLookup = (
'portraitunsharpmaskfineness' => { 96 => 0x9a },
'portraitunsharpmaskstrength' => { 96 => 0x98 },
'portraitunsharpmaskthreshold' => { 96 => 0x9c },
- 'poseheadingdegrees' => { 383 => 'PoseHeadingDegrees' },
- 'posepitchdegrees' => { 383 => 'PosePitchDegrees' },
- 'poserolldegrees' => { 383 => 'PoseRollDegrees' },
- 'positiondescriptor' => { 408 => 'positionDescriptor' },
+ 'poseheadingdegrees' => { 384 => 'PoseHeadingDegrees' },
+ 'posepitchdegrees' => { 384 => 'PosePitchDegrees' },
+ 'poserolldegrees' => { 384 => 'PoseRollDegrees' },
+ 'positiondescriptor' => { 409 => 'positionDescriptor' },
'postalcode' => { 139 => 'PostalCode' },
- 'postcropvignetteamount' => { 394 => 'PostCropVignetteAmount' },
- 'postcropvignettefeather' => { 394 => 'PostCropVignetteFeather' },
- 'postcropvignettehighlightcontrast' => { 394 => 'PostCropVignetteHighlightContrast' },
- 'postcropvignettemidpoint' => { 394 => 'PostCropVignetteMidpoint' },
- 'postcropvignetteroundness' => { 394 => 'PostCropVignetteRoundness' },
- 'postcropvignettestyle' => { 394 => 'PostCropVignetteStyle' },
- 'potentialface1position' => { 349 => 0xb },
- 'potentialface2position' => { 349 => 0x15 },
- 'potentialface3position' => { 349 => 0x1f },
- 'potentialface4position' => { 349 => 0x29 },
- 'potentialface5position' => { 349 => 0x33 },
- 'potentialface6position' => { 349 => 0x3d },
- 'potentialface7position' => { 349 => 0x47 },
- 'potentialface8position' => { 349 => 0x51 },
- 'powersource' => { 279 => '0.1' },
- 'poweruptime' => { 191 => 0xb6 },
- 'precaptureframes' => { 252 => 0x300 },
+ 'postcropvignetteamount' => { 395 => 'PostCropVignetteAmount' },
+ 'postcropvignettefeather' => { 395 => 'PostCropVignetteFeather' },
+ 'postcropvignettehighlightcontrast' => { 395 => 'PostCropVignetteHighlightContrast' },
+ 'postcropvignettemidpoint' => { 395 => 'PostCropVignetteMidpoint' },
+ 'postcropvignetteroundness' => { 395 => 'PostCropVignetteRoundness' },
+ 'postcropvignettestyle' => { 395 => 'PostCropVignetteStyle' },
+ 'potentialface1position' => { 350 => 0xb },
+ 'potentialface2position' => { 350 => 0x15 },
+ 'potentialface3position' => { 350 => 0x1f },
+ 'potentialface4position' => { 350 => 0x29 },
+ 'potentialface5position' => { 350 => 0x33 },
+ 'potentialface6position' => { 350 => 0x3d },
+ 'potentialface7position' => { 350 => 0x47 },
+ 'potentialface8position' => { 350 => 0x51 },
+ 'powersource' => { 280 => '0.1' },
+ 'poweruptime' => { 192 => 0xb6 },
+ 'precaptureframes' => { 253 => 0x300 },
'predictor' => { 104 => 0x13d },
- 'preflashreturnstrength' => { 205 => 0x28a },
- 'prefs' => { 112 => 0xdd, 310 => 'Prefs' },
- 'preservedfilename' => { 420 => 'PreservedFileName' },
- 'presetwhitebalance' => { 159 => 0x24, 379 => 0x8002 },
- 'presetwhitebalanceadj' => { 379 => 0x8014 },
+ 'preflashreturnstrength' => { 206 => 0x28a },
+ 'prefs' => { 112 => 0xdd, 311 => 'Prefs' },
+ 'preservedfilename' => { 421 => 'PreservedFileName' },
+ 'presetwhitebalance' => { 159 => 0x24, 380 => 0x8002 },
+ 'presetwhitebalanceadj' => { 380 => 0x8014 },
'previewapplicationname' => { 104 => 0xc716 },
'previewapplicationversion' => { 104 => 0xc717 },
- 'previewbutton' => { 234 => ['14.1','15.1'], 235 => '15.1', 240 => '29.1', 241 => '14.1', 244 => '15.1' },
- 'previewbuttonplusdials' => { 234 => ['14.2','15.2'], 235 => '15.2', 240 => '31.2', 244 => '43.1' },
+ 'previewbutton' => { 235 => ['14.1','15.1'], 236 => '15.1', 241 => '29.1', 242 => '14.1', 245 => '15.1' },
+ 'previewbuttonplusdials' => { 235 => ['14.2','15.2'], 236 => '15.2', 241 => '31.2', 245 => '43.1' },
'previewcolorspace' => { 104 => 0xc71a },
- 'previewcropbottom' => { 309 => 0xef },
- 'previewcropleft' => { 309 => 0xec },
- 'previewcropright' => { 309 => 0xee },
- 'previewcroptop' => { 309 => 0xed },
- 'previewdate' => { 317 => 0x0 },
+ 'previewcropbottom' => { 310 => 0xef },
+ 'previewcropleft' => { 310 => 0xec },
+ 'previewcropright' => { 310 => 0xee },
+ 'previewcroptop' => { 310 => 0xed },
+ 'previewdate' => { 318 => 0x0 },
'previewdatetime' => { 104 => 0xc71b },
- 'previewimage' => { 100 => 0x2000, 101 => 'PreviewImage', 105 => 'PreviewImage', 107 => 0x4, 144 => 'data', 161 => 0x81, 252 => 0x280, 266 => 0x300, 351 => 0x2001 },
- 'previewimageborders' => { 300 => 0x3e },
+ 'previewimage' => { 100 => 0x2000, 101 => 'PreviewImage', 105 => 'PreviewImage', 107 => 0x4, 144 => 'data', 161 => 0x81, 253 => 0x280, 267 => 0x300, 352 => 0x2001 },
+ 'previewimageborders' => { 301 => 0x3e },
'previewimageheight' => { 63 => 0x4, 122 => 0xfa58 },
- 'previewimagelength' => { 63 => 0x2, 100 => 0x3, 104 => [0x117,0x202], 161 => 0x89, 194 => 0x202, 247 => 0x102, 252 => 0x1037, 300 => 0x3, 322 => 0x1e, 327 => 0x3, 332 => [0x1b,0x1d], 342 => 0x202 },
+ 'previewimagelength' => { 63 => 0x2, 100 => 0x3, 104 => [0x117,0x202], 161 => 0x89, 195 => 0x202, 248 => 0x102, 253 => 0x1037, 301 => 0x3, 323 => 0x1e, 328 => 0x3, 333 => [0x1b,0x1d], 343 => 0x202 },
'previewimagename' => { 144 => '1Name' },
- 'previewimagesize' => { 100 => 0x2, 127 => 0x2, 144 => 'ImageSize', 300 => 0x2, 332 => [0x1c,0x1e], 351 => 0xb02c },
- 'previewimagestart' => { 63 => 0x5, 100 => 0x4, 104 => [0x111,0x201], 161 => 0x88, 194 => 0x201, 247 => 0x101, 252 => 0x1036, 300 => 0x4, 322 => 0x1c, 327 => 0x2, 332 => [0x1a,0x1c], 342 => 0x201 },
+ 'previewimagesize' => { 100 => 0x2, 127 => 0x2, 144 => 'ImageSize', 301 => 0x2, 333 => [0x1c,0x1e], 352 => 0xb02c },
+ 'previewimagestart' => { 63 => 0x5, 100 => 0x4, 104 => [0x111,0x201], 161 => 0x88, 195 => 0x201, 248 => 0x101, 253 => 0x1036, 301 => 0x4, 323 => 0x1c, 328 => 0x2, 333 => [0x1a,0x1c], 343 => 0x201 },
'previewimagetype' => { 144 => '0Type' },
- 'previewimagevalid' => { 247 => 0x100, 252 => 0x1035 },
+ 'previewimagevalid' => { 248 => 0x100, 253 => 0x1035 },
'previewimagewidth' => { 63 => 0x3, 122 => 0xfa57 },
'previewquality' => { 63 => 0x1 },
'previewsettingsdigest' => { 104 => 0xc719 },
'previewsettingsname' => { 104 => 0xc718 },
- 'primaryafpoint' => { 167 => 0x7 },
- 'primarychromaticities' => { 104 => 0x13f, 415 => 'PrimaryChromaticities' },
+ 'primaryafpoint' => { 168 => 0x7 },
+ 'primarychromaticities' => { 104 => 0x13f, 416 => 'PrimaryChromaticities' },
'printim' => { 104 => 0xc4a5 },
- 'prioritysetupshutterrelease' => { 159 => 0x1d, 339 => 0x28 },
- 'privatertkinfo' => { 385 => 'privateRTKInfo' },
+ 'prioritysetupshutterrelease' => { 159 => 0x1d, 340 => 0x28 },
+ 'privatertkinfo' => { 386 => 'privateRTKInfo' },
'processingsoftware' => { 104 => 0xb },
- 'processversion' => { 394 => 'ProcessVersion' },
- 'producer' => { 256 => 'Producer', 405 => 'Producer' },
- 'productcode' => { 409 => 'productCode' },
- 'productid' => { 113 => 0x32, 408 => 'productID' },
- 'productidtype' => { 408 => 'productIDType' },
- 'productinimage' => { 404 => 'ProductInImage' },
- 'productinimagedescription' => { 404 => [\'ProductInImage','ProductInImageProductDescription'] },
- 'productinimagegtin' => { 404 => [\'ProductInImage','ProductInImageProductGTIN'] },
- 'productinimagename' => { 404 => [\'ProductInImage','ProductInImageProductName'] },
- 'productioncode' => { 280 => 0x2 },
- 'productorserviceconstraints' => { 407 => 'ProductOrServiceConstraints' },
- 'profession' => { 409 => 'profession' },
+ 'processversion' => { 395 => 'ProcessVersion' },
+ 'producer' => { 257 => 'Producer', 406 => 'Producer' },
+ 'productcode' => { 410 => 'productCode' },
+ 'productid' => { 113 => 0x32, 409 => 'productID' },
+ 'productidtype' => { 409 => 'productIDType' },
+ 'productinimage' => { 405 => 'ProductInImage' },
+ 'productinimagedescription' => { 405 => [\'ProductInImage','ProductInImageProductDescription'] },
+ 'productinimagegtin' => { 405 => [\'ProductInImage','ProductInImageProductGTIN'] },
+ 'productinimagename' => { 405 => [\'ProductInImage','ProductInImageProductName'] },
+ 'productioncode' => { 281 => 0x2 },
+ 'productorserviceconstraints' => { 408 => 'ProductOrServiceConstraints' },
+ 'profession' => { 410 => 'profession' },
'profilecalibrationsig' => { 104 => 0xc6f4 },
'profilecopyright' => { 104 => 0xc6fe },
'profileembedpolicy' => { 104 => 0xc6fd },
@@ -3677,113 +3678,113 @@ my %tagLookup = (
'profilelooktableencoding' => { 104 => 0xc7a4 },
'profilename' => { 104 => 0xc6f8 },
'profiletonecurve' => { 104 => 0xc6fc },
- 'programiso' => { 267 => 0x3c },
- 'programline' => { 281 => '1.1' },
+ 'programiso' => { 268 => 0x3c },
+ 'programline' => { 282 => '1.1' },
'programmode' => { 164 => 0x5 },
- 'programshift' => { 191 => 0xd },
+ 'programshift' => { 192 => 0xd },
'programversion' => { 112 => 0x46 },
- 'prohibits' => { 391 => 'prohibits' },
- 'projectiontype' => { 383 => 'ProjectionType' },
- 'projectname' => { 419 => 'projectName' },
- 'projectref' => { 419 => 'projectRef' },
- 'projectrefpath' => { 419 => [\'projectRef','projectRefPath'] },
- 'projectreftype' => { 419 => [\'projectRef','projectRefType'] },
- 'propertyreleaseid' => { 407 => 'PropertyReleaseID' },
- 'propertyreleasestatus' => { 407 => 'PropertyReleaseStatus' },
+ 'prohibits' => { 392 => 'prohibits' },
+ 'projectiontype' => { 384 => 'ProjectionType' },
+ 'projectname' => { 420 => 'projectName' },
+ 'projectref' => { 420 => 'projectRef' },
+ 'projectrefpath' => { 420 => [\'projectRef','projectRefPath'] },
+ 'projectreftype' => { 420 => [\'projectRef','projectRefType'] },
+ 'propertyreleaseid' => { 408 => 'PropertyReleaseID' },
+ 'propertyreleasestatus' => { 408 => 'PropertyReleaseStatus' },
'province-state' => { 112 => 0x5f },
- 'publicationdate' => { 409 => 'publicationDate' },
- 'publicationdatea-platform' => { 409 => [\'publicationDate','publicationDateA-platform'] },
- 'publicationdatedate' => { 409 => [\'publicationDate','publicationDateDate'] },
- 'publicationdisplaydate' => { 409 => 'publicationDisplayDate' },
- 'publicationdisplaydatea-platform' => { 409 => [\'publicationDisplayDate','publicationDisplayDateA-platform'] },
- 'publicationdisplaydatedate' => { 409 => [\'publicationDisplayDate','publicationDisplayDateDate'] },
- 'publicationname' => { 409 => 'publicationName' },
- 'publisher' => { 395 => 'publisher' },
- 'publishingfrequency' => { 409 => 'publishingFrequency' },
- 'pulldown' => { 419 => 'pullDown' },
+ 'publicationdate' => { 410 => 'publicationDate' },
+ 'publicationdatea-platform' => { 410 => [\'publicationDate','publicationDateA-platform'] },
+ 'publicationdatedate' => { 410 => [\'publicationDate','publicationDateDate'] },
+ 'publicationdisplaydate' => { 410 => 'publicationDisplayDate' },
+ 'publicationdisplaydatea-platform' => { 410 => [\'publicationDisplayDate','publicationDisplayDateA-platform'] },
+ 'publicationdisplaydatedate' => { 410 => [\'publicationDisplayDate','publicationDisplayDateDate'] },
+ 'publicationname' => { 410 => 'publicationName' },
+ 'publisher' => { 396 => 'publisher' },
+ 'publishingfrequency' => { 410 => 'publishingFrequency' },
+ 'pulldown' => { 420 => 'pullDown' },
'purplehsl' => { 90 => 0x20916 },
- 'quality' => { 0 => 0x1, 30 => 0x3, 99 => 0x2, 100 => 0x3002, 109 => 0x1000, 120 => 0x9, 191 => 0x4, 217 => 0x3, 252 => 0x201, 263 => 0x300, 300 => 0x8, 307 => 0x2, 332 => 0x16, 339 => 0x56, 340 => 0x56, 341 => 0xb, 351 => 0x102 },
- 'quality2' => { 358 => 0x1170, 359 => 0x1174, 360 => 0x1150, 362 => 0x11a8, 363 => 0x1060, 364 => 0x258, 365 => 0x258, 367 => 0x29, 368 => 0x25, 369 => 0x2a },
+ 'quality' => { 0 => 0x1, 30 => 0x3, 99 => 0x2, 100 => 0x3002, 109 => 0x1000, 120 => 0x9, 192 => 0x4, 218 => 0x3, 253 => 0x201, 264 => 0x300, 301 => 0x8, 308 => 0x2, 333 => 0x16, 340 => 0x56, 341 => 0x56, 342 => 0xb, 352 => 0x102 },
+ 'quality2' => { 359 => 0x1170, 360 => 0x1174, 361 => 0x1150, 363 => 0x11a8, 364 => 0x1060, 365 => 0x258, 366 => 0x258, 368 => 0x29, 369 => 0x25, 370 => 0x2a },
'qualitymode' => { 100 => 0x8 },
'quantizationmethod' => { 114 => 0x78 },
- 'quickadjust' => { 230 => 0x2a },
+ 'quickadjust' => { 231 => 0x2a },
'quickcontroldialinmeter' => { 72 => 0x703 },
- 'quickfix' => { 227 => 0x416391c6 },
- 'quickshot' => { 331 => 0x213 },
- 'rangefinder' => { 237 => '4.1', 238 => '5.1', 239 => '5.1' },
+ 'quickfix' => { 228 => 0x416391c6 },
+ 'quickshot' => { 332 => 0x213 },
+ 'rangefinder' => { 238 => '4.1', 239 => '5.1', 240 => '5.1' },
'rasterizedcaption' => { 112 => 0x7d },
- 'rating' => { 104 => 0x4746, 109 => 0x1431, 309 => 0xdf, 351 => 0x2002, 388 => 'rating', 396 => 'rating', 409 => 'rating', 417 => 'Rating' },
+ 'rating' => { 104 => 0x4746, 109 => 0x1431, 310 => 0xdf, 352 => 0x2002, 389 => 'rating', 397 => 'rating', 410 => 'rating', 418 => 'Rating' },
'ratingpercent' => { 104 => 0x4749, 154 => 'Rating' },
- 'rawandjpgrecording' => { 70 => 0x8, 161 => 0x109, 281 => 0xd },
+ 'rawandjpgrecording' => { 70 => 0x8, 161 => 0x109, 282 => 0xd },
'rawbrightnessadj' => { 90 => 0x20001, 95 => 0x38 },
'rawcoloradj' => { 95 => 0x2e },
- 'rawcompressionmode' => { 329 => 0x45 },
- 'rawcropbottom' => { 309 => 0xd4 },
- 'rawcropleft' => { 309 => 0xd1 },
- 'rawcropright' => { 309 => 0xd3 },
- 'rawcroptop' => { 309 => 0xd2 },
+ 'rawcompressionmode' => { 330 => 0x45 },
+ 'rawcropbottom' => { 310 => 0xd4 },
+ 'rawcropleft' => { 310 => 0xd1 },
+ 'rawcropright' => { 310 => 0xd3 },
+ 'rawcroptop' => { 310 => 0xd2 },
'rawcustomsaturation' => { 95 => 0x30 },
'rawcustomtone' => { 95 => 0x34 },
- 'rawdata' => { 329 => 0xa048 },
+ 'rawdata' => { 330 => 0xa048 },
'rawdatauniqueid' => { 104 => 0xc65d },
'rawdepth' => { 163 => 0x10 },
- 'rawdevartfilter' => { 254 => 0x121 },
- 'rawdevautogradation' => { 254 => 0x119 },
- 'rawdevcolorspace' => { 253 => 0x108, 254 => 0x109 },
- 'rawdevcontrastvalue' => { 253 => 0x106, 254 => 0x105 },
- 'rawdeveditstatus' => { 253 => 0x10b },
- 'rawdevelopmentprocess' => { 300 => 0x62 },
- 'rawdevengine' => { 253 => 0x109, 254 => 0x10b },
- 'rawdevexposurebiasvalue' => { 253 => 0x100, 254 => 0x100 },
- 'rawdevgradation' => { 254 => 0x112 },
- 'rawdevgraypoint' => { 253 => 0x103, 254 => 0x104 },
- 'rawdevmemorycoloremphasis' => { 253 => 0x105, 254 => 0x108 },
- 'rawdevnoisereduction' => { 253 => 0x10a, 254 => 0x10a },
- 'rawdevpicturemode' => { 254 => 0x10c },
- 'rawdevpm_bwfilter' => { 254 => 0x110 },
- 'rawdevpmcontrast' => { 254 => 0x10e },
- 'rawdevpmnoisefilter' => { 254 => 0x120 },
- 'rawdevpmpicturetone' => { 254 => 0x111 },
- 'rawdevpmsaturation' => { 254 => 0x10d },
- 'rawdevpmsharpness' => { 254 => 0x10f },
- 'rawdevsaturation3' => { 254 => 0x113 },
- 'rawdevsaturationemphasis' => { 253 => 0x104, 254 => 0x107 },
- 'rawdevsettings' => { 253 => 0x10c },
- 'rawdevsharpnessvalue' => { 253 => 0x107, 254 => 0x106 },
- 'rawdevversion' => { 253 => 0x0, 254 => 0x0 },
- 'rawdevwbfineadjustment' => { 253 => 0x102, 254 => 0x103 },
- 'rawdevwhitebalance' => { 254 => 0x101 },
- 'rawdevwhitebalancevalue' => { 253 => 0x101, 254 => 0x102 },
+ 'rawdevartfilter' => { 255 => 0x121 },
+ 'rawdevautogradation' => { 255 => 0x119 },
+ 'rawdevcolorspace' => { 254 => 0x108, 255 => 0x109 },
+ 'rawdevcontrastvalue' => { 254 => 0x106, 255 => 0x105 },
+ 'rawdeveditstatus' => { 254 => 0x10b },
+ 'rawdevelopmentprocess' => { 301 => 0x62 },
+ 'rawdevengine' => { 254 => 0x109, 255 => 0x10b },
+ 'rawdevexposurebiasvalue' => { 254 => 0x100, 255 => 0x100 },
+ 'rawdevgradation' => { 255 => 0x112 },
+ 'rawdevgraypoint' => { 254 => 0x103, 255 => 0x104 },
+ 'rawdevmemorycoloremphasis' => { 254 => 0x105, 255 => 0x108 },
+ 'rawdevnoisereduction' => { 254 => 0x10a, 255 => 0x10a },
+ 'rawdevpicturemode' => { 255 => 0x10c },
+ 'rawdevpm_bwfilter' => { 255 => 0x110 },
+ 'rawdevpmcontrast' => { 255 => 0x10e },
+ 'rawdevpmnoisefilter' => { 255 => 0x120 },
+ 'rawdevpmpicturetone' => { 255 => 0x111 },
+ 'rawdevpmsaturation' => { 255 => 0x10d },
+ 'rawdevpmsharpness' => { 255 => 0x10f },
+ 'rawdevsaturation3' => { 255 => 0x113 },
+ 'rawdevsaturationemphasis' => { 254 => 0x104, 255 => 0x107 },
+ 'rawdevsettings' => { 254 => 0x10c },
+ 'rawdevsharpnessvalue' => { 254 => 0x107, 255 => 0x106 },
+ 'rawdevversion' => { 254 => 0x0, 255 => 0x0 },
+ 'rawdevwbfineadjustment' => { 254 => 0x102, 255 => 0x103 },
+ 'rawdevwhitebalance' => { 255 => 0x101 },
+ 'rawdevwhitebalancevalue' => { 254 => 0x101, 255 => 0x102 },
'rawfile' => { 104 => 0xfe4c },
- 'rawfilename' => { 394 => 'RawFileName' },
- 'rawimagecenter' => { 191 => 0x99 },
+ 'rawfilename' => { 395 => 'RawFileName' },
+ 'rawimagecenter' => { 192 => 0x99 },
'rawimagedigest' => { 104 => 0xc71c },
- 'rawimagesize' => { 300 => 0x39 },
- 'rawinfoversion' => { 255 => 0x0 },
+ 'rawimagesize' => { 301 => 0x39 },
+ 'rawinfoversion' => { 256 => 0x0 },
'rawjpgheight' => { 87 => 0x4 },
'rawjpgquality' => { 48 => 0x6, 87 => 0x1 },
'rawjpgsize' => { 48 => 0x7, 87 => 0x2 },
'rawjpgwidth' => { 87 => 0x3 },
'rawmeasuredrggb' => { 35 => 0x26a, 37 => 0x280, 39 => 0x194, 40 => [0x1ad,0x26b] },
- 'rawrppused' => { 388 => 'rawrppused' },
+ 'rawrppused' => { 389 => 'rawrppused' },
'rawtopreviewgain' => { 104 => 0xc7a8 },
- 'reardisplay' => { 234 => '12.3', 235 => '6.2' },
- 'recipeendingpage' => { 411 => 'recipeEndingPage' },
- 'recipepagerange' => { 411 => 'recipePageRange' },
- 'recipesource' => { 411 => 'recipeSource' },
- 'recipestartingpage' => { 411 => 'recipeStartingPage' },
- 'recipetitle' => { 411 => 'recipeTitle' },
- 'recognizedface1age' => { 262 => 0x20 },
- 'recognizedface1name' => { 262 => 0x4 },
- 'recognizedface1position' => { 262 => 0x18 },
- 'recognizedface2age' => { 262 => 0x50 },
- 'recognizedface2name' => { 262 => 0x34 },
- 'recognizedface2position' => { 262 => 0x48 },
- 'recognizedface3age' => { 262 => 0x80 },
- 'recognizedface3name' => { 262 => 0x64 },
- 'recognizedface3position' => { 262 => 0x78 },
- 'recognizedfaceflags' => { 267 => 0x63 },
- 'recommendedexposureindex' => { 104 => 0x8832, 399 => 'RecommendedExposureIndex' },
+ 'reardisplay' => { 235 => '12.3', 236 => '6.2' },
+ 'recipeendingpage' => { 412 => 'recipeEndingPage' },
+ 'recipepagerange' => { 412 => 'recipePageRange' },
+ 'recipesource' => { 412 => 'recipeSource' },
+ 'recipestartingpage' => { 412 => 'recipeStartingPage' },
+ 'recipetitle' => { 412 => 'recipeTitle' },
+ 'recognizedface1age' => { 263 => 0x20 },
+ 'recognizedface1name' => { 263 => 0x4 },
+ 'recognizedface1position' => { 263 => 0x18 },
+ 'recognizedface2age' => { 263 => 0x50 },
+ 'recognizedface2name' => { 263 => 0x34 },
+ 'recognizedface2position' => { 263 => 0x48 },
+ 'recognizedface3age' => { 263 => 0x80 },
+ 'recognizedface3name' => { 263 => 0x64 },
+ 'recognizedface3position' => { 263 => 0x78 },
+ 'recognizedfaceflags' => { 268 => 0x63 },
+ 'recommendedexposureindex' => { 104 => 0x8832, 400 => 'RecommendedExposureIndex' },
'record' => { 103 => 'Record' },
'recordbasisofrecord' => { 103 => [\'Record','RecordBasisOfRecord'] },
'recordcollectioncode' => { 103 => [\'Record','RecordCollectionCode'] },
@@ -3795,32 +3796,32 @@ my %tagLookup = (
'recorddynamicproperties' => { 103 => [\'Record','RecordDynamicProperties'] },
'recordid' => { 85 => 0x1804 },
'recordinformationwithheld' => { 103 => [\'Record','RecordInformationWithheld'] },
- 'recordingformat' => { 323 => 0x1000 },
- 'recordingmode' => { 99 => 0x1, 307 => 0x1 },
+ 'recordingformat' => { 324 => 0x1000 },
+ 'recordingmode' => { 99 => 0x1, 308 => 0x1 },
'recordinstitutioncode' => { 103 => [\'Record','RecordInstitutionCode'] },
'recordinstitutionid' => { 103 => [\'Record','RecordInstitutionID'] },
'recordmode' => { 30 => 0x9, 100 => 0x3000 },
'recordownerinstitutioncode' => { 103 => [\'Record','RecordOwnerInstitutionCode'] },
- 'recordshutterrelease' => { 331 => 0x217 },
- 'redbalance' => { 175 => 0x270, 252 => 0x1017, 271 => 0x11, 300 => 0x1c },
+ 'recordshutterrelease' => { 332 => 0x217 },
+ 'redbalance' => { 176 => 0x270, 253 => 0x1017, 272 => 0x11, 301 => 0x1c },
'redcurvelimits' => { 95 => 0x18a },
'redcurvepoints' => { 94 => 0x2d, 95 => 0x160 },
- 'redeyecorrection' => { 231 => 0x0 },
- 'redeyeinfo' => { 394 => 'RedEyeInfo' },
- 'redeyereduction' => { 159 => 0x41, 339 => 0x6a, 341 => 0x28 },
+ 'redeyecorrection' => { 232 => 0x0 },
+ 'redeyeinfo' => { 395 => 'RedEyeInfo' },
+ 'redeyereduction' => { 159 => 0x41, 340 => 0x6a, 342 => 0x28 },
'redhsl' => { 90 => 0x20910 },
- 'redhue' => { 394 => 'RedHue' },
- 'redsaturation' => { 394 => 'RedSaturation' },
+ 'redhue' => { 395 => 'RedHue' },
+ 'redsaturation' => { 395 => 'RedSaturation' },
'reductionmatrix1' => { 104 => 0xc625 },
'reductionmatrix2' => { 104 => 0xc626 },
'reelname' => { 104 => 0xc789 },
- 'reference1' => { 402 => [\'TagStructure','TagStructureReference'] },
- 'reference2' => { 402 => [\'TagStructure','TagStructureSubLabelsReference'] },
- 'reference3' => { 402 => [\'TagStructure','TagStructureSubLabelsSubLabelsReference'] },
- 'reference4' => { 402 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsReference'] },
- 'reference5' => { 402 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsReference'] },
- 'reference6' => { 402 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsReference'] },
- 'referenceblackwhite' => { 104 => 0x214, 415 => 'ReferenceBlackWhite' },
+ 'reference1' => { 403 => [\'TagStructure','TagStructureReference'] },
+ 'reference2' => { 403 => [\'TagStructure','TagStructureSubLabelsReference'] },
+ 'reference3' => { 403 => [\'TagStructure','TagStructureSubLabelsSubLabelsReference'] },
+ 'reference4' => { 403 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsReference'] },
+ 'reference5' => { 403 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsReference'] },
+ 'reference6' => { 403 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabelsReference'] },
+ 'referenceblackwhite' => { 104 => 0x214, 416 => 'ReferenceBlackWhite' },
'referencedate' => { 112 => 0x2f },
'referencenumber' => { 112 => 0x32 },
'references' => { 135 => 'References' },
@@ -3837,7 +3838,7 @@ my %tagLookup = (
'regionareax' => { 150 => [\'Regions','RegionsRegionListAreaX'] },
'regionareay' => { 150 => [\'Regions','RegionsRegionListAreaY'] },
'regionbarcodevalue' => { 150 => [\'Regions','RegionsRegionListBarCodeValue'] },
- 'regionconstraints' => { 407 => 'RegionConstraints' },
+ 'regionconstraints' => { 408 => 'RegionConstraints' },
'regiondescription' => { 150 => [\'Regions','RegionsRegionListDescription'] },
'regionextensions' => { 150 => [\'Regions','RegionsRegionListExtensions'] },
'regionfocususage' => { 150 => [\'Regions','RegionsRegionListFocusUsage'] },
@@ -3855,9 +3856,9 @@ my %tagLookup = (
'regionrotation' => { 150 => [\'Regions','RegionsRegionListRotation'] },
'regionseealso' => { 150 => [\'Regions','RegionsRegionListSeeAlso'] },
'regiontype' => { 150 => [\'Regions','RegionsRegionListType'] },
- 'registryid' => { 404 => 'RegistryId' },
- 'registryitemid' => { 404 => [\'RegistryId','RegistryIdRegItemId'] },
- 'registryorganisationid' => { 404 => [\'RegistryId','RegistryIdRegOrgId'] },
+ 'registryid' => { 405 => 'RegistryId' },
+ 'registryitemid' => { 405 => [\'RegistryId','RegistryIdRegItemId'] },
+ 'registryorganisationid' => { 405 => [\'RegistryId','RegistryIdRegOrgId'] },
'relatedaudiofile' => { 133 => 'data' },
'relatedaudiofilename' => { 133 => '1Name' },
'relatedaudiofiletype' => { 133 => '0Type' },
@@ -3865,368 +3866,369 @@ my %tagLookup = (
'relatedimageheight' => { 104 => 0x1002 },
'relatedimagewidth' => { 104 => 0x1001 },
'relatedresourceid' => { 103 => [\'ResourceRelationship','ResourceRelationshipRelatedResourceID'] },
- 'relatedsoundfile' => { 104 => 0xa004, 398 => 'RelatedSoundFile' },
+ 'relatedsoundfile' => { 104 => 0xa004, 399 => 'RelatedSoundFile' },
'relatedvideofile' => { 147 => 'data' },
'relatedvideofilename' => { 147 => '1Name' },
'relatedvideofiletype' => { 147 => '0Type' },
- 'relation' => { 395 => 'relation' },
+ 'relation' => { 396 => 'relation' },
'relationshipaccordingto' => { 103 => [\'ResourceRelationship','ResourceRelationshipRelationshipAccordingTo'] },
'relationshipestablisheddate' => { 103 => [\'ResourceRelationship','ResourceRelationshipRelationshipEstablishedDate'] },
'relationshipofresource' => { 103 => [\'ResourceRelationship','ResourceRelationshipRelationshipOfResource'] },
'relationshipremarks' => { 103 => [\'ResourceRelationship','ResourceRelationshipRelationshipRemarks'] },
- 'relativepeakaudiofilepath' => { 419 => 'relativePeakAudioFilePath' },
- 'relativetimestamp' => { 419 => 'relativeTimestamp' },
- 'relativetimestampscale' => { 419 => [\'relativeTimestamp','relativeTimestampScale'] },
- 'relativetimestampvalue' => { 419 => [\'relativeTimestamp','relativeTimestampValue'] },
- 'releasebuttontousedial' => { 234 => '17.8', 235 => '18.5', 240 => '33.8', 241 => '17.6', 244 => '18.5' },
- 'releasedate' => { 112 => 0x1e, 419 => 'releaseDate' },
- 'releasemode' => { 100 => 0x3001, 351 => 0xb049 },
- 'releasemode2' => { 358 => 0x112c, 359 => [0x112c,0x8], 360 => [0x1108,0x8], 361 => [0x1184,0x8], 362 => [0x1160,0x8], 363 => [0x4,0x1018], 364 => [0x4,0x210], 365 => [0x4,0x210], 366 => [0x67,0x73,0x3f,0x4b], 367 => 0x10, 368 => 0x10, 369 => 0x9, 375 => 0x34 },
- 'releasemode3' => { 358 => 0x1128, 359 => 0x1128, 360 => 0x1104, 361 => 0x1180, 362 => 0x115c, 363 => 0x1014, 364 => 0x20c, 365 => 0x20c },
+ 'relativepeakaudiofilepath' => { 420 => 'relativePeakAudioFilePath' },
+ 'relativetimestamp' => { 420 => 'relativeTimestamp' },
+ 'relativetimestampscale' => { 420 => [\'relativeTimestamp','relativeTimestampScale'] },
+ 'relativetimestampvalue' => { 420 => [\'relativeTimestamp','relativeTimestampValue'] },
+ 'releasebuttontousedial' => { 235 => '17.8', 236 => '18.5', 241 => '33.8', 242 => '17.6', 245 => '18.5' },
+ 'releasedate' => { 112 => 0x1e, 420 => 'releaseDate' },
+ 'releasemode' => { 100 => 0x3001, 352 => 0xb049 },
+ 'releasemode2' => { 359 => 0x112c, 360 => [0x112c,0x8], 361 => [0x1108,0x8], 362 => [0x1184,0x8], 363 => [0x1160,0x8], 364 => [0x4,0x1018], 365 => [0x4,0x210], 366 => [0x4,0x210], 367 => [0x67,0x73,0x3f,0x4b], 368 => 0x10, 369 => 0x10, 370 => 0x9, 376 => 0x34 },
+ 'releasemode3' => { 359 => 0x1128, 360 => 0x1128, 361 => 0x1104, 362 => 0x1180, 363 => 0x115c, 364 => 0x1014, 365 => 0x20c, 366 => 0x20c },
'releasesetting' => { 85 => 0x1016 },
'releasetime' => { 112 => 0x23 },
- 'remoteonduration' => { 236 => '3.4', 237 => '17.2', 238 => '18.2', 239 => '18.2', 241 => '18.2', 242 => '4.3', 245 => '19.2' },
- 'renditionclass' => { 420 => 'RenditionClass' },
- 'renditionof' => { 420 => 'RenditionOf' },
- 'renditionofalternatepaths' => { 420 => [\'RenditionOf','RenditionOfAlternatePaths'] },
- 'renditionofdocumentid' => { 420 => [\'RenditionOf','RenditionOfDocumentID'] },
- 'renditionoffilepath' => { 420 => [\'RenditionOf','RenditionOfFilePath'] },
- 'renditionoffrompart' => { 420 => [\'RenditionOf','RenditionOfFromPart'] },
- 'renditionofinstanceid' => { 420 => [\'RenditionOf','RenditionOfInstanceID'] },
- 'renditionoflastmodifydate' => { 420 => [\'RenditionOf','RenditionOfLastModifyDate'] },
- 'renditionofmanager' => { 420 => [\'RenditionOf','RenditionOfManager'] },
- 'renditionofmanagervariant' => { 420 => [\'RenditionOf','RenditionOfManagerVariant'] },
- 'renditionofmanageto' => { 420 => [\'RenditionOf','RenditionOfManageTo'] },
- 'renditionofmanageui' => { 420 => [\'RenditionOf','RenditionOfManageUI'] },
- 'renditionofmaskmarkers' => { 420 => [\'RenditionOf','RenditionOfMaskMarkers'] },
- 'renditionoforiginaldocumentid' => { 420 => [\'RenditionOf','RenditionOfOriginalDocumentID'] },
- 'renditionofpartmapping' => { 420 => [\'RenditionOf','RenditionOfPartMapping'] },
- 'renditionofrenditionclass' => { 420 => [\'RenditionOf','RenditionOfRenditionClass'] },
- 'renditionofrenditionparams' => { 420 => [\'RenditionOf','RenditionOfRenditionParams'] },
- 'renditionoftopart' => { 420 => [\'RenditionOf','RenditionOfToPart'] },
- 'renditionofversionid' => { 420 => [\'RenditionOf','RenditionOfVersionID'] },
- 'renditionparams' => { 420 => 'RenditionParams' },
- 'repeatingflashcount' => { 180 => 0xd, 181 => 0xe, 182 => 0xe, 240 => '17.2', 241 => '24.2', 242 => '9.2', 243 => '24.2', 245 => '25.2' },
- 'repeatingflashcountbuilt-in' => { 214 => 0x4db },
- 'repeatingflashcountexternal' => { 214 => 0x4c3 },
- 'repeatingflashoutput' => { 240 => '17.1', 241 => '24.1', 242 => '9.1', 243 => '24.1', 245 => '25.1' },
- 'repeatingflashoutputexternal' => { 214 => 0x4c0 },
- 'repeatingflashrate' => { 180 => 0xc, 181 => 0xd, 182 => 0xd, 240 => '18.1', 241 => '25.1', 242 => '10.1', 243 => '25.1', 245 => '26.1' },
- 'repeatingflashratebuilt-in' => { 214 => 0x4da },
- 'repeatingflashrateexternal' => { 214 => 0x4c2 },
- 'requires' => { 391 => 'requires' },
- 'resampleparams' => { 419 => 'resampleParams' },
- 'resampleparamsquality' => { 419 => [\'resampleParams','resampleParamsQuality'] },
- 'resaved' => { 331 => 0x21e },
+ 'remoteonduration' => { 237 => '3.4', 238 => '17.2', 239 => '18.2', 240 => '18.2', 242 => '18.2', 243 => '4.3', 246 => '19.2' },
+ 'renditionclass' => { 421 => 'RenditionClass' },
+ 'renditionof' => { 421 => 'RenditionOf' },
+ 'renditionofalternatepaths' => { 421 => [\'RenditionOf','RenditionOfAlternatePaths'] },
+ 'renditionofdocumentid' => { 421 => [\'RenditionOf','RenditionOfDocumentID'] },
+ 'renditionoffilepath' => { 421 => [\'RenditionOf','RenditionOfFilePath'] },
+ 'renditionoffrompart' => { 421 => [\'RenditionOf','RenditionOfFromPart'] },
+ 'renditionofinstanceid' => { 421 => [\'RenditionOf','RenditionOfInstanceID'] },
+ 'renditionoflastmodifydate' => { 421 => [\'RenditionOf','RenditionOfLastModifyDate'] },
+ 'renditionofmanager' => { 421 => [\'RenditionOf','RenditionOfManager'] },
+ 'renditionofmanagervariant' => { 421 => [\'RenditionOf','RenditionOfManagerVariant'] },
+ 'renditionofmanageto' => { 421 => [\'RenditionOf','RenditionOfManageTo'] },
+ 'renditionofmanageui' => { 421 => [\'RenditionOf','RenditionOfManageUI'] },
+ 'renditionofmaskmarkers' => { 421 => [\'RenditionOf','RenditionOfMaskMarkers'] },
+ 'renditionoforiginaldocumentid' => { 421 => [\'RenditionOf','RenditionOfOriginalDocumentID'] },
+ 'renditionofpartmapping' => { 421 => [\'RenditionOf','RenditionOfPartMapping'] },
+ 'renditionofrenditionclass' => { 421 => [\'RenditionOf','RenditionOfRenditionClass'] },
+ 'renditionofrenditionparams' => { 421 => [\'RenditionOf','RenditionOfRenditionParams'] },
+ 'renditionoftopart' => { 421 => [\'RenditionOf','RenditionOfToPart'] },
+ 'renditionofversionid' => { 421 => [\'RenditionOf','RenditionOfVersionID'] },
+ 'renditionparams' => { 421 => 'RenditionParams' },
+ 'repeatingflashcount' => { 181 => 0xd, 182 => 0xe, 183 => 0xe, 241 => '17.2', 242 => '24.2', 243 => '9.2', 244 => '24.2', 246 => '25.2' },
+ 'repeatingflashcountbuilt-in' => { 215 => 0x4db },
+ 'repeatingflashcountexternal' => { 215 => 0x4c3 },
+ 'repeatingflashoutput' => { 241 => '17.1', 242 => '24.1', 243 => '9.1', 244 => '24.1', 246 => '25.1' },
+ 'repeatingflashoutputexternal' => { 215 => 0x4c0 },
+ 'repeatingflashrate' => { 181 => 0xc, 182 => 0xd, 183 => 0xd, 241 => '18.1', 242 => '25.1', 243 => '10.1', 244 => '25.1', 246 => '26.1' },
+ 'repeatingflashratebuilt-in' => { 215 => 0x4da },
+ 'repeatingflashrateexternal' => { 215 => 0x4c2 },
+ 'requires' => { 392 => 'requires' },
+ 'resampleparams' => { 420 => 'resampleParams' },
+ 'resampleparamsquality' => { 420 => [\'resampleParams','resampleParamsQuality'] },
+ 'resaved' => { 332 => 0x21e },
'resolution' => { 140 => 'Resolution' },
- 'resolutionmode' => { 332 => 0x4 },
- 'resolutionunit' => { 104 => 0x128, 115 => 0x2, 415 => 'ResolutionUnit' },
+ 'resolutionmode' => { 333 => 0x4 },
+ 'resolutionunit' => { 104 => 0x128, 115 => 0x2, 416 => 'ResolutionUnit' },
'resourceid' => { 103 => [\'ResourceRelationship','ResourceRelationshipResourceID'] },
'resourcerelationship' => { 103 => 'ResourceRelationship' },
'resourcerelationshipid' => { 103 => [\'ResourceRelationship','ResourceRelationshipResourceRelationshipID'] },
'restrictdrivemodes' => { 72 => 0x612 },
- 'restrictions' => { 412 => 'restrictions' },
- 'retouchareafeather' => { 394 => [\'RetouchAreas','RetouchAreasFeather'] },
- 'retouchareamaskalpha' => { 394 => [\'RetouchAreas','RetouchAreasMasksAlpha'] },
- 'retouchareamaskangle' => { 394 => [\'RetouchAreas','RetouchAreasMasksAngle'] },
- 'retouchareamaskbottom' => { 394 => [\'RetouchAreas','RetouchAreasMasksBottom'] },
- 'retouchareamaskcentervalue' => { 394 => [\'RetouchAreas','RetouchAreasMasksCenterValue'] },
- 'retouchareamaskcenterweight' => { 394 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'] },
- 'retouchareamaskdabs' => { 394 => [\'RetouchAreas','RetouchAreasMasksDabs'] },
- 'retouchareamaskfeather' => { 394 => [\'RetouchAreas','RetouchAreasMasksFeather'] },
- 'retouchareamaskflipped' => { 394 => [\'RetouchAreas','RetouchAreasMasksFlipped'] },
- 'retouchareamaskflow' => { 394 => [\'RetouchAreas','RetouchAreasMasksFlow'] },
- 'retouchareamaskfullx' => { 394 => [\'RetouchAreas','RetouchAreasMasksFullX'] },
- 'retouchareamaskfully' => { 394 => [\'RetouchAreas','RetouchAreasMasksFullY'] },
- 'retouchareamaskleft' => { 394 => [\'RetouchAreas','RetouchAreasMasksLeft'] },
- 'retouchareamaskmidpoint' => { 394 => [\'RetouchAreas','RetouchAreasMasksMidpoint'] },
- 'retouchareamaskperimetervalue' => { 394 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'] },
- 'retouchareamaskradius' => { 394 => [\'RetouchAreas','RetouchAreasMasksRadius'] },
- 'retouchareamaskright' => { 394 => [\'RetouchAreas','RetouchAreasMasksRight'] },
- 'retouchareamaskroundness' => { 394 => [\'RetouchAreas','RetouchAreasMasksRoundness'] },
- 'retouchareamasks' => { 394 => [\'RetouchAreas','RetouchAreasMasks'] },
- 'retouchareamasksizex' => { 394 => [\'RetouchAreas','RetouchAreasMasksSizeX'] },
- 'retouchareamasksizey' => { 394 => [\'RetouchAreas','RetouchAreasMasksSizeY'] },
- 'retouchareamasktop' => { 394 => [\'RetouchAreas','RetouchAreasMasksTop'] },
- 'retouchareamaskvalue' => { 394 => [\'RetouchAreas','RetouchAreasMasksMaskValue'] },
- 'retouchareamaskversion' => { 394 => [\'RetouchAreas','RetouchAreasMasksVersion'] },
- 'retouchareamaskwhat' => { 394 => [\'RetouchAreas','RetouchAreasMasksWhat'] },
- 'retouchareamaskx' => { 394 => [\'RetouchAreas','RetouchAreasMasksX'] },
- 'retouchareamasky' => { 394 => [\'RetouchAreas','RetouchAreasMasksY'] },
- 'retouchareamaskzerox' => { 394 => [\'RetouchAreas','RetouchAreasMasksZeroX'] },
- 'retouchareamaskzeroy' => { 394 => [\'RetouchAreas','RetouchAreasMasksZeroY'] },
- 'retouchareamethod' => { 394 => [\'RetouchAreas','RetouchAreasMethod'] },
- 'retouchareaoffsety' => { 394 => [\'RetouchAreas','RetouchAreasOffsetY'] },
- 'retouchareaopacity' => { 394 => [\'RetouchAreas','RetouchAreasOpacity'] },
- 'retouchareas' => { 394 => 'RetouchAreas' },
- 'retouchareaseed' => { 394 => [\'RetouchAreas','RetouchAreasSeed'] },
- 'retouchareasourcestate' => { 394 => [\'RetouchAreas','RetouchAreasSourceState'] },
- 'retouchareasourcex' => { 394 => [\'RetouchAreas','RetouchAreasSourceX'] },
- 'retouchareaspottype' => { 394 => [\'RetouchAreas','RetouchAreasSpotType'] },
- 'retouchhistory' => { 191 => 0x9e },
- 'retouchinfo' => { 394 => 'RetouchInfo' },
- 'retouchnefprocessing' => { 196 => 0x5 },
- 'reuse' => { 407 => 'Reuse' },
- 'reuseallowed' => { 422 => 'ReuseAllowed' },
- 'reuseprohibited' => { 412 => 'reuseProhibited' },
- 'reverseexposurecompdial' => { 239 => '5.2' },
- 'reverseindicators' => { 234 => '12.1', 235 => '6.1', 237 => '4.3', 238 => '5.2', 239 => '5.4', 240 => '33.5', 241 => '5.1', 244 => '6.1', 245 => '6.2' },
- 'reverseshutterspeedaperture' => { 239 => '5.3' },
- 'revision' => { 396 => 'revision' },
+ 'restrictions' => { 413 => 'restrictions' },
+ 'retouchareafeather' => { 395 => [\'RetouchAreas','RetouchAreasFeather'] },
+ 'retouchareamaskalpha' => { 395 => [\'RetouchAreas','RetouchAreasMasksAlpha'] },
+ 'retouchareamaskangle' => { 395 => [\'RetouchAreas','RetouchAreasMasksAngle'] },
+ 'retouchareamaskbottom' => { 395 => [\'RetouchAreas','RetouchAreasMasksBottom'] },
+ 'retouchareamaskcentervalue' => { 395 => [\'RetouchAreas','RetouchAreasMasksCenterValue'] },
+ 'retouchareamaskcenterweight' => { 395 => [\'RetouchAreas','RetouchAreasMasksCenterWeight'] },
+ 'retouchareamaskdabs' => { 395 => [\'RetouchAreas','RetouchAreasMasksDabs'] },
+ 'retouchareamaskfeather' => { 395 => [\'RetouchAreas','RetouchAreasMasksFeather'] },
+ 'retouchareamaskflipped' => { 395 => [\'RetouchAreas','RetouchAreasMasksFlipped'] },
+ 'retouchareamaskflow' => { 395 => [\'RetouchAreas','RetouchAreasMasksFlow'] },
+ 'retouchareamaskfullx' => { 395 => [\'RetouchAreas','RetouchAreasMasksFullX'] },
+ 'retouchareamaskfully' => { 395 => [\'RetouchAreas','RetouchAreasMasksFullY'] },
+ 'retouchareamaskleft' => { 395 => [\'RetouchAreas','RetouchAreasMasksLeft'] },
+ 'retouchareamaskmidpoint' => { 395 => [\'RetouchAreas','RetouchAreasMasksMidpoint'] },
+ 'retouchareamaskperimetervalue' => { 395 => [\'RetouchAreas','RetouchAreasMasksPerimeterValue'] },
+ 'retouchareamaskradius' => { 395 => [\'RetouchAreas','RetouchAreasMasksRadius'] },
+ 'retouchareamaskright' => { 395 => [\'RetouchAreas','RetouchAreasMasksRight'] },
+ 'retouchareamaskroundness' => { 395 => [\'RetouchAreas','RetouchAreasMasksRoundness'] },
+ 'retouchareamasks' => { 395 => [\'RetouchAreas','RetouchAreasMasks'] },
+ 'retouchareamasksizex' => { 395 => [\'RetouchAreas','RetouchAreasMasksSizeX'] },
+ 'retouchareamasksizey' => { 395 => [\'RetouchAreas','RetouchAreasMasksSizeY'] },
+ 'retouchareamasktop' => { 395 => [\'RetouchAreas','RetouchAreasMasksTop'] },
+ 'retouchareamaskvalue' => { 395 => [\'RetouchAreas','RetouchAreasMasksMaskValue'] },
+ 'retouchareamaskversion' => { 395 => [\'RetouchAreas','RetouchAreasMasksVersion'] },
+ 'retouchareamaskwhat' => { 395 => [\'RetouchAreas','RetouchAreasMasksWhat'] },
+ 'retouchareamaskx' => { 395 => [\'RetouchAreas','RetouchAreasMasksX'] },
+ 'retouchareamasky' => { 395 => [\'RetouchAreas','RetouchAreasMasksY'] },
+ 'retouchareamaskzerox' => { 395 => [\'RetouchAreas','RetouchAreasMasksZeroX'] },
+ 'retouchareamaskzeroy' => { 395 => [\'RetouchAreas','RetouchAreasMasksZeroY'] },
+ 'retouchareamethod' => { 395 => [\'RetouchAreas','RetouchAreasMethod'] },
+ 'retouchareaoffsety' => { 395 => [\'RetouchAreas','RetouchAreasOffsetY'] },
+ 'retouchareaopacity' => { 395 => [\'RetouchAreas','RetouchAreasOpacity'] },
+ 'retouchareas' => { 395 => 'RetouchAreas' },
+ 'retouchareaseed' => { 395 => [\'RetouchAreas','RetouchAreasSeed'] },
+ 'retouchareasourcestate' => { 395 => [\'RetouchAreas','RetouchAreasSourceState'] },
+ 'retouchareasourcex' => { 395 => [\'RetouchAreas','RetouchAreasSourceX'] },
+ 'retouchareaspottype' => { 395 => [\'RetouchAreas','RetouchAreasSpotType'] },
+ 'retouchhistory' => { 192 => 0x9e },
+ 'retouchinfo' => { 395 => 'RetouchInfo' },
+ 'retouchnefprocessing' => { 197 => 0x5 },
+ 'reuse' => { 408 => 'Reuse' },
+ 'reuseallowed' => { 423 => 'ReuseAllowed' },
+ 'reuseprohibited' => { 413 => 'reuseProhibited' },
+ 'reverseexposurecompdial' => { 240 => '5.2' },
+ 'reverseindicators' => { 235 => '12.1', 236 => '6.1', 238 => '4.3', 239 => '5.2', 240 => '5.4', 241 => '33.5', 242 => '5.1', 245 => '6.1', 246 => '6.2' },
+ 'reverseshutterspeedaperture' => { 240 => '5.3' },
+ 'revision' => { 397 => 'revision' },
'rgbcurvelimits' => { 95 => 0x238 },
'rgbcurvepoints' => { 94 => 0x7, 95 => 0x20e },
- 'richtextcomment' => { 401 => 'RichTextComment' },
- 'ricohdate' => { 322 => 0x6 },
- 'ricohimageheight' => { 322 => 0x2 },
- 'ricohimagewidth' => { 322 => 0x0 },
+ 'richtextcomment' => { 402 => 'RichTextComment' },
+ 'ricohdate' => { 323 => 0x6 },
+ 'ricohimageheight' => { 323 => 0x2 },
+ 'ricohimagewidth' => { 323 => 0x0 },
'rightascension' => { 143 => 'RightAscension' },
- 'rights' => { 395 => 'rights' },
- 'rightsagent' => { 412 => 'rightsAgent' },
- 'rightsowner' => { 412 => 'rightsOwner' },
- 'rollangle' => { 207 => 0x350b, 247 => 0x903, 267 => 0x90, 299 => 0x1 },
+ 'rights' => { 396 => 'rights' },
+ 'rightsagent' => { 413 => 'rightsAgent' },
+ 'rightsowner' => { 413 => 'rightsOwner' },
+ 'rollangle' => { 208 => 0x350b, 248 => 0x903, 268 => 0x90, 300 => 0x1 },
'romoperationmode' => { 85 => 0x80d },
- 'rotation' => { 27 => 0x17, 28 => 0x18, 84 => 0x3, 90 => 0x10002, 95 => 0x26e, 108 => 0x4, 143 => 'Rotation', 157 => [0x65,0x50], 158 => 0x46, 159 => 0x5a, 162 => 0x10, 213 => '590.1', 227 => 0x76a43207, 267 => 0x30, 281 => '17.2', 309 => 0xd8, 339 => 0x3f, 340 => 0x3f, 350 => 0x10 },
- 'routedto' => { 400 => 'RoutedTo' },
- 'routing' => { 314 => 'Routing' },
- 'routingnotes' => { 400 => 'RoutingNotes' },
+ 'rotation' => { 27 => 0x17, 28 => 0x18, 84 => 0x3, 90 => 0x10002, 95 => 0x26e, 108 => 0x4, 143 => 'Rotation', 157 => [0x65,0x50], 158 => 0x46, 159 => 0x5a, 162 => 0x10, 214 => '590.1', 228 => 0x76a43207, 268 => 0x30, 282 => '17.2', 310 => 0xd8, 340 => 0x3f, 341 => 0x3f, 351 => 0x10 },
+ 'routedto' => { 401 => 'RoutedTo' },
+ 'routing' => { 315 => 'Routing' },
+ 'routingnotes' => { 401 => 'RoutingNotes' },
'rowsperstrip' => { 104 => 0x116 },
- 'rpp' => { 388 => 'rpp' },
+ 'rpp' => { 389 => 'rpp' },
'safetyshift' => { 72 => 0x108 },
'safetyshiftinavortv' => { 70 => 0x10, 71 => 0x10, 73 => 0xf, 74 => 0x10, 77 => 0x10 },
'samplebits' => { 133 => 'SampleBits' },
- 'samplepagerange' => { 409 => 'samplePageRange' },
+ 'samplepagerange' => { 410 => 'samplePageRange' },
'samplerate' => { 133 => 'SampleRate' },
- 'samplesperpixel' => { 104 => 0x115, 415 => 'SamplesPerPixel' },
+ 'samplesperpixel' => { 104 => 0x115, 416 => 'SamplesPerPixel' },
'samplestructure' => { 114 => 0x5a },
- 'samsungmodelid' => { 329 => 0x3 },
- 'sanyoquality' => { 331 => 0x201 },
- 'sanyothumbnail' => { 331 => 0x100 },
- 'saturation' => { 9 => 0x6e, 11 => 0x76, 30 => 0xe, 42 => 0x1, 99 => 0xd, 100 => [0x3013,0x1f], 104 => [0xa409,0xfe55], 109 => 0x1003, 134 => 'Saturation', 156 => 0x1f, 157 => 0x32, 158 => 0x28, 159 => 0x1a, 164 => 0x1, 191 => [0x94,0xaa], 193 => 0x35, 267 => 0x40, 269 => 0x300d, 300 => 0x1f, 307 => 0xd, 319 => 0x27, 322 => 0x28, 323 => 0x1013, 332 => 0x10, 339 => 0x1e, 340 => 0x1b, 351 => 0x2005, 394 => 'Saturation', 398 => 'Saturation' },
- 'saturationadj' => { 90 => 0x20901, 95 => 0x116, 226 => 0x1, 230 => 0x2e, 379 => 0x8016 },
- 'saturationadjustmentaqua' => { 394 => 'SaturationAdjustmentAqua' },
- 'saturationadjustmentblue' => { 394 => 'SaturationAdjustmentBlue' },
- 'saturationadjustmentgreen' => { 394 => 'SaturationAdjustmentGreen' },
- 'saturationadjustmentmagenta' => { 394 => 'SaturationAdjustmentMagenta' },
- 'saturationadjustmentorange' => { 394 => 'SaturationAdjustmentOrange' },
- 'saturationadjustmentpurple' => { 394 => 'SaturationAdjustmentPurple' },
- 'saturationadjustmentred' => { 394 => 'SaturationAdjustmentRed' },
- 'saturationadjustmentyellow' => { 394 => 'SaturationAdjustmentYellow' },
+ 'samsungmodelid' => { 330 => 0x3 },
+ 'sanyoquality' => { 332 => 0x201 },
+ 'sanyothumbnail' => { 332 => 0x100 },
+ 'saturation' => { 9 => 0x6e, 11 => 0x76, 30 => 0xe, 42 => 0x1, 99 => 0xd, 100 => [0x3013,0x1f], 104 => [0xa409,0xfe55], 109 => 0x1003, 134 => 'Saturation', 156 => 0x1f, 157 => 0x32, 158 => 0x28, 159 => 0x1a, 164 => 0x1, 192 => [0x94,0xaa], 194 => 0x35, 268 => 0x40, 270 => 0x300d, 301 => 0x1f, 308 => 0xd, 320 => 0x27, 323 => 0x28, 324 => 0x1013, 333 => 0x10, 340 => 0x1e, 341 => 0x1b, 352 => 0x2005, 395 => 'Saturation', 399 => 'Saturation' },
+ 'saturationadj' => { 90 => 0x20901, 95 => 0x116, 227 => 0x1, 231 => 0x2e, 380 => 0x8016 },
+ 'saturationadjustmentaqua' => { 395 => 'SaturationAdjustmentAqua' },
+ 'saturationadjustmentblue' => { 395 => 'SaturationAdjustmentBlue' },
+ 'saturationadjustmentgreen' => { 395 => 'SaturationAdjustmentGreen' },
+ 'saturationadjustmentmagenta' => { 395 => 'SaturationAdjustmentMagenta' },
+ 'saturationadjustmentorange' => { 395 => 'SaturationAdjustmentOrange' },
+ 'saturationadjustmentpurple' => { 395 => 'SaturationAdjustmentPurple' },
+ 'saturationadjustmentred' => { 395 => 'SaturationAdjustmentRed' },
+ 'saturationadjustmentyellow' => { 395 => 'SaturationAdjustmentYellow' },
'saturationauto' => { 61 => 0x98 },
'saturationfaithful' => { 18 => 0xfe, 60 => 0x68, 61 => 0x68 },
'saturationlandscape' => { 18 => 0xfc, 60 => 0x38, 61 => 0x38 },
'saturationmonochrome' => { 60 => 0x80, 61 => 0x80 },
'saturationneutral' => { 18 => 0xfd, 60 => 0x50, 61 => 0x50 },
'saturationportrait' => { 18 => 0xfb, 60 => 0x20, 61 => 0x20 },
- 'saturationsetting' => { 255 => 0x1010, 341 => 0x11, 355 => 0x9 },
+ 'saturationsetting' => { 256 => 0x1010, 342 => 0x11, 356 => 0x9 },
'saturationstandard' => { 18 => 0xfa, 60 => 0x8, 61 => 0x8 },
'saturationuserdef1' => { 18 => 0x100, 60 => 0x98, 61 => 0xb0 },
'saturationuserdef2' => { 18 => 0x101, 60 => 0xb0, 61 => 0xc8 },
'saturationuserdef3' => { 18 => 0x102, 60 => 0xc8, 61 => 0xe0 },
- 'saveid' => { 420 => 'SaveID' },
- 'scaletype' => { 419 => 'scaleType' },
- 'scanimageenhancer' => { 197 => 0x60 },
+ 'saveid' => { 421 => 'SaveID' },
+ 'scaletype' => { 420 => 'scaleType' },
+ 'scanimageenhancer' => { 198 => 0x60 },
'scanningdirection' => { 114 => 0x64 },
- 'scene' => { 403 => 'Scene', 419 => 'scene' },
- 'scenearea' => { 250 => 0x211, 252 => 0x1031 },
- 'sceneassist' => { 191 => 0x9c },
- 'scenecapturetype' => { 104 => 0xa406, 398 => 'SceneCaptureType' },
- 'scenedetect' => { 250 => 0x210, 252 => 0x1030 },
- 'scenedetectdata' => { 250 => 0x212, 252 => 0x1033 },
- 'scenemode' => { 122 => 0xfa02, 161 => 0x100, 191 => 0x8f, 247 => 0x509, 252 => 0x403, 267 => 0x8001, 275 => 0xf, 351 => 0xb023 },
+ 'scene' => { 404 => 'Scene', 420 => 'scene' },
+ 'scenearea' => { 251 => 0x211, 253 => 0x1031 },
+ 'sceneassist' => { 192 => 0x9c },
+ 'scenecapturetype' => { 104 => 0xa406, 399 => 'SceneCaptureType' },
+ 'scenedetect' => { 251 => 0x210, 253 => 0x1030 },
+ 'scenedetectdata' => { 251 => 0x212, 253 => 0x1033 },
+ 'scenemode' => { 122 => 0xfa02, 161 => 0x100, 192 => 0x8f, 248 => 0x509, 253 => 0x403, 268 => 0x8001, 276 => 0xf, 352 => 0xb023 },
'scenemodeused' => { 124 => [0x6002,0xf002] },
- 'sceneselect' => { 331 => 0x21f },
- 'scenetype' => { 104 => 0xa301, 398 => 'SceneType' },
- 'screentips' => { 234 => '12.7', 235 => '5.3', 240 => '13.1', 241 => '4.4', 244 => '5.4', 245 => '5.1' },
- 'season' => { 408 => 'season' },
- 'section' => { 409 => 'section' },
+ 'sceneselect' => { 332 => 0x21f },
+ 'scenetype' => { 104 => 0xa301, 399 => 'SceneType' },
+ 'screentips' => { 235 => '12.7', 236 => '5.3', 241 => '13.1', 242 => '4.4', 245 => '5.4', 246 => '5.1' },
+ 'season' => { 409 => 'season' },
+ 'section' => { 410 => 'section' },
'securityclassification' => { 104 => 0x9212 },
'selectableafpoint' => { 72 => 0x509 },
'selectafareaselectmode' => { 72 => 0x512 },
- 'selftimer' => { 30 => 0x2, 267 => 0x2e, 331 => 0x214 },
+ 'selftimer' => { 30 => 0x2, 268 => 0x2e, 332 => 0x214 },
'selftimer2' => { 66 => 0x1d },
- 'selftimerinterval' => { 241 => '19.2' },
+ 'selftimerinterval' => { 242 => '19.2' },
'selftimermode' => { 104 => 0x882b },
- 'selftimershotcount' => { 235 => '20.2', 237 => '18.2', 238 => '19.2', 239 => '19.2', 241 => '19.3', 244 => '20.3', 245 => '20.2' },
- 'selftimershotinterval' => { 235 => '20.3', 244 => '20.2' },
- 'selftimertime' => { 85 => 0x1806, 159 => 0x1f, 234 => '18.1', 235 => '20.1', 236 => '3.3', 237 => '18.1', 238 => '19.1', 239 => '19.1', 240 => '7.2', 241 => '19.1', 242 => '3.3', 244 => '20.1', 245 => '20.1' },
- 'sellingagency' => { 409 => 'sellingAgency' },
+ 'selftimershotcount' => { 236 => '20.2', 238 => '18.2', 239 => '19.2', 240 => '19.2', 242 => '19.3', 245 => '20.3', 246 => '20.2' },
+ 'selftimershotinterval' => { 236 => '20.3', 245 => '20.2' },
+ 'selftimertime' => { 85 => 0x1806, 159 => 0x1f, 235 => '18.1', 236 => '20.1', 237 => '3.3', 238 => '18.1', 239 => '19.1', 240 => '19.1', 241 => '7.2', 242 => '19.1', 243 => '3.3', 245 => '20.1', 246 => '20.1' },
+ 'sellingagency' => { 410 => 'sellingAgency' },
'seminfo' => { 104 => 0x8546 },
- 'sensingmethod' => { 104 => 0xa217, 398 => 'SensingMethod' },
- 'sensitivityadjust' => { 300 => 0x40 },
- 'sensitivitysteps' => { 281 => ['14.3','17.4'], 283 => 0x1 },
- 'sensitivitytype' => { 104 => 0x8830, 399 => 'SensitivityType' },
- 'sensorareas' => { 329 => 0xa010 },
- 'sensorbitdepth' => { 269 => 0x312d },
+ 'sensingmethod' => { 104 => 0xa217, 399 => 'SensingMethod' },
+ 'sensitivityadjust' => { 301 => 0x40 },
+ 'sensitivitysteps' => { 282 => ['14.3','17.4'], 284 => 0x1 },
+ 'sensitivitytype' => { 104 => 0x8830, 400 => 'SensitivityType' },
+ 'sensor' => { 166 => 0x665e },
+ 'sensorareas' => { 330 => 0xa010 },
+ 'sensorbitdepth' => { 270 => 0x312d },
'sensorbluelevel' => { 64 => 0x5 },
- 'sensorcalibration' => { 251 => 0x805 },
+ 'sensorcalibration' => { 252 => 0x805 },
'sensorcleaning' => { 78 => 0xd },
'sensorfullheight' => { 117 => 0xf904 },
'sensorfullwidth' => { 117 => 0xf903 },
- 'sensorheight' => { 117 => 0xf901, 122 => 0xfa21, 163 => 0x8, 269 => 0x312c, 323 => 0x1602 },
- 'sensorpixelsize' => { 191 => 0x9a },
+ 'sensorheight' => { 117 => 0xf901, 122 => 0xfa21, 163 => 0x8, 270 => 0x312c, 324 => 0x1602 },
+ 'sensorpixelsize' => { 192 => 0x9a },
'sensorredlevel' => { 64 => 0x4 },
'sensorserialnumber' => { 118 => 0x9ce },
- 'sensorsize' => { 134 => 'SensorSize', 300 => 0x35 },
- 'sensortemperature' => { 250 => 0x1500, 252 => 0x1007, 305 => 0xc, 332 => [0x39,0x55] },
- 'sensortemperature2' => { 305 => 0xe },
- 'sensorwidth' => { 117 => 0xf900, 122 => 0xfa20, 163 => 0xa, 269 => 0x312b, 323 => 0x1601 },
- 'sequence' => { 319 => 0x7 },
- 'sequencefilenumber' => { 359 => 0x4, 360 => 0x4, 361 => 0x4, 362 => 0x4, 367 => 0xc, 368 => 0xc, 369 => 0x1a },
- 'sequenceimagenumber' => { 359 => 0x0, 360 => 0x0, 361 => 0x0, 362 => 0x0, 367 => 0x8, 368 => 0x8, 369 => 0x12, 375 => 0x24 },
- 'sequencelength' => { 367 => 0x22, 368 => 0x1e, 369 => [0x16,0x1e] },
- 'sequencename' => { 408 => 'sequenceName' },
- 'sequencenumber' => { 66 => 0x9, 100 => 0x301c, 109 => 0x1101, 120 => 0x1d, 214 => 0x51c, 267 => 0x2b, 341 => [0x10c,0x30c], 351 => 0xb04a, 408 => 'sequenceNumber' },
- 'sequenceshotinterval' => { 331 => 0x224 },
- 'sequencetotalnumber' => { 408 => 'sequenceTotalNumber' },
- 'sequentialshot' => { 331 => 0x20e },
- 'serialnumber' => { 54 => 0xc, 85 => 0x180b, 104 => [0xa431,0xfde9], 117 => 0xfa04, 119 => 0xfa00, 121 => 0xc354, 122 => 0xfa19, 131 => 0x0, 134 => 'SerialNumber', 191 => [0xa0,0x1d], 248 => 0x101, 252 => [0x404,0x101a], 263 => 0x303, 269 => 0x3103, 300 => 0x229, 319 => 0x15, 323 => 0x5, 332 => 0x2, 390 => 'SerialNumber', 399 => 'BodySerialNumber' },
+ 'sensorsize' => { 134 => 'SensorSize', 301 => 0x35 },
+ 'sensortemperature' => { 251 => 0x1500, 253 => 0x1007, 306 => 0xc, 333 => [0x39,0x55] },
+ 'sensortemperature2' => { 306 => 0xe },
+ 'sensorwidth' => { 117 => 0xf900, 122 => 0xfa20, 163 => 0xa, 270 => 0x312b, 324 => 0x1601 },
+ 'sequence' => { 320 => 0x7 },
+ 'sequencefilenumber' => { 360 => 0x4, 361 => 0x4, 362 => 0x4, 363 => 0x4, 368 => 0xc, 369 => 0xc, 370 => 0x1a },
+ 'sequenceimagenumber' => { 360 => 0x0, 361 => 0x0, 362 => 0x0, 363 => 0x0, 368 => 0x8, 369 => 0x8, 370 => 0x12, 376 => 0x24 },
+ 'sequencelength' => { 368 => 0x22, 369 => 0x1e, 370 => [0x16,0x1e] },
+ 'sequencename' => { 409 => 'sequenceName' },
+ 'sequencenumber' => { 66 => 0x9, 100 => 0x301c, 109 => 0x1101, 120 => 0x1d, 215 => 0x51c, 268 => 0x2b, 342 => [0x10c,0x30c], 352 => 0xb04a, 409 => 'sequenceNumber' },
+ 'sequenceshotinterval' => { 332 => 0x224 },
+ 'sequencetotalnumber' => { 409 => 'sequenceTotalNumber' },
+ 'sequentialshot' => { 332 => 0x20e },
+ 'serialnumber' => { 54 => 0xc, 85 => 0x180b, 104 => [0xa431,0xfde9], 117 => 0xfa04, 119 => 0xfa00, 121 => 0xc354, 122 => 0xfa19, 131 => 0x0, 134 => 'SerialNumber', 192 => [0xa0,0x1d], 249 => 0x101, 253 => [0x404,0x101a], 264 => 0x303, 270 => 0x3103, 301 => 0x229, 320 => 0x15, 324 => 0x5, 333 => 0x2, 391 => 'SerialNumber', 400 => 'BodySerialNumber' },
'serialnumberformat' => { 54 => 0x15, 85 => 0x183b },
- 'seriesdatetime' => { 381 => 'SeriesDateTime' },
- 'seriesdescription' => { 381 => 'SeriesDescription' },
- 'seriesmodality' => { 381 => 'SeriesModality' },
- 'seriesnumber' => { 381 => 'SeriesNumber', 409 => 'seriesNumber' },
- 'seriestitle' => { 409 => 'seriesTitle' },
+ 'seriesdatetime' => { 382 => 'SeriesDateTime' },
+ 'seriesdescription' => { 382 => 'SeriesDescription' },
+ 'seriesmodality' => { 382 => 'SeriesModality' },
+ 'seriesnumber' => { 382 => 'SeriesNumber', 410 => 'seriesNumber' },
+ 'seriestitle' => { 410 => 'seriesTitle' },
'serviceidentifier' => { 113 => 0x1e },
- 'servingsize' => { 411 => 'servingSize' },
+ 'servingsize' => { 412 => 'servingSize' },
'setbuttoncrosskeysfunc' => { 75 => 0x0, 76 => 0x0 },
'setbuttonwhenshooting' => { 70 => 0x1, 72 => 0x704, 78 => 0xc },
'setfunctionwhenshooting' => { 73 => 0x0, 74 => 0x1, 77 => 0x1 },
- 'setting' => { 408 => 'setting' },
- 'shadingcompensation' => { 247 => 0x50c, 267 => 0x8a },
- 'shadingcompensation2' => { 251 => 0x1012 },
- 'shadow' => { 332 => 0xe },
+ 'setting' => { 409 => 'setting' },
+ 'shadingcompensation' => { 248 => 0x50c, 268 => 0x8a },
+ 'shadingcompensation2' => { 252 => 0x1012 },
+ 'shadow' => { 333 => 0xe },
'shadowadj' => { 90 => 0x2030b },
- 'shadowcorrection' => { 300 => 0x79 },
- 'shadowprotection' => { 226 => 0x0 },
- 'shadows' => { 104 => 0xfe52, 387 => 'Shadows', 394 => 'Shadows' },
- 'shadows2012' => { 394 => 'Shadows2012' },
+ 'shadowcorrection' => { 301 => 0x79 },
+ 'shadowprotection' => { 227 => 0x0 },
+ 'shadows' => { 104 => 0xfe52, 388 => 'Shadows', 395 => 'Shadows' },
+ 'shadows2012' => { 395 => 'Shadows2012' },
'shadowscale' => { 104 => 0xc633 },
- 'shadowtint' => { 394 => 'ShadowTint' },
+ 'shadowtint' => { 395 => 'ShadowTint' },
'shadowtone' => { 109 => 0x1040 },
- 'shakereduction' => { 302 => 0x1, 303 => 0x1 },
- 'sharpendetail' => { 394 => 'SharpenDetail' },
- 'sharpenedgemasking' => { 394 => 'SharpenEdgeMasking' },
- 'sharpening' => { 269 => 0x300b },
- 'sharpeningadj' => { 230 => 0x2b },
- 'sharpenradius' => { 394 => 'SharpenRadius' },
- 'sharpness' => { 7 => [0x42,0x48], 9 => 0x72, 11 => 0x74, 30 => 0xf, 64 => 0x2, 99 => 0xb, 100 => [0x3011,0x21], 104 => [0xa40a,0xfe56], 109 => 0x1001, 120 => 0x6b, 129 => 0x37, 134 => 'Sharpness', 156 => 0x21, 157 => 0x30, 158 => 0x26, 159 => 0x18, 164 => 0x3, 191 => 0x6, 193 => 0x32, 252 => 0x100f, 267 => 0x41, 300 => 0x21, 307 => 0xb, 319 => 0x26, 322 => 0x22, 323 => [0x1003,0x1014], 332 => 0x11, 339 => 0x1c, 340 => 0x19, 351 => 0x2006, 375 => 0x52, 394 => 'Sharpness', 398 => 'Sharpness' },
- 'sharpnessadj' => { 90 => 0x20310, 95 => 0x25a, 379 => 0x801a },
+ 'shakereduction' => { 303 => 0x1, 304 => 0x1 },
+ 'sharpendetail' => { 395 => 'SharpenDetail' },
+ 'sharpenedgemasking' => { 395 => 'SharpenEdgeMasking' },
+ 'sharpening' => { 270 => 0x300b },
+ 'sharpeningadj' => { 231 => 0x2b },
+ 'sharpenradius' => { 395 => 'SharpenRadius' },
+ 'sharpness' => { 7 => [0x42,0x48], 9 => 0x72, 11 => 0x74, 30 => 0xf, 64 => 0x2, 99 => 0xb, 100 => [0x3011,0x21], 104 => [0xa40a,0xfe56], 109 => 0x1001, 120 => 0x6b, 129 => 0x37, 134 => 'Sharpness', 156 => 0x21, 157 => 0x30, 158 => 0x26, 159 => 0x18, 164 => 0x3, 192 => 0x6, 194 => 0x32, 253 => 0x100f, 268 => 0x41, 301 => 0x21, 308 => 0xb, 320 => 0x26, 323 => 0x22, 324 => [0x1003,0x1014], 333 => 0x11, 340 => 0x1c, 341 => 0x19, 352 => 0x2006, 376 => 0x52, 395 => 'Sharpness', 399 => 'Sharpness' },
+ 'sharpnessadj' => { 90 => 0x20310, 95 => 0x25a, 380 => 0x801a },
'sharpnessadjon' => { 90 => '0x20310.0' },
'sharpnessauto' => { 61 => 0x94 },
- 'sharpnessfactor' => { 252 => 0x102a },
+ 'sharpnessfactor' => { 253 => 0x102a },
'sharpnessfaithful' => { 18 => 0xf5, 60 => 0x64, 61 => 0x64 },
'sharpnessfrequency' => { 7 => [0x41,0x47], 64 => 0x3 },
'sharpnesslandscape' => { 18 => 0xf3, 60 => 0x34, 61 => 0x34 },
'sharpnessmonochrome' => { 18 => 0xf6, 60 => 0x7c, 61 => 0x7c },
'sharpnessneutral' => { 18 => 0xf4, 60 => 0x4c, 61 => 0x4c },
- 'sharpnessovershoot' => { 379 => 0x801b },
+ 'sharpnessovershoot' => { 380 => 0x801b },
'sharpnessportrait' => { 18 => 0xf2, 60 => 0x1c, 61 => 0x1c },
- 'sharpnesssetting' => { 247 => 0x506, 255 => 0x1013, 341 => 0x12, 355 => 0xa },
+ 'sharpnesssetting' => { 248 => 0x506, 256 => 0x1013, 342 => 0x12, 356 => 0xa },
'sharpnessstandard' => { 18 => 0xf1, 60 => 0x4, 61 => 0x4 },
'sharpnessstrength' => { 90 => 0x20311 },
- 'sharpnessthreshold' => { 379 => 0x801d },
- 'sharpnessundershoot' => { 379 => 0x801c },
+ 'sharpnessthreshold' => { 380 => 0x801d },
+ 'sharpnessundershoot' => { 380 => 0x801c },
'sharpnessuserdef1' => { 18 => 0xf7, 60 => 0x94, 61 => 0xac },
'sharpnessuserdef2' => { 18 => 0xf8, 60 => 0xac, 61 => 0xc4 },
'sharpnessuserdef3' => { 18 => 0xf9, 60 => 0xc4, 61 => 0xdc },
- 'shootid' => { 408 => 'shootID' },
+ 'shootid' => { 409 => 'shootID' },
'shootingdistance' => { 90 => 0x20701 },
- 'shootinginfodisplay' => { 234 => '13.2', 235 => '5.1', 240 => '10.2', 241 => '4.1', 244 => '5.1', 245 => '5.3' },
- 'shootinginfomonitorofftime' => { 234 => '26.2', 235 => '22.2', 240 => '9.1', 241 => '21.2', 244 => '22.2', 245 => '22.2' },
- 'shootingmode' => { 134 => 'ShootingMode', 191 => 0x89, 267 => 0x1f },
- 'shootingmodesetting' => { 236 => '5.1' },
- 'shortdescription' => { 396 => 'shortdescription' },
+ 'shootinginfodisplay' => { 235 => '13.2', 236 => '5.1', 241 => '10.2', 242 => '4.1', 245 => '5.1', 246 => '5.3' },
+ 'shootinginfomonitorofftime' => { 235 => '26.2', 236 => '22.2', 241 => '9.1', 242 => '21.2', 245 => '22.2', 246 => '22.2' },
+ 'shootingmode' => { 134 => 'ShootingMode', 192 => 0x89, 268 => 0x1f },
+ 'shootingmodesetting' => { 237 => '5.1' },
+ 'shortdescription' => { 397 => 'shortdescription' },
'shortdocumentid' => { 112 => 0xba },
'shortownername' => { 18 => 0xac },
'shortreleasetimelag' => { 72 => 0x80d },
- 'shotdate' => { 419 => 'shotDate' },
- 'shotday' => { 419 => 'shotDay' },
- 'shotlocation' => { 419 => 'shotLocation' },
- 'shotname' => { 419 => 'shotName' },
- 'shotnumber' => { 419 => 'shotNumber' },
- 'shotnumbersincepowerup' => { 354 => 0x44e, 367 => 0x1a, 368 => 0x16, 369 => 0xa },
- 'shotnumbersincepowerup2' => { 341 => 0x200 },
- 'shotsize' => { 419 => 'shotSize' },
+ 'shotdate' => { 420 => 'shotDate' },
+ 'shotday' => { 420 => 'shotDay' },
+ 'shotlocation' => { 420 => 'shotLocation' },
+ 'shotname' => { 420 => 'shotName' },
+ 'shotnumber' => { 420 => 'shotNumber' },
+ 'shotnumbersincepowerup' => { 355 => 0x44e, 368 => 0x1a, 369 => 0x16, 370 => 0xa },
+ 'shotnumbersincepowerup2' => { 342 => 0x200 },
+ 'shotsize' => { 420 => 'shotSize' },
'shutter-aelock' => { 70 => 0x4, 72 => 0x701, 73 => 0x3, 74 => 0x4, 75 => 0x3, 76 => 0x3, 77 => 0x4, 78 => 0x2 },
'shutteraelbutton' => { 71 => 0x4 },
'shutterbuttonafonbutton' => { 72 => 0x701 },
- 'shuttercount' => { 10 => 0x176, 48 => 0x1, 191 => 0xa7, 198 => [0x6a,0x157,0x24d], 199 => 0x286, 200 => 0x279, 201 => 0x284, 202 => 0x242, 203 => 0x280, 204 => 0x276, 205 => [0x27d,0x27f], 206 => 0x246, 208 => 0x2d6, 209 => 0x321, 210 => 0xbd8, 211 => 0x287, 212 => 0x320, 213 => 0x24a, 214 => 0x5fb, 216 => 0x2d5, 300 => 0x5d, 350 => 0x846, 353 => [0x125,0x14a] },
+ 'shuttercount' => { 10 => 0x176, 48 => 0x1, 192 => 0xa7, 199 => [0x6a,0x157,0x24d], 200 => 0x286, 201 => 0x279, 202 => 0x284, 203 => 0x242, 204 => 0x280, 205 => 0x276, 206 => [0x27d,0x27f], 207 => 0x246, 209 => 0x2d6, 210 => 0x321, 211 => 0xbd8, 212 => 0x287, 213 => 0x320, 214 => 0x24a, 215 => 0x5fb, 217 => 0x2d5, 301 => 0x5d, 351 => 0x846, 354 => [0x125,0x14a] },
'shuttercurtainsync' => { 70 => 0xf, 71 => 0xf, 72 => 0x305, 73 => 0xe, 74 => 0xf, 75 => 0x8, 76 => 0x8, 77 => 0xf, 78 => 0x8 },
'shuttermode' => { 120 => 0x1b },
- 'shutterreleasebuttonae-l' => { 234 => '17.7', 235 => '18.4', 237 => '16.1', 238 => '17.1', 239 => '17.1', 240 => '7.1', 241 => '17.5', 244 => '18.4', 245 => '18.2' },
+ 'shutterreleasebuttonae-l' => { 235 => '17.7', 236 => '18.4', 238 => '16.1', 239 => '17.1', 240 => '17.1', 241 => '7.1', 242 => '17.5', 245 => '18.4', 246 => '18.2' },
'shutterreleasemethod' => { 85 => 0x1010 },
'shutterreleasenocfcard' => { 70 => 0x2, 71 => 0x2, 78 => 0xf },
'shutterreleasetiming' => { 85 => 0x1011 },
'shutterreleasewithoutlens' => { 72 => 0x711 },
- 'shutterspeedlock' => { 235 => '38.1', 244 => '38.1' },
+ 'shutterspeedlock' => { 236 => '38.1', 245 => '38.1' },
'shutterspeedrange' => { 72 => 0x10c },
- 'shutterspeedsetting' => { 159 => 0x6, 339 => 0x2f, 340 => 0x28, 341 => 0x0 },
- 'shutterspeedvalue' => { 81 => 0x1, 104 => 0x9201, 252 => 0x1000, 398 => 'ShutterSpeedValue' },
- 'shuttertype' => { 109 => 0x1050, 267 => 0x9f },
- 'sidecarforextension' => { 406 => 'SidecarForExtension' },
+ 'shutterspeedsetting' => { 159 => 0x6, 340 => 0x2f, 341 => 0x28, 342 => 0x0 },
+ 'shutterspeedvalue' => { 81 => 0x1, 104 => 0x9201, 253 => 0x1000, 399 => 'ShutterSpeedValue' },
+ 'shuttertype' => { 109 => 0x1050, 268 => 0x9f },
+ 'sidecarforextension' => { 407 => 'SidecarForExtension' },
'similarityindex' => { 112 => 0xe4 },
'singleframebracketing' => { 159 => 0x21 },
- 'skilllevel' => { 411 => 'skillLevel' },
- 'slaveflashmeteringsegments' => { 300 => 0x20b },
- 'slideshowname' => { 408 => 'slideshowName' },
- 'slideshownumber' => { 408 => 'slideshowNumber' },
- 'slideshowtotalnumber' => { 408 => 'slideshowTotalNumber' },
+ 'skilllevel' => { 412 => 'skillLevel' },
+ 'slaveflashmeteringsegments' => { 301 => 0x20b },
+ 'slideshowname' => { 409 => 'slideshowName' },
+ 'slideshownumber' => { 409 => 'slideshowNumber' },
+ 'slideshowtotalnumber' => { 409 => 'slideshowTotalNumber' },
'slowshutter' => { 66 => 0x8 },
'slowsync' => { 109 => 0x1030 },
- 'smartrange' => { 329 => 0xa012 },
- 'smileshutter' => { 341 => 0x31 },
- 'smileshuttermode' => { 341 => 0x27 },
- 'smoothness' => { 104 => 0xfe57, 394 => 'Smoothness' },
- 'softskineffect' => { 351 => 0x200f },
- 'software' => { 104 => 0x131, 135 => 'Software', 259 => 'Software', 332 => 0x18, 415 => 'Software' },
- 'softwareversion' => { 331 => 0x207 },
- 'sonydatetime' => { 357 => 0x6, 359 => 0x1b6, 360 => 0x210, 361 => 0x1fe, 362 => 0x22c },
- 'sonydatetime2' => { 366 => [0x51,0x5d] },
- 'sonyexposuretime' => { 366 => 0x46 },
- 'sonyexposuretime2' => { 375 => 0xe },
- 'sonyfnumber' => { 366 => [0x3c,0x48], 375 => 0x14 },
- 'sonyimageheight' => { 357 => 0x1a, 367 => 0x44, 368 => 0x3f, 369 => 0x47 },
- 'sonyimagesize' => { 159 => 0x3b, 339 => 0x54, 340 => 0x54, 341 => 0x9 },
- 'sonyimagewidth' => { 357 => 0x1c },
- 'sonyiso' => { 359 => 0x1218, 360 => 0x11f4, 361 => 0x1270, 362 => [0x1254,0x1258,0x1280], 363 => 0x113c, 364 => 0x344, 365 => 0x346, 375 => 0x4 },
- 'sonymaxaperturevalue' => { 375 => 0x16 },
- 'sonymodelid' => { 351 => 0xb001 },
+ 'smartrange' => { 330 => 0xa012 },
+ 'smileshutter' => { 342 => 0x31 },
+ 'smileshuttermode' => { 342 => 0x27 },
+ 'smoothness' => { 104 => 0xfe57, 395 => 'Smoothness' },
+ 'softskineffect' => { 352 => 0x200f },
+ 'software' => { 104 => 0x131, 135 => 'Software', 260 => 'Software', 333 => 0x18, 416 => 'Software' },
+ 'softwareversion' => { 332 => 0x207 },
+ 'sonydatetime' => { 358 => 0x6, 360 => 0x1b6, 361 => 0x210, 362 => 0x1fe, 363 => 0x22c },
+ 'sonydatetime2' => { 367 => [0x51,0x5d] },
+ 'sonyexposuretime' => { 367 => 0x46 },
+ 'sonyexposuretime2' => { 376 => 0xe },
+ 'sonyfnumber' => { 367 => [0x3c,0x48], 376 => 0x14 },
+ 'sonyimageheight' => { 358 => 0x1a, 368 => 0x44, 369 => 0x3f, 370 => 0x47 },
+ 'sonyimagesize' => { 159 => 0x3b, 340 => 0x54, 341 => 0x54, 342 => 0x9 },
+ 'sonyimagewidth' => { 358 => 0x1c },
+ 'sonyiso' => { 360 => 0x1218, 361 => 0x11f4, 362 => 0x1270, 363 => [0x1254,0x1258,0x1280], 364 => 0x113c, 365 => 0x344, 366 => 0x346, 376 => 0x4 },
+ 'sonymaxaperturevalue' => { 376 => 0x16 },
+ 'sonymodelid' => { 352 => 0xb001 },
'sonyquality' => { 159 => 0x3c },
- 'source' => { 112 => 0x73, 259 => 'Source', 395 => 'source', 396 => 'source', 406 => 'Source' },
- 'sourcedirectoryindex' => { 287 => 0x0 },
- 'sourcefileindex' => { 287 => 0x2 },
- 'sourcephotoscount' => { 383 => 'SourcePhotosCount' },
- 'spatialfrequencyresponse' => { 398 => 'SpatialFrequencyResponse' },
- 'spatialfrequencyresponsecolumns' => { 398 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseColumns'] },
- 'spatialfrequencyresponsenames' => { 398 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseNames'] },
- 'spatialfrequencyresponserows' => { 398 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseRows'] },
- 'spatialfrequencyresponsevalues' => { 398 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseValues'] },
- 'speakerplacement' => { 419 => 'speakerPlacement' },
+ 'source' => { 112 => 0x73, 260 => 'Source', 396 => 'source', 397 => 'source', 407 => 'Source' },
+ 'sourcedirectoryindex' => { 288 => 0x0 },
+ 'sourcefileindex' => { 288 => 0x2 },
+ 'sourcephotoscount' => { 384 => 'SourcePhotosCount' },
+ 'spatialfrequencyresponse' => { 399 => 'SpatialFrequencyResponse' },
+ 'spatialfrequencyresponsecolumns' => { 399 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseColumns'] },
+ 'spatialfrequencyresponsenames' => { 399 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseNames'] },
+ 'spatialfrequencyresponserows' => { 399 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseRows'] },
+ 'spatialfrequencyresponsevalues' => { 399 => [\'SpatialFrequencyResponse','SpatialFrequencyResponseValues'] },
+ 'speakerplacement' => { 420 => 'speakerPlacement' },
'specialeffectlevel' => { 100 => 0x3030 },
'specialeffectmode' => { 100 => 0x2076 },
'specialeffectsetting' => { 100 => 0x3031 },
'specialinstructions' => { 112 => 0x28 },
- 'specialmode' => { 252 => 0x200, 331 => 0x200 },
- 'specialoccasion' => { 411 => 'specialOccasion' },
- 'spectralsensitivity' => { 104 => 0x8824, 398 => 'SpectralSensitivity' },
+ 'specialmode' => { 253 => 0x200, 332 => 0x200 },
+ 'specialoccasion' => { 412 => 'specialOccasion' },
+ 'spectralsensitivity' => { 104 => 0x8824, 399 => 'SpectralSensitivity' },
'specularwhitelevel' => { 37 => [0x2b9,0x2d0,0x2d4], 39 => 0x1e4, 40 => [0x1fd,0x2dd], 41 => 0x30f },
- 'splittoningbalance' => { 394 => 'SplitToningBalance' },
- 'splittoninghighlighthue' => { 394 => 'SplitToningHighlightHue' },
- 'splittoninghighlightsaturation' => { 394 => 'SplitToningHighlightSaturation' },
- 'splittoningshadowhue' => { 394 => 'SplitToningShadowHue' },
- 'splittoningshadowsaturation' => { 394 => 'SplitToningShadowSaturation' },
- 'sport' => { 409 => 'sport' },
+ 'splittoningbalance' => { 395 => 'SplitToningBalance' },
+ 'splittoninghighlighthue' => { 395 => 'SplitToningHighlightHue' },
+ 'splittoninghighlightsaturation' => { 395 => 'SplitToningHighlightSaturation' },
+ 'splittoningshadowhue' => { 395 => 'SplitToningShadowHue' },
+ 'splittoningshadowsaturation' => { 395 => 'SplitToningShadowSaturation' },
+ 'sport' => { 410 => 'sport' },
'spotfocuspointx' => { 156 => 0x2d },
'spotfocuspointy' => { 156 => 0x2e },
'spotmeteringmode' => { 30 => 0x27 },
'spotmeterlinktoafpoint' => { 72 => 0x107 },
- 'sractive' => { 281 => '17.1' },
+ 'sractive' => { 282 => '17.1' },
'srawquality' => { 30 => 0x2e },
- 'srfocallength' => { 302 => 0x3 },
- 'srhalfpresstime' => { 302 => 0x2 },
- 'srresult' => { 302 => 0x0, 303 => 0x0 },
+ 'srfocallength' => { 303 => 0x3 },
+ 'srhalfpresstime' => { 303 => 0x2 },
+ 'srresult' => { 303 => 0x0, 304 => 0x0 },
'standardoutputhighlightpoint' => { 96 => 0x14 },
- 'standardoutputsensitivity' => { 104 => 0x8831, 399 => 'StandardOutputSensitivity' },
+ 'standardoutputsensitivity' => { 104 => 0x8831, 400 => 'StandardOutputSensitivity' },
'standardoutputshadowpoint' => { 96 => 0x15 },
'standardrawcolortone' => { 96 => 0xd },
'standardrawcontrast' => { 96 => 0xf },
@@ -4240,28 +4242,28 @@ my %tagLookup = (
'standardunsharpmaskfineness' => { 96 => 0x94 },
'standardunsharpmaskstrength' => { 96 => 0x92 },
'standardunsharpmaskthreshold' => { 96 => 0x96 },
- 'standbytimer' => { 235 => '19.1', 239 => '18.1', 244 => '19.1' },
- 'startingpage' => { 409 => 'startingPage' },
+ 'standbytimer' => { 236 => '19.1', 240 => '18.1', 245 => '19.1' },
+ 'startingpage' => { 410 => 'startingPage' },
'startmovieshooting' => { 72 => 0x70d },
- 'starttimecode' => { 419 => 'startTimecode' },
- 'starttimecodetimeformat' => { 419 => [\'startTimecode','startTimecodeTimeFormat'] },
- 'starttimecodetimevalue' => { 419 => [\'startTimecode','startTimecodeTimeValue'] },
- 'starttimecodevalue' => { 419 => [\'startTimecode','startTimecodeValue'] },
- 'starttimesamplesize' => { 419 => 'startTimeSampleSize' },
- 'starttimescale' => { 419 => 'startTimeScale' },
- 'state' => { 139 => 'State', 267 => 0x6b, 406 => 'State' },
- 'status' => { 382 => 'Status', 386 => 'Status' },
- 'stitchingsoftware' => { 383 => 'StitchingSoftware' },
- 'stopsabovebaseiso' => { 358 => 0x113e, 359 => 0x113e, 360 => 0x111a, 361 => 0x1196, 362 => 0x1172, 363 => 0x102a, 364 => 0x222, 365 => 0x222, 375 => 0xa },
+ 'starttimecode' => { 420 => 'startTimecode' },
+ 'starttimecodetimeformat' => { 420 => [\'startTimecode','startTimecodeTimeFormat'] },
+ 'starttimecodetimevalue' => { 420 => [\'startTimecode','startTimecodeTimeValue'] },
+ 'starttimecodevalue' => { 420 => [\'startTimecode','startTimecodeValue'] },
+ 'starttimesamplesize' => { 420 => 'startTimeSampleSize' },
+ 'starttimescale' => { 420 => 'startTimeScale' },
+ 'state' => { 139 => 'State', 268 => 0x6b, 407 => 'State' },
+ 'status' => { 383 => 'Status', 387 => 'Status' },
+ 'stitchingsoftware' => { 384 => 'StitchingSoftware' },
+ 'stopsabovebaseiso' => { 359 => 0x113e, 360 => 0x113e, 361 => 0x111a, 362 => 0x1196, 363 => 0x1172, 364 => 0x102a, 365 => 0x222, 366 => 0x222, 376 => 0xa },
'storagemethod' => { 163 => 0x12 },
- 'storebyorientation' => { 235 => '46.3', 244 => '47.3' },
- 'straightenangle' => { 227 => 0x2fc08431 },
+ 'storebyorientation' => { 236 => '46.3', 245 => '47.3' },
+ 'straightenangle' => { 228 => 0x2fc08431 },
'streamtype' => { 152 => 'StreamType' },
- 'stretchmode' => { 419 => 'stretchMode' },
- 'studydatetime' => { 381 => 'StudyDateTime' },
- 'studydescription' => { 381 => 'StudyDescription' },
- 'studyid' => { 381 => 'StudyID' },
- 'studyphysician' => { 381 => 'StudyPhysician' },
+ 'stretchmode' => { 420 => 'stretchMode' },
+ 'studydatetime' => { 382 => 'StudyDateTime' },
+ 'studydescription' => { 382 => 'StudyDescription' },
+ 'studyid' => { 382 => 'StudyID' },
+ 'studyphysician' => { 382 => 'StudyPhysician' },
'sub-location' => { 112 => 0x5c },
'subfiledata' => { 142 => 'data' },
'subfiledirectory' => { 142 => '1Directory' },
@@ -4269,50 +4271,50 @@ my %tagLookup = (
'subfilename' => { 142 => '1Name' },
'subfileresource' => { 142 => 'rsrc' },
'subfiletype' => { 104 => 0xfe, 142 => '0Type' },
- 'subject' => { 256 => 'Subject', 314 => 'Subject', 395 => 'subject', 405 => 'Subject', 420 => 'subject' },
- 'subjectarea' => { 104 => 0x9214, 398 => 'SubjectArea' },
- 'subjectcode' => { 403 => 'SubjectCode' },
- 'subjectdistance' => { 104 => 0x9206, 120 => 0x3e, 398 => 'SubjectDistance' },
- 'subjectdistancerange' => { 104 => 0xa40c, 398 => 'SubjectDistanceRange' },
- 'subjectlocation' => { 104 => 0xa214, 398 => 'SubjectLocation' },
+ 'subject' => { 257 => 'Subject', 315 => 'Subject', 396 => 'subject', 406 => 'Subject', 421 => 'subject' },
+ 'subjectarea' => { 104 => 0x9214, 399 => 'SubjectArea' },
+ 'subjectcode' => { 404 => 'SubjectCode' },
+ 'subjectdistance' => { 104 => 0x9206, 120 => 0x3e, 399 => 'SubjectDistance' },
+ 'subjectdistancerange' => { 104 => 0xa40c, 399 => 'SubjectDistanceRange' },
+ 'subjectlocation' => { 104 => 0xa214, 399 => 'SubjectLocation' },
'subjectprogram' => { 156 => 0x22 },
'subjectreference' => { 112 => 0xc },
- 'sublabels4' => { 402 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabels'] },
- 'sublabels5' => { 402 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabels'] },
- 'sublables1' => { 402 => [\'TagStructure','TagStructureSubLabels'] },
- 'sublables2' => { 402 => [\'TagStructure','TagStructureSubLabelsSubLabels'] },
- 'sublables3' => { 402 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabels'] },
+ 'sublabels4' => { 403 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabels'] },
+ 'sublabels5' => { 403 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabelsSubLabelsSubLabels'] },
+ 'sublables1' => { 403 => [\'TagStructure','TagStructureSubLabels'] },
+ 'sublables2' => { 403 => [\'TagStructure','TagStructureSubLabelsSubLabels'] },
+ 'sublables3' => { 403 => [\'TagStructure','TagStructureSubLabelsSubLabelsSubLabels'] },
'subsectime' => { 104 => 0x9290 },
'subsectimedigitized' => { 104 => 0x9292 },
'subsectimeoriginal' => { 104 => 0x9291 },
- 'subsection1' => { 409 => 'subsection1' },
- 'subsection2' => { 409 => 'subsection2' },
- 'subsection3' => { 409 => 'subsection3' },
- 'subsection4' => { 409 => 'subsection4' },
- 'subselector' => { 235 => '49.1' },
- 'subselectorassignment' => { 235 => '48.1' },
- 'subselectorplusdials' => { 235 => '49.2' },
- 'subtitle' => { 409 => 'subtitle' },
- 'subversionfilename' => { 402 => [\'SubVersions','SubVersionsFileName'] },
- 'subversionreference' => { 402 => [\'SubVersions','SubVersionsVersRef'] },
- 'subversions' => { 402 => 'SubVersions' },
+ 'subsection1' => { 410 => 'subsection1' },
+ 'subsection2' => { 410 => 'subsection2' },
+ 'subsection3' => { 410 => 'subsection3' },
+ 'subsection4' => { 410 => 'subsection4' },
+ 'subselector' => { 236 => '49.1' },
+ 'subselectorassignment' => { 236 => '48.1' },
+ 'subselectorplusdials' => { 236 => '49.2' },
+ 'subtitle' => { 410 => 'subtitle' },
+ 'subversionfilename' => { 403 => [\'SubVersions','SubVersionsFileName'] },
+ 'subversionreference' => { 403 => [\'SubVersions','SubVersionsVersRef'] },
+ 'subversions' => { 403 => 'SubVersions' },
'superimposeddisplay' => { 70 => 0xa, 72 => 0x510, 73 => 0x9, 74 => 0xa, 77 => 0xa, 78 => 0xe },
'supermacro' => { 54 => 0x1a },
- 'supplementalcategories' => { 112 => 0x14, 406 => 'SupplementalCategories' },
+ 'supplementalcategories' => { 112 => 0x14, 407 => 'SupplementalCategories' },
'supplementaltype' => { 114 => 0x37 },
- 'supplementdisplayid' => { 409 => 'supplementDisplayID' },
- 'supplementstartingpage' => { 409 => 'supplementStartingPage' },
- 'supplementtitle' => { 409 => 'supplementTitle' },
- 'svisosetting' => { 281 => 0x14 },
- 'sweeppanoramadirection' => { 267 => 0x93, 341 => 0x33 },
- 'sweeppanoramafieldofview' => { 267 => 0x94 },
- 'sweeppanoramasize' => { 341 => 0x32 },
+ 'supplementdisplayid' => { 410 => 'supplementDisplayID' },
+ 'supplementstartingpage' => { 410 => 'supplementStartingPage' },
+ 'supplementtitle' => { 410 => 'supplementTitle' },
+ 'svisosetting' => { 282 => 0x14 },
+ 'sweeppanoramadirection' => { 268 => 0x93, 342 => 0x33 },
+ 'sweeppanoramafieldofview' => { 268 => 0x94 },
+ 'sweeppanoramasize' => { 342 => 0x32 },
'switchtoregisteredafpoint' => { 71 => 0x12, 72 => 0x50a },
- 'tagged' => { 309 => 0xdd, 310 => 'Tagged', 388 => 'tagged' },
- 'tagslist' => { 397 => 'TagsList' },
- 'tagstructure' => { 402 => 'TagStructure' },
- 'takenumber' => { 419 => 'takeNumber' },
- 'tapename' => { 419 => 'tapeName' },
+ 'tagged' => { 310 => 0xdd, 311 => 'Tagged', 389 => 'tagged' },
+ 'tagslist' => { 398 => 'TagsList' },
+ 'tagstructure' => { 403 => 'TagStructure' },
+ 'takenumber' => { 420 => 'takeNumber' },
+ 'tapename' => { 420 => 'tapeName' },
'targetaperture' => { 66 => 0x4 },
'targetcompressionratio' => { 83 => 0x1 },
'targetdistancesetting' => { 85 => 0x1807 },
@@ -4352,97 +4354,97 @@ my %tagLookup = (
'taxontaxonomicstatus' => { 103 => [\'Taxon','TaxonTaxonomicStatus'] },
'taxonverbatimtaxonrank' => { 103 => [\'Taxon','TaxonVerbatimTaxonRank'] },
'taxonvernacularname' => { 103 => [\'Taxon','TaxonVernacularName'] },
- 'teaser' => { 409 => 'teaser' },
- 'teleconverter' => { 161 => 0x105, 351 => 0x105 },
- 'tempo' => { 419 => 'tempo' },
- 'termsandconditionstext' => { 407 => 'TermsAndConditionsText' },
- 'termsandconditionsurl' => { 407 => 'TermsAndConditionsURL' },
+ 'teaser' => { 410 => 'teaser' },
+ 'teleconverter' => { 161 => 0x105, 352 => 0x105 },
+ 'tempo' => { 420 => 'tempo' },
+ 'termsandconditionstext' => { 408 => 'TermsAndConditionsText' },
+ 'termsandconditionsurl' => { 408 => 'TermsAndConditionsURL' },
'testname' => { 105 => 'TestName' },
- 'textencoding' => { 190 => 0x4 },
- 'textlayername' => { 406 => [\'TextLayers','TextLayersLayerName'] },
- 'textlayers' => { 406 => 'TextLayers' },
- 'textlayertext' => { 406 => [\'TextLayers','TextLayersLayerText'] },
- 'textstamp' => { 267 => [0x8008,0x8009,0x3b,0x3e] },
+ 'textencoding' => { 191 => 0x4 },
+ 'textlayername' => { 407 => [\'TextLayers','TextLayersLayerName'] },
+ 'textlayers' => { 407 => 'TextLayers' },
+ 'textlayertext' => { 407 => [\'TextLayers','TextLayersLayerText'] },
+ 'textstamp' => { 268 => [0x8008,0x8009,0x3b,0x3e] },
'thresholding' => { 104 => 0x107 },
'thumbnailfilename' => { 85 => 0x817 },
- 'thumbnailformat' => { 417 => [\'Thumbnails','ThumbnailsFormat'] },
- 'thumbnailheight' => { 122 => 0xfa55, 417 => [\'Thumbnails','ThumbnailsHeight'] },
- 'thumbnailimage' => { 85 => 0x2008, 101 => 'ThumbnailImage', 107 => 0x3, 145 => 'data', 252 => 0x100, 417 => [\'Thumbnails','ThumbnailsImage'] },
+ 'thumbnailformat' => { 418 => [\'Thumbnails','ThumbnailsFormat'] },
+ 'thumbnailheight' => { 122 => 0xfa55, 418 => [\'Thumbnails','ThumbnailsHeight'] },
+ 'thumbnailimage' => { 85 => 0x2008, 101 => 'ThumbnailImage', 107 => 0x3, 145 => 'data', 253 => 0x100, 418 => [\'Thumbnails','ThumbnailsImage'] },
'thumbnailimagename' => { 145 => '1Name' },
'thumbnailimagesize' => { 145 => 'ImageSize' },
'thumbnailimagetype' => { 145 => '0Type' },
'thumbnailimagevalidarea' => { 54 => 0x13 },
'thumbnaillength' => { 104 => 0x202 },
'thumbnailoffset' => { 104 => 0x201 },
- 'thumbnails' => { 417 => 'Thumbnails' },
- 'thumbnailwidth' => { 122 => 0xfa54, 417 => [\'Thumbnails','ThumbnailsWidth'] },
- 'ticker' => { 409 => 'ticker' },
- 'tiffmeteringimage' => { 162 => 0x104c, 350 => 0x1110 },
+ 'thumbnails' => { 418 => 'Thumbnails' },
+ 'thumbnailwidth' => { 122 => 0xfa54, 418 => [\'Thumbnails','ThumbnailsWidth'] },
+ 'ticker' => { 410 => 'ticker' },
+ 'tiffmeteringimage' => { 162 => 0x104c, 351 => 0x1110 },
'tilelength' => { 104 => 0x143 },
'tilewidth' => { 104 => 0x142 },
- 'time' => { 118 => 0x401, 300 => 0x7 },
+ 'time' => { 118 => 0x401, 301 => 0x7 },
'timecodes' => { 104 => 0xc763 },
- 'timecreated' => { 112 => 0x3c, 120 => 0x14, 129 => 0x10, 310 => 'TimeCreated' },
- 'timeperiod' => { 409 => 'timePeriod' },
- 'timerfunctionbutton' => { 236 => '5.2', 237 => '12.1', 238 => '13.1' },
+ 'timecreated' => { 112 => 0x3c, 120 => 0x14, 129 => 0x10, 311 => 'TimeCreated' },
+ 'timeperiod' => { 410 => 'timePeriod' },
+ 'timerfunctionbutton' => { 237 => '5.2', 238 => '12.1', 239 => '13.1' },
'timerlength' => { 72 => 0x80c },
- 'timerrecording' => { 267 => 0x96 },
- 'timescaleparams' => { 419 => 'timeScaleParams' },
- 'timescaleparamsframeoverlappingpercentage' => { 419 => [\'timeScaleParams','timeScaleParamsFrameOverlappingPercentage'] },
- 'timescaleparamsframesize' => { 419 => [\'timeScaleParams','timeScaleParamsFrameSize'] },
- 'timescaleparamsquality' => { 419 => [\'timeScaleParams','timeScaleParamsQuality'] },
+ 'timerrecording' => { 268 => 0x96 },
+ 'timescaleparams' => { 420 => 'timeScaleParams' },
+ 'timescaleparamsframeoverlappingpercentage' => { 420 => [\'timeScaleParams','timeScaleParamsFrameOverlappingPercentage'] },
+ 'timescaleparamsframesize' => { 420 => [\'timeScaleParams','timeScaleParamsFrameSize'] },
+ 'timescaleparamsquality' => { 420 => [\'timeScaleParams','timeScaleParamsQuality'] },
'timesent' => { 113 => 0x50 },
- 'timesignature' => { 419 => 'timeSignature' },
- 'timesincepoweron' => { 267 => 0x29 },
- 'timestamp' => { 10 => 0x45e, 18 => 0x11c, 246 => 0x8, 259 => 'TimeStamp', 389 => 'Timestamp' },
+ 'timesignature' => { 420 => 'timeSignature' },
+ 'timesincepoweron' => { 268 => 0x29 },
+ 'timestamp' => { 10 => 0x45e, 18 => 0x11c, 247 => 0x8, 260 => 'TimeStamp', 390 => 'Timestamp' },
'timestamp1' => { 10 => 0x45a },
- 'timezone' => { 67 => 0x1, 219 => 0x0, 326 => 0xa },
+ 'timezone' => { 67 => 0x1, 220 => 0x0, 327 => 0xa },
'timezonecity' => { 67 => 0x2 },
'timezonecode' => { 88 => 0x1 },
'timezoneinfo' => { 88 => 0x2 },
'timezoneoffset' => { 104 => 0x882a },
- 'tint' => { 394 => 'Tint' },
- 'title' => { 135 => 'Title', 256 => 'Title', 259 => 'Title', 267 => 0x65, 314 => 'Title', 395 => 'title', 405 => 'Title', 417 => 'Title' },
- 'tonecomp' => { 191 => 0x81 },
- 'tonecurve' => { 64 => 0x1, 300 => 0x402, 394 => 'ToneCurve' },
+ 'tint' => { 395 => 'Tint' },
+ 'title' => { 135 => 'Title', 257 => 'Title', 260 => 'Title', 268 => 0x65, 315 => 'Title', 396 => 'title', 406 => 'Title', 418 => 'Title' },
+ 'tonecomp' => { 192 => 0x81 },
+ 'tonecurve' => { 64 => 0x1, 301 => 0x402, 395 => 'ToneCurve' },
'tonecurveactive' => { 95 => 0x110 },
- 'tonecurveadobergb' => { 329 => 0xa043 },
- 'tonecurveadobergbdefault' => { 329 => 0xa041 },
- 'tonecurveblue' => { 394 => 'ToneCurveBlue' },
- 'tonecurvebluex' => { 379 => 0x9003 },
- 'tonecurvebluey' => { 379 => 0x9007 },
+ 'tonecurveadobergb' => { 330 => 0xa043 },
+ 'tonecurveadobergbdefault' => { 330 => 0xa041 },
+ 'tonecurveblue' => { 395 => 'ToneCurveBlue' },
+ 'tonecurvebluex' => { 380 => 0x9003 },
+ 'tonecurvebluey' => { 380 => 0x9007 },
'tonecurvebrightness' => { 90 => 0x20410 },
- 'tonecurvebrightnessx' => { 379 => 0x9000 },
- 'tonecurvebrightnessy' => { 379 => 0x9004 },
+ 'tonecurvebrightnessx' => { 380 => 0x9000 },
+ 'tonecurvebrightnessy' => { 380 => 0x9004 },
'tonecurvecolorspace' => { 94 => 0x0 },
'tonecurvecontrast' => { 90 => 0x20411 },
'tonecurvefilename' => { 118 => 0x1391 },
- 'tonecurvegreen' => { 394 => 'ToneCurveGreen' },
- 'tonecurvegreenx' => { 379 => 0x9002 },
- 'tonecurvegreeny' => { 379 => 0x9006 },
+ 'tonecurvegreen' => { 395 => 'ToneCurveGreen' },
+ 'tonecurvegreenx' => { 380 => 0x9002 },
+ 'tonecurvegreeny' => { 380 => 0x9006 },
'tonecurveinputrange' => { 94 => 0x3 },
'tonecurveinterpolation' => { 95 => 0x159 },
'tonecurvemode' => { 95 => 0x113 },
- 'tonecurvename' => { 394 => 'ToneCurveName' },
- 'tonecurvename2012' => { 394 => 'ToneCurveName2012' },
+ 'tonecurvename' => { 395 => 'ToneCurveName' },
+ 'tonecurvename2012' => { 395 => 'ToneCurveName2012' },
'tonecurveoriginal' => { 90 => '0x20400.1' },
'tonecurveoutputrange' => { 94 => 0x5 },
'tonecurveproperty' => { 95 => 0x3c },
- 'tonecurvepv2012' => { 394 => 'ToneCurvePV2012' },
- 'tonecurvepv2012blue' => { 394 => 'ToneCurvePV2012Blue' },
- 'tonecurvepv2012green' => { 394 => 'ToneCurvePV2012Green' },
- 'tonecurvepv2012red' => { 394 => 'ToneCurvePV2012Red' },
- 'tonecurvered' => { 394 => 'ToneCurveRed' },
- 'tonecurveredx' => { 379 => 0x9001 },
- 'tonecurveredy' => { 379 => 0x9005 },
- 'tonecurves' => { 300 => 0x403 },
+ 'tonecurvepv2012' => { 395 => 'ToneCurvePV2012' },
+ 'tonecurvepv2012blue' => { 395 => 'ToneCurvePV2012Blue' },
+ 'tonecurvepv2012green' => { 395 => 'ToneCurvePV2012Green' },
+ 'tonecurvepv2012red' => { 395 => 'ToneCurvePV2012Red' },
+ 'tonecurvered' => { 395 => 'ToneCurveRed' },
+ 'tonecurveredx' => { 380 => 0x9001 },
+ 'tonecurveredy' => { 380 => 0x9005 },
+ 'tonecurves' => { 301 => 0x403 },
'tonecurveshape' => { 94 => 0x1 },
- 'tonecurvesrgb' => { 329 => 0xa042 },
- 'tonecurvesrgbdefault' => { 329 => 0xa040 },
+ 'tonecurvesrgb' => { 330 => 0xa042 },
+ 'tonecurvesrgbdefault' => { 330 => 0xa040 },
'tonecurvex' => { 94 => 0xa },
'tonecurvey' => { 94 => 0xb },
- 'tonelevel' => { 247 => 0x52e },
- 'toningeffect' => { 48 => 0xf, 191 => 0xb3, 193 => 0x38, 323 => 0x1015 },
+ 'tonelevel' => { 248 => 0x52e },
+ 'toningeffect' => { 48 => 0xf, 192 => 0xb3, 194 => 0x38, 324 => 0x1015 },
'toningeffectauto' => { 61 => 0xa4 },
'toningeffectfaithful' => { 60 => 0x74, 61 => 0x74 },
'toningeffectlandscape' => { 60 => 0x44, 61 => 0x44 },
@@ -4453,55 +4455,55 @@ my %tagLookup = (
'toningeffectuserdef1' => { 60 => 0xa4, 61 => 0xbc },
'toningeffectuserdef2' => { 60 => 0xbc, 61 => 0xd4 },
'toningeffectuserdef3' => { 60 => 0xd4, 61 => 0xec },
- 'toningsaturation' => { 193 => 0x39 },
+ 'toningsaturation' => { 194 => 0x39 },
'totalzoom' => { 120 => 0x62 },
- 'touchae' => { 267 => 0xab },
- 'trackcreatedate' => { 318 => 0x1 },
- 'trackmodifydate' => { 318 => 0x2 },
- 'tracknumber' => { 419 => 'trackNumber' },
- 'tracks' => { 419 => 'Tracks' },
- 'tracksframerate' => { 419 => [\'Tracks','TracksFrameRate'] },
- 'tracksmarkers' => { 419 => [\'Tracks','TracksMarkers'] },
- 'tracksmarkerscomment' => { 419 => [\'Tracks','TracksMarkersComment'] },
- 'tracksmarkerscuepointparams' => { 419 => [\'Tracks','TracksMarkersCuePointParams'] },
- 'tracksmarkerscuepointparamskey' => { 419 => [\'Tracks','TracksMarkersCuePointParamsKey'] },
- 'tracksmarkerscuepointparamsvalue' => { 419 => [\'Tracks','TracksMarkersCuePointParamsValue'] },
- 'tracksmarkerscuepointtype' => { 419 => [\'Tracks','TracksMarkersCuePointType'] },
- 'tracksmarkersduration' => { 419 => [\'Tracks','TracksMarkersDuration'] },
- 'tracksmarkerslocation' => { 419 => [\'Tracks','TracksMarkersLocation'] },
- 'tracksmarkersname' => { 419 => [\'Tracks','TracksMarkersName'] },
- 'tracksmarkersprobability' => { 419 => [\'Tracks','TracksMarkersProbability'] },
- 'tracksmarkersspeaker' => { 419 => [\'Tracks','TracksMarkersSpeaker'] },
- 'tracksmarkersstarttime' => { 419 => [\'Tracks','TracksMarkersStartTime'] },
- 'tracksmarkerstarget' => { 419 => [\'Tracks','TracksMarkersTarget'] },
- 'tracksmarkerstype' => { 419 => [\'Tracks','TracksMarkersType'] },
- 'trackstrackname' => { 419 => [\'Tracks','TracksTrackName'] },
- 'trackstracktype' => { 419 => [\'Tracks','TracksTrackType'] },
+ 'touchae' => { 268 => 0xab },
+ 'trackcreatedate' => { 319 => 0x1 },
+ 'trackmodifydate' => { 319 => 0x2 },
+ 'tracknumber' => { 420 => 'trackNumber' },
+ 'tracks' => { 420 => 'Tracks' },
+ 'tracksframerate' => { 420 => [\'Tracks','TracksFrameRate'] },
+ 'tracksmarkers' => { 420 => [\'Tracks','TracksMarkers'] },
+ 'tracksmarkerscomment' => { 420 => [\'Tracks','TracksMarkersComment'] },
+ 'tracksmarkerscuepointparams' => { 420 => [\'Tracks','TracksMarkersCuePointParams'] },
+ 'tracksmarkerscuepointparamskey' => { 420 => [\'Tracks','TracksMarkersCuePointParamsKey'] },
+ 'tracksmarkerscuepointparamsvalue' => { 420 => [\'Tracks','TracksMarkersCuePointParamsValue'] },
+ 'tracksmarkerscuepointtype' => { 420 => [\'Tracks','TracksMarkersCuePointType'] },
+ 'tracksmarkersduration' => { 420 => [\'Tracks','TracksMarkersDuration'] },
+ 'tracksmarkerslocation' => { 420 => [\'Tracks','TracksMarkersLocation'] },
+ 'tracksmarkersname' => { 420 => [\'Tracks','TracksMarkersName'] },
+ 'tracksmarkersprobability' => { 420 => [\'Tracks','TracksMarkersProbability'] },
+ 'tracksmarkersspeaker' => { 420 => [\'Tracks','TracksMarkersSpeaker'] },
+ 'tracksmarkersstarttime' => { 420 => [\'Tracks','TracksMarkersStartTime'] },
+ 'tracksmarkerstarget' => { 420 => [\'Tracks','TracksMarkersTarget'] },
+ 'tracksmarkerstype' => { 420 => [\'Tracks','TracksMarkersType'] },
+ 'trackstrackname' => { 420 => [\'Tracks','TracksTrackName'] },
+ 'trackstracktype' => { 420 => [\'Tracks','TracksTrackType'] },
'trailersignature' => { 142 => 'zmie' },
- 'transferfunction' => { 104 => 0x12d, 415 => 'TransferFunction' },
- 'transform' => { 267 => [0x8012,0x59] },
- 'transmissionreference' => { 406 => 'TransmissionReference' },
- 'trapped' => { 256 => 'Trapped', 405 => 'Trapped' },
+ 'transferfunction' => { 104 => 0x12d, 416 => 'TransferFunction' },
+ 'transform' => { 268 => [0x8012,0x59] },
+ 'transmissionreference' => { 407 => 'TransmissionReference' },
+ 'trapped' => { 257 => 'Trapped', 406 => 'Trapped' },
'trashbuttonfunction' => { 72 => 0x710 },
- 'travelday' => { 267 => 0x36 },
- 'triggermode' => { 319 => 0x6 },
+ 'travelday' => { 268 => 0x36 },
+ 'triggermode' => { 320 => 0x6 },
'tstop' => { 104 => 0xc772 },
- 'ttl_da_adown' => { 288 => 0x5 },
- 'ttl_da_aup' => { 288 => 0x4 },
- 'ttl_da_bdown' => { 288 => 0x7 },
- 'ttl_da_bup' => { 288 => 0x6 },
- 'tungstenawb' => { 278 => 0x1 },
- 'tvexposuretimesetting' => { 281 => 0x12 },
- 'type' => { 395 => 'type', 414 => 'type' },
+ 'ttl_da_adown' => { 289 => 0x5 },
+ 'ttl_da_aup' => { 289 => 0x4 },
+ 'ttl_da_bdown' => { 289 => 0x7 },
+ 'ttl_da_bup' => { 289 => 0x6 },
+ 'tungstenawb' => { 279 => 0x1 },
+ 'tvexposuretimesetting' => { 282 => 0x12 },
+ 'type' => { 396 => 'type', 415 => 'type' },
'typestatus' => { 103 => [\'Identification','IdentificationTypeStatus'] },
'uniquecameramodel' => { 104 => 0xc614 },
'uniquedocumentid' => { 112 => 0xbb },
'uniqueobjectname' => { 113 => 0x64 },
- 'unknownblock' => { 300 => 0x405 },
- 'unknownblock1' => { 251 => 0x635 },
- 'unknownblock2' => { 251 => 0x636 },
- 'unknownblock3' => { 251 => 0x1103 },
- 'unknownblock4' => { 251 => 0x1104 },
+ 'unknownblock' => { 301 => 0x405 },
+ 'unknownblock1' => { 252 => 0x635 },
+ 'unknownblock2' => { 252 => 0x636 },
+ 'unknownblock3' => { 252 => 0x1103 },
+ 'unknownblock4' => { 252 => 0x1104 },
'unknowncontrast' => { 96 => 0x45 },
'unknownev' => { 118 => 0x1 },
'unknownlinear' => { 96 => 0x46 },
@@ -4514,145 +4516,145 @@ my %tagLookup = (
'unknownrawshadowpoint' => { 96 => 0x49 },
'unknownsharpness' => { 96 => 0x47 },
'unknowntemperature' => { 106 => 0x4 },
- 'unsharp1color' => { 232 => 0x13 },
- 'unsharp1halowidth' => { 232 => 0x19 },
- 'unsharp1intensity' => { 232 => 0x17 },
- 'unsharp1threshold' => { 232 => 0x1b },
- 'unsharp2color' => { 232 => 0x2e },
- 'unsharp2halowidth' => { 232 => 0x34 },
- 'unsharp2intensity' => { 232 => 0x32 },
- 'unsharp2threshold' => { 232 => 0x36 },
- 'unsharp3color' => { 232 => 0x49 },
- 'unsharp3halowidth' => { 232 => 0x4f },
- 'unsharp3intensity' => { 232 => 0x4d },
- 'unsharp3threshold' => { 232 => 0x51 },
- 'unsharp4color' => { 232 => 0x64 },
- 'unsharp4halowidth' => { 232 => 0x6a },
- 'unsharp4intensity' => { 232 => 0x68 },
- 'unsharp4threshold' => { 232 => 0x6c },
- 'unsharpcount' => { 232 => 0x0 },
- 'unsharpmask' => { 96 => 0x90, 227 => 0x76a43200 },
+ 'unsharp1color' => { 233 => 0x13 },
+ 'unsharp1halowidth' => { 233 => 0x19 },
+ 'unsharp1intensity' => { 233 => 0x17 },
+ 'unsharp1threshold' => { 233 => 0x1b },
+ 'unsharp2color' => { 233 => 0x2e },
+ 'unsharp2halowidth' => { 233 => 0x34 },
+ 'unsharp2intensity' => { 233 => 0x32 },
+ 'unsharp2threshold' => { 233 => 0x36 },
+ 'unsharp3color' => { 233 => 0x49 },
+ 'unsharp3halowidth' => { 233 => 0x4f },
+ 'unsharp3intensity' => { 233 => 0x4d },
+ 'unsharp3threshold' => { 233 => 0x51 },
+ 'unsharp4color' => { 233 => 0x64 },
+ 'unsharp4halowidth' => { 233 => 0x6a },
+ 'unsharp4intensity' => { 233 => 0x68 },
+ 'unsharp4threshold' => { 233 => 0x6c },
+ 'unsharpcount' => { 233 => 0x0 },
+ 'unsharpmask' => { 96 => 0x90, 228 => 0x76a43200 },
'unsharpmaskfineness' => { 90 => 0x20309 },
'unsharpmaskstrength' => { 90 => 0x20308 },
'unsharpmaskthreshold' => { 90 => 0x2030a },
- 'uprightcentermode' => { 394 => 'UprightCenterMode' },
- 'uprightcenternormx' => { 394 => 'UprightCenterNormX' },
- 'uprightcenternormy' => { 394 => 'UprightCenterNormY' },
- 'uprightdependentdigest' => { 394 => 'UprightDependentDigest' },
- 'uprightfocallength35mm' => { 394 => 'UprightFocalLength35mm' },
- 'uprightfocalmode' => { 394 => 'UprightFocalMode' },
- 'uprightpreview' => { 394 => 'UprightPreview' },
- 'uprighttransform_0' => { 394 => 'UprightTransform_0' },
- 'uprighttransform_1' => { 394 => 'UprightTransform_1' },
- 'uprighttransform_2' => { 394 => 'UprightTransform_2' },
- 'uprighttransform_3' => { 394 => 'UprightTransform_3' },
- 'uprighttransform_4' => { 394 => 'UprightTransform_4' },
- 'uprighttransformcount' => { 394 => 'UprightTransformCount' },
- 'uprightversion' => { 394 => 'UprightVersion' },
- 'urgency' => { 112 => 0xa, 406 => 'Urgency' },
- 'url' => { 135 => 'URL', 259 => 'URL', 312 => 0x40b, 409 => 'url' },
- 'urla-platform' => { 409 => [\'url','urlA-platform'] },
- 'urlurl' => { 409 => [\'url','urlUrl'] },
+ 'uprightcentermode' => { 395 => 'UprightCenterMode' },
+ 'uprightcenternormx' => { 395 => 'UprightCenterNormX' },
+ 'uprightcenternormy' => { 395 => 'UprightCenterNormY' },
+ 'uprightdependentdigest' => { 395 => 'UprightDependentDigest' },
+ 'uprightfocallength35mm' => { 395 => 'UprightFocalLength35mm' },
+ 'uprightfocalmode' => { 395 => 'UprightFocalMode' },
+ 'uprightpreview' => { 395 => 'UprightPreview' },
+ 'uprighttransform_0' => { 395 => 'UprightTransform_0' },
+ 'uprighttransform_1' => { 395 => 'UprightTransform_1' },
+ 'uprighttransform_2' => { 395 => 'UprightTransform_2' },
+ 'uprighttransform_3' => { 395 => 'UprightTransform_3' },
+ 'uprighttransform_4' => { 395 => 'UprightTransform_4' },
+ 'uprighttransformcount' => { 395 => 'UprightTransformCount' },
+ 'uprightversion' => { 395 => 'UprightVersion' },
+ 'urgency' => { 112 => 0xa, 407 => 'Urgency' },
+ 'url' => { 135 => 'URL', 260 => 'URL', 313 => 0x40b, 410 => 'url' },
+ 'urla-platform' => { 410 => [\'url','urlA-platform'] },
+ 'urlurl' => { 410 => [\'url','urlUrl'] },
'usablemeteringmodes' => { 72 => 0x10a },
'usableshootingmodes' => { 72 => 0x109 },
- 'usage' => { 410 => 'usage' },
- 'usageterms' => { 423 => 'UsageTerms' },
- 'useguidelines' => { 391 => 'useGuidelines' },
- 'usepanoramaviewer' => { 383 => 'UsePanoramaViewer' },
- 'usercomment' => { 85 => 0x805, 104 => 0x9286, 398 => 'UserComment' },
+ 'usage' => { 411 => 'usage' },
+ 'usageterms' => { 424 => 'UsageTerms' },
+ 'useguidelines' => { 392 => 'useGuidelines' },
+ 'usepanoramaviewer' => { 384 => 'UsePanoramaViewer' },
+ 'usercomment' => { 85 => 0x805, 104 => 0x9286, 399 => 'UserComment' },
'userdef1picturestyle' => { 18 => 0x10c, 60 => 0xd8, 61 => 0xf0 },
'userdef2picturestyle' => { 18 => 0x10e, 60 => 0xda, 61 => 0xf2 },
'userdef3picturestyle' => { 18 => 0x110, 60 => 0xdc, 61 => 0xf4 },
- 'userfields' => { 386 => 'UserFields' },
- 'userlabel' => { 319 => 0x2b },
- 'userprofile' => { 263 => 0x302, 269 => 0x3038 },
+ 'userfields' => { 387 => 'UserFields' },
+ 'userlabel' => { 320 => 0x2b },
+ 'userprofile' => { 264 => 0x302, 270 => 0x3038 },
'usmlenselectronicmf' => { 71 => 0x7, 72 => 0x501 },
- 'uspsnumber' => { 409 => 'uspsNumber' },
+ 'uspsnumber' => { 410 => 'uspsNumber' },
'utmeasting' => { 146 => 'Easting' },
'utmmapdatum' => { 146 => 'Datum' },
'utmnorthing' => { 146 => 'Northing' },
'utmzone' => { 146 => 'Zone' },
- 'uv-irfiltercorrection' => { 263 => 0x325 },
- 'validbits' => { 251 => 0x611, 252 => 0x102c },
- 'validpixeldepth' => { 255 => 0x611 },
+ 'uv-irfiltercorrection' => { 264 => 0x325 },
+ 'validbits' => { 252 => 0x611, 253 => 0x102c },
+ 'validpixeldepth' => { 256 => 0x611 },
'variousmodes' => { 120 => 0x26 },
'variousmodes2' => { 120 => 0x3a },
- 'variprogram' => { 191 => 0xab },
- 'version' => { 109 => 0x0, 314 => 'Version', 394 => 'Version' },
- 'versioncreatedate' => { 379 => 0xd100 },
- 'versionid' => { 420 => 'VersionID' },
- 'versionidentifier' => { 409 => 'versionIdentifier' },
- 'versionmodifydate' => { 379 => 0xd101 },
- 'versions' => { 420 => 'Versions' },
- 'versionscomments' => { 420 => [\'Versions','VersionsComments'] },
- 'versionsevent' => { 420 => [\'Versions','VersionsEvent'] },
- 'versionseventaction' => { 420 => [\'Versions','VersionsEventAction'] },
- 'versionseventchanged' => { 420 => [\'Versions','VersionsEventChanged'] },
- 'versionseventinstanceid' => { 420 => [\'Versions','VersionsEventInstanceID'] },
- 'versionseventparameters' => { 420 => [\'Versions','VersionsEventParameters'] },
- 'versionseventsoftwareagent' => { 420 => [\'Versions','VersionsEventSoftwareAgent'] },
- 'versionseventwhen' => { 420 => [\'Versions','VersionsEventWhen'] },
- 'versionsmodifier' => { 420 => [\'Versions','VersionsModifier'] },
- 'versionsmodifydate' => { 420 => [\'Versions','VersionsModifyDate'] },
- 'versionsversion' => { 420 => [\'Versions','VersionsVersion'] },
- 'verticalafonbutton' => { 234 => '3.2', 235 => '47.2' },
- 'verticalfuncbutton' => { 235 => '42.2' },
- 'verticalfuncbuttonplusdials' => { 235 => '43.1' },
- 'verticalmultiselector' => { 235 => '42.1' },
+ 'variprogram' => { 192 => 0xab },
+ 'version' => { 109 => 0x0, 315 => 'Version', 395 => 'Version' },
+ 'versioncreatedate' => { 380 => 0xd100 },
+ 'versionid' => { 421 => 'VersionID' },
+ 'versionidentifier' => { 410 => 'versionIdentifier' },
+ 'versionmodifydate' => { 380 => 0xd101 },
+ 'versions' => { 421 => 'Versions' },
+ 'versionscomments' => { 421 => [\'Versions','VersionsComments'] },
+ 'versionsevent' => { 421 => [\'Versions','VersionsEvent'] },
+ 'versionseventaction' => { 421 => [\'Versions','VersionsEventAction'] },
+ 'versionseventchanged' => { 421 => [\'Versions','VersionsEventChanged'] },
+ 'versionseventinstanceid' => { 421 => [\'Versions','VersionsEventInstanceID'] },
+ 'versionseventparameters' => { 421 => [\'Versions','VersionsEventParameters'] },
+ 'versionseventsoftwareagent' => { 421 => [\'Versions','VersionsEventSoftwareAgent'] },
+ 'versionseventwhen' => { 421 => [\'Versions','VersionsEventWhen'] },
+ 'versionsmodifier' => { 421 => [\'Versions','VersionsModifier'] },
+ 'versionsmodifydate' => { 421 => [\'Versions','VersionsModifyDate'] },
+ 'versionsversion' => { 421 => [\'Versions','VersionsVersion'] },
+ 'verticalafonbutton' => { 235 => '3.2', 236 => '47.2' },
+ 'verticalfuncbutton' => { 236 => '42.2' },
+ 'verticalfuncbuttonplusdials' => { 236 => '43.1' },
+ 'verticalmultiselector' => { 236 => '42.1' },
'vfdisplayillumination' => { 72 => 0x510 },
- 'vibrance' => { 387 => 'Vibrance', 394 => 'Vibrance' },
- 'vibrationreduction' => { 198 => [0x75,0x82,0x1ae], 206 => '586.1', 213 => '590.2', 218 => 0x4 },
- 'videoalphamode' => { 419 => 'videoAlphaMode' },
- 'videoalphapremultiplecolor' => { 419 => 'videoAlphaPremultipleColor' },
- 'videoalphapremultiplecolora' => { 419 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorA'] },
- 'videoalphapremultiplecolorb' => { 419 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorB'] },
- 'videoalphapremultiplecolorblack' => { 419 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlack'] },
- 'videoalphapremultiplecolorblue' => { 419 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlue'] },
- 'videoalphapremultiplecolorcyan' => { 419 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorCyan'] },
- 'videoalphapremultiplecolorgreen' => { 419 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGreen'] },
- 'videoalphapremultiplecolorl' => { 419 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorL'] },
- 'videoalphapremultiplecolormagenta' => { 419 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMagenta'] },
- 'videoalphapremultiplecolormode' => { 419 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMode'] },
- 'videoalphapremultiplecolorred' => { 419 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorRed'] },
- 'videoalphapremultiplecolorswatchname' => { 419 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorSwatchName'] },
- 'videoalphapremultiplecolortint' => { 419 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorTint'] },
- 'videoalphapremultiplecolortype' => { 419 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorType'] },
- 'videoalphapremultiplecoloryellow' => { 419 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorYellow'] },
- 'videoalphaunityistransparent' => { 419 => 'videoAlphaUnityIsTransparent' },
+ 'vibrance' => { 388 => 'Vibrance', 395 => 'Vibrance' },
+ 'vibrationreduction' => { 199 => [0x75,0x82,0x1ae], 207 => '586.1', 214 => '590.2', 219 => 0x4 },
+ 'videoalphamode' => { 420 => 'videoAlphaMode' },
+ 'videoalphapremultiplecolor' => { 420 => 'videoAlphaPremultipleColor' },
+ 'videoalphapremultiplecolora' => { 420 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorA'] },
+ 'videoalphapremultiplecolorb' => { 420 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorB'] },
+ 'videoalphapremultiplecolorblack' => { 420 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlack'] },
+ 'videoalphapremultiplecolorblue' => { 420 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorBlue'] },
+ 'videoalphapremultiplecolorcyan' => { 420 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorCyan'] },
+ 'videoalphapremultiplecolorgreen' => { 420 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorGreen'] },
+ 'videoalphapremultiplecolorl' => { 420 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorL'] },
+ 'videoalphapremultiplecolormagenta' => { 420 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMagenta'] },
+ 'videoalphapremultiplecolormode' => { 420 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorMode'] },
+ 'videoalphapremultiplecolorred' => { 420 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorRed'] },
+ 'videoalphapremultiplecolorswatchname' => { 420 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorSwatchName'] },
+ 'videoalphapremultiplecolortint' => { 420 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorTint'] },
+ 'videoalphapremultiplecolortype' => { 420 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorType'] },
+ 'videoalphapremultiplecoloryellow' => { 420 => [\'videoAlphaPremultipleColor','videoAlphaPremultipleColorYellow'] },
+ 'videoalphaunityistransparent' => { 420 => 'videoAlphaUnityIsTransparent' },
'videocodec' => { 57 => 0x74 },
- 'videocolorspace' => { 419 => 'videoColorSpace' },
- 'videocompressor' => { 419 => 'videoCompressor' },
- 'videofieldorder' => { 419 => 'videoFieldOrder' },
- 'videoframerate' => { 419 => 'videoFrameRate' },
- 'videoframesize' => { 419 => 'videoFrameSize' },
- 'videoframesizeh' => { 419 => [\'videoFrameSize','videoFrameSizeH'] },
- 'videoframesizeunit' => { 419 => [\'videoFrameSize','videoFrameSizeUnit'] },
- 'videoframesizew' => { 419 => [\'videoFrameSize','videoFrameSizeW'] },
- 'videomoddate' => { 419 => 'videoModDate' },
- 'videopixelaspectratio' => { 419 => 'videoPixelAspectRatio' },
- 'videopixeldepth' => { 419 => 'videoPixelDepth' },
+ 'videocolorspace' => { 420 => 'videoColorSpace' },
+ 'videocompressor' => { 420 => 'videoCompressor' },
+ 'videofieldorder' => { 420 => 'videoFieldOrder' },
+ 'videoframerate' => { 420 => 'videoFrameRate' },
+ 'videoframesize' => { 420 => 'videoFrameSize' },
+ 'videoframesizeh' => { 420 => [\'videoFrameSize','videoFrameSizeH'] },
+ 'videoframesizeunit' => { 420 => [\'videoFrameSize','videoFrameSizeUnit'] },
+ 'videoframesizew' => { 420 => [\'videoFrameSize','videoFrameSizeW'] },
+ 'videomoddate' => { 420 => 'videoModDate' },
+ 'videopixelaspectratio' => { 420 => 'videoPixelAspectRatio' },
+ 'videopixeldepth' => { 420 => 'videoPixelDepth' },
'videoquality' => { 100 => 0x4003 },
- 'viewfinderdisplay' => { 234 => '12.4', 235 => '6.3' },
- 'viewfinderwarning' => { 234 => '13.4', 241 => '3.5', 242 => '6.2', 245 => '4.4' },
+ 'viewfinderdisplay' => { 235 => '12.4', 236 => '6.3' },
+ 'viewfinderwarning' => { 235 => '13.4', 242 => '3.5', 243 => '6.2', 246 => '4.4' },
'viewfinderwarnings' => { 72 => 0x40a },
'viewinfoduringexposure' => { 72 => 0x407 },
- 'viewingmode' => { 341 => 0x2f, 355 => 0x18 },
- 'viewingmode2' => { 341 => [0x85,0x285] },
- 'viewpoint' => { 408 => 'viewpoint' },
- 'vignetteamount' => { 394 => 'VignetteAmount' },
- 'vignettecontrol' => { 191 => 0x2a, 227 => 0x76a43205 },
- 'vignettecontrolintensity' => { 227 => 0xac6bd5c0 },
- 'vignettecorrectionalreadyapplied' => { 390 => 'VignetteCorrectionAlreadyApplied' },
- 'vignettemidpoint' => { 394 => 'VignetteMidpoint' },
- 'vignetting' => { 323 => 0x1011, 329 => 0xa052 },
- 'vignettingcorrection' => { 329 => 0xa053, 351 => 0x2011 },
- 'vignettingsetting' => { 329 => 0xa054 },
- 'visualtechnique' => { 408 => 'visualTechnique' },
- 'voicememo' => { 331 => 0x216 },
- 'volume' => { 409 => 'volume' },
- 'vr_0x66' => { 198 => 0x66 },
+ 'viewingmode' => { 342 => 0x2f, 356 => 0x18 },
+ 'viewingmode2' => { 342 => [0x85,0x285] },
+ 'viewpoint' => { 409 => 'viewpoint' },
+ 'vignetteamount' => { 395 => 'VignetteAmount' },
+ 'vignettecontrol' => { 192 => 0x2a, 228 => 0x76a43205 },
+ 'vignettecontrolintensity' => { 228 => 0xac6bd5c0 },
+ 'vignettecorrectionalreadyapplied' => { 391 => 'VignetteCorrectionAlreadyApplied' },
+ 'vignettemidpoint' => { 395 => 'VignetteMidpoint' },
+ 'vignetting' => { 324 => 0x1011, 330 => 0xa052 },
+ 'vignettingcorrection' => { 330 => 0xa053, 352 => 0x2011 },
+ 'vignettingsetting' => { 330 => 0xa054 },
+ 'visualtechnique' => { 409 => 'visualTechnique' },
+ 'voicememo' => { 332 => 0x216 },
+ 'volume' => { 410 => 'volume' },
+ 'vr_0x66' => { 199 => 0x66 },
'vrdoffset' => { 54 => 0xd0 },
- 'vrmode' => { 218 => 0x6 },
+ 'vrmode' => { 219 => 0x6 },
'wb_bluelevel3500k' => { 162 => 0x19a },
'wb_bluelevel6500k' => { 162 => 0x18a },
'wb_bluelevelcustom' => { 162 => 0x18e },
@@ -4664,66 +4666,66 @@ my %tagLookup = (
'wb_bluelevelsshade' => { 162 => 0x176 },
'wb_bluelevelstungsten' => { 162 => 0xce },
'wb_gbrglevels' => { 162 => 0xae, 165 => 0x4 },
- 'wb_glevel' => { 251 => 0x11f },
- 'wb_glevel3000k' => { 251 => 0x113 },
- 'wb_glevel3300k' => { 251 => 0x114 },
- 'wb_glevel3600k' => { 251 => 0x115 },
- 'wb_glevel3900k' => { 251 => 0x116 },
- 'wb_glevel4000k' => { 251 => 0x117 },
- 'wb_glevel4300k' => { 251 => 0x118 },
- 'wb_glevel4500k' => { 251 => 0x119 },
- 'wb_glevel4800k' => { 251 => 0x11a },
- 'wb_glevel5300k' => { 251 => 0x11b },
- 'wb_glevel6000k' => { 251 => 0x11c },
- 'wb_glevel6600k' => { 251 => 0x11d },
- 'wb_glevel7500k' => { 251 => 0x11e },
- 'wb_grbglevels' => { 174 => 0x0 },
- 'wb_rbgglevels' => { 171 => 0x0 },
- 'wb_rblevels' => { 191 => 0xc, 251 => 0x100 },
- 'wb_rblevels1' => { 272 => 0x2 },
- 'wb_rblevels2' => { 272 => 0x5 },
- 'wb_rblevels3' => { 272 => 0x8 },
- 'wb_rblevels3000k' => { 251 => 0x102 },
- 'wb_rblevels3300k' => { 251 => 0x103 },
+ 'wb_glevel' => { 252 => 0x11f },
+ 'wb_glevel3000k' => { 252 => 0x113 },
+ 'wb_glevel3300k' => { 252 => 0x114 },
+ 'wb_glevel3600k' => { 252 => 0x115 },
+ 'wb_glevel3900k' => { 252 => 0x116 },
+ 'wb_glevel4000k' => { 252 => 0x117 },
+ 'wb_glevel4300k' => { 252 => 0x118 },
+ 'wb_glevel4500k' => { 252 => 0x119 },
+ 'wb_glevel4800k' => { 252 => 0x11a },
+ 'wb_glevel5300k' => { 252 => 0x11b },
+ 'wb_glevel6000k' => { 252 => 0x11c },
+ 'wb_glevel6600k' => { 252 => 0x11d },
+ 'wb_glevel7500k' => { 252 => 0x11e },
+ 'wb_grbglevels' => { 175 => 0x0 },
+ 'wb_rbgglevels' => { 172 => 0x0 },
+ 'wb_rblevels' => { 192 => 0xc, 252 => 0x100 },
+ 'wb_rblevels1' => { 273 => 0x2 },
+ 'wb_rblevels2' => { 273 => 0x5 },
+ 'wb_rblevels3' => { 273 => 0x8 },
+ 'wb_rblevels3000k' => { 252 => 0x102 },
+ 'wb_rblevels3300k' => { 252 => 0x103 },
'wb_rblevels3500k' => { 162 => 0x430 },
- 'wb_rblevels3600k' => { 251 => 0x104 },
- 'wb_rblevels3900k' => { 251 => 0x105 },
- 'wb_rblevels4' => { 272 => 0xb },
- 'wb_rblevels4000k' => { 251 => 0x106 },
- 'wb_rblevels4300k' => { 251 => 0x107 },
- 'wb_rblevels4500k' => { 251 => 0x108 },
- 'wb_rblevels4800k' => { 251 => 0x109 },
- 'wb_rblevels5' => { 272 => 0xe },
- 'wb_rblevels5300k' => { 251 => 0x10a },
- 'wb_rblevels6' => { 272 => 0x11 },
- 'wb_rblevels6000k' => { 251 => 0x10b },
+ 'wb_rblevels3600k' => { 252 => 0x104 },
+ 'wb_rblevels3900k' => { 252 => 0x105 },
+ 'wb_rblevels4' => { 273 => 0xb },
+ 'wb_rblevels4000k' => { 252 => 0x106 },
+ 'wb_rblevels4300k' => { 252 => 0x107 },
+ 'wb_rblevels4500k' => { 252 => 0x108 },
+ 'wb_rblevels4800k' => { 252 => 0x109 },
+ 'wb_rblevels5' => { 273 => 0xe },
+ 'wb_rblevels5300k' => { 252 => 0x10a },
+ 'wb_rblevels6' => { 273 => 0x11 },
+ 'wb_rblevels6000k' => { 252 => 0x10b },
'wb_rblevels6500k' => { 162 => 0x420 },
- 'wb_rblevels6600k' => { 251 => 0x10c },
- 'wb_rblevels7' => { 272 => 0x14 },
- 'wb_rblevels7500k' => { 251 => 0x10d },
- 'wb_rblevelsauto' => { 255 => 0x110 },
- 'wb_rblevelscloudy' => { 162 => 0x3f0, 164 => 0x10, 255 => 0x121 },
+ 'wb_rblevels6600k' => { 252 => 0x10c },
+ 'wb_rblevels7' => { 273 => 0x14 },
+ 'wb_rblevels7500k' => { 252 => 0x10d },
+ 'wb_rblevelsauto' => { 256 => 0x110 },
+ 'wb_rblevelscloudy' => { 162 => 0x3f0, 164 => 0x10, 256 => 0x121 },
'wb_rblevelscoolwhitef' => { 162 => 0x308, 164 => 0x14 },
- 'wb_rblevelscoolwhitefluor' => { 255 => 0x132 },
+ 'wb_rblevelscoolwhitefluor' => { 256 => 0x132 },
'wb_rblevelscustom' => { 162 => 0x424 },
- 'wb_rblevelscwb1' => { 251 => 0x10e },
- 'wb_rblevelscwb2' => { 251 => 0x10f },
- 'wb_rblevelscwb3' => { 251 => 0x110 },
- 'wb_rblevelscwb4' => { 251 => 0x111 },
+ 'wb_rblevelscwb1' => { 252 => 0x10e },
+ 'wb_rblevelscwb2' => { 252 => 0x10f },
+ 'wb_rblevelscwb3' => { 252 => 0x110 },
+ 'wb_rblevelscwb4' => { 252 => 0x111 },
'wb_rblevelsdaylight' => { 162 => [0x3ec,0x528], 164 => 0xc },
'wb_rblevelsdaylightf' => { 164 => 0x24 },
- 'wb_rblevelsdaylightfluor' => { 255 => 0x130 },
+ 'wb_rblevelsdaylightfluor' => { 256 => 0x130 },
'wb_rblevelsdaywhitef' => { 164 => 0x28 },
- 'wb_rblevelsdaywhitefluor' => { 255 => 0x131 },
- 'wb_rblevelseveningsunlight' => { 255 => 0x124 },
- 'wb_rblevelsfineweather' => { 255 => 0x122 },
+ 'wb_rblevelsdaywhitefluor' => { 256 => 0x131 },
+ 'wb_rblevelseveningsunlight' => { 256 => 0x124 },
+ 'wb_rblevelsfineweather' => { 256 => 0x122 },
'wb_rblevelsflash' => { 162 => [0x3f4,0x304], 164 => 0x18 },
- 'wb_rblevelsshade' => { 162 => 0x418, 164 => 0x20, 255 => 0x120 },
- 'wb_rblevelstungsten' => { 162 => 0x3e8, 164 => 0x8, 255 => 0x123 },
+ 'wb_rblevelsshade' => { 162 => 0x418, 164 => 0x20, 256 => 0x120 },
+ 'wb_rblevelstungsten' => { 162 => 0x3e8, 164 => 0x8, 256 => 0x123 },
'wb_rblevelsunknown' => { 164 => 0x1c },
- 'wb_rblevelsused' => { 255 => 0x100 },
+ 'wb_rblevelsused' => { 256 => 0x100 },
'wb_rblevelswhitef' => { 164 => 0x2c },
- 'wb_rblevelswhitefluorescent' => { 255 => 0x133 },
+ 'wb_rblevelswhitefluorescent' => { 256 => 0x133 },
'wb_redlevel3500k' => { 162 => 0x198 },
'wb_redlevel6500k' => { 162 => 0x188 },
'wb_redlevelcustom' => { 162 => 0x18c },
@@ -4734,42 +4736,42 @@ my %tagLookup = (
'wb_redlevelskelvin' => { 162 => 0x1be },
'wb_redlevelsshade' => { 162 => 0x168 },
'wb_redlevelstungsten' => { 162 => 0xc0 },
- 'wb_rgbglevels' => { 173 => 0x0 },
- 'wb_rgblevels' => { 162 => [0x546,0x96], 264 => 0xd, 265 => 0x413, 269 => 0x3036, 358 => 0x117c, 359 => 0x1180, 360 => 0x115c, 361 => 0x11d8, 362 => 0x11b4, 363 => 0x106c, 364 => 0x264, 365 => 0x264 },
- 'wb_rgblevels1' => { 273 => 0x2 },
- 'wb_rgblevels2' => { 273 => 0x6 },
- 'wb_rgblevels3' => { 273 => 0xa },
- 'wb_rgblevels4' => { 273 => 0xe },
- 'wb_rgblevels5' => { 273 => 0x12 },
- 'wb_rgblevels6' => { 273 => 0x16 },
- 'wb_rgblevels7' => { 273 => 0x1a },
+ 'wb_rgbglevels' => { 174 => 0x0 },
+ 'wb_rgblevels' => { 162 => [0x546,0x96], 265 => 0xd, 266 => 0x413, 270 => 0x3036, 359 => 0x117c, 360 => 0x1180, 361 => 0x115c, 362 => 0x11d8, 363 => 0x11b4, 364 => 0x106c, 365 => 0x264, 366 => 0x264 },
+ 'wb_rgblevels1' => { 274 => 0x2 },
+ 'wb_rgblevels2' => { 274 => 0x6 },
+ 'wb_rgblevels3' => { 274 => 0xa },
+ 'wb_rgblevels4' => { 274 => 0xe },
+ 'wb_rgblevels5' => { 274 => 0x12 },
+ 'wb_rgblevels6' => { 274 => 0x16 },
+ 'wb_rgblevels7' => { 274 => 0x1a },
'wb_rggbblacklevels' => { 31 => 0x25 },
- 'wb_rggblevels' => { 165 => 0x4, 172 => 0x0 },
+ 'wb_rggblevels' => { 165 => 0x4, 173 => 0x0 },
'wb_rggblevelsasshot' => { 33 => 0x0, 34 => 0x19, 35 => 0x22, 36 => 0x3f, 39 => 0x3f, 40 => 0x3f, 41 => 0x3f },
- 'wb_rggblevelsauto' => { 31 => 0x1, 33 => 0x5, 34 => 0x1e, 35 => 0x18, 36 => 0x44, 39 => 0x44, 40 => 0x44, 41 => 0x44, 329 => 0xa022 },
- 'wb_rggblevelsblack' => { 329 => 0xa028 },
- 'wb_rggblevelscloudy' => { 31 => 0xd, 33 => 0x1e, 34 => 0x2d, 35 => 0x31, 36 => 0x58, 39 => 0x71, 40 => 0x8a, 41 => 0x8f, 300 => 0x20f, 308 => 0x14 },
+ 'wb_rggblevelsauto' => { 31 => 0x1, 33 => 0x5, 34 => 0x1e, 35 => 0x18, 36 => 0x44, 39 => 0x44, 40 => 0x44, 41 => 0x44, 330 => 0xa022 },
+ 'wb_rggblevelsblack' => { 330 => 0xa028 },
+ 'wb_rggblevelscloudy' => { 31 => 0xd, 33 => 0x1e, 34 => 0x2d, 35 => 0x31, 36 => 0x58, 39 => 0x71, 40 => 0x8a, 41 => 0x8f, 301 => 0x20f, 309 => 0x14 },
'wb_rggblevelscustom' => { 31 => 0x1d, 36 => 0x80 },
'wb_rggblevelscustom1' => { 34 => 0x41 },
'wb_rggblevelscustom2' => { 34 => 0x46 },
- 'wb_rggblevelsdaylight' => { 31 => 0x5, 33 => 0x14, 34 => 0x23, 35 => 0x27, 36 => 0x4e, 39 => 0x67, 40 => 0x80, 41 => 0x85, 300 => 0x20d, 308 => 0x2 },
- 'wb_rggblevelsflash' => { 31 => 0x19, 33 => 0x32, 34 => 0x3c, 35 => 0x45, 36 => 0x6c, 39 => 0x85, 40 => 0x9e, 41 => 0xa3, 300 => 0x214, 308 => 0x41 },
+ 'wb_rggblevelsdaylight' => { 31 => 0x5, 33 => 0x14, 34 => 0x23, 35 => 0x27, 36 => 0x4e, 39 => 0x67, 40 => 0x80, 41 => 0x85, 301 => 0x20d, 309 => 0x2 },
+ 'wb_rggblevelsflash' => { 31 => 0x19, 33 => 0x32, 34 => 0x3c, 35 => 0x45, 36 => 0x6c, 39 => 0x85, 40 => 0x9e, 41 => 0xa3, 301 => 0x214, 309 => 0x41 },
'wb_rggblevelsfluorescent' => { 31 => 0x15, 33 => 0x28, 34 => 0x37, 35 => 0x3b, 36 => 0x62, 39 => 0x7b, 40 => 0x94, 41 => 0x99 },
- 'wb_rggblevelsfluorescentd' => { 300 => 0x211, 308 => 0x26 },
- 'wb_rggblevelsfluorescentl' => { 308 => 0x4a },
- 'wb_rggblevelsfluorescentn' => { 300 => 0x212, 308 => 0x2f },
- 'wb_rggblevelsfluorescentw' => { 300 => 0x213, 308 => 0x38 },
- 'wb_rggblevelsilluminator1' => { 329 => 0xa023 },
- 'wb_rggblevelsilluminator2' => { 329 => 0xa024 },
+ 'wb_rggblevelsfluorescentd' => { 301 => 0x211, 309 => 0x26 },
+ 'wb_rggblevelsfluorescentl' => { 309 => 0x4a },
+ 'wb_rggblevelsfluorescentn' => { 301 => 0x212, 309 => 0x2f },
+ 'wb_rggblevelsfluorescentw' => { 301 => 0x213, 309 => 0x38 },
+ 'wb_rggblevelsilluminator1' => { 330 => 0xa023 },
+ 'wb_rggblevelsilluminator2' => { 330 => 0xa024 },
'wb_rggblevelskelvin' => { 31 => 0x21, 33 => 0x2d, 35 => 0x40, 36 => 0x67, 39 => 0x80, 40 => 0x99, 41 => 0x9e },
'wb_rggblevelsmeasured' => { 33 => 0xa, 36 => 0x49, 39 => 0x49, 40 => 0x49, 41 => 0x49 },
'wb_rggblevelspc1' => { 35 => 0x90, 36 => 0x71 },
'wb_rggblevelspc2' => { 35 => 0x95, 36 => 0x76 },
'wb_rggblevelspc3' => { 35 => 0x9a, 36 => 0x7b },
- 'wb_rggblevelsshade' => { 31 => 0x9, 33 => 0x19, 34 => 0x28, 35 => 0x2c, 36 => 0x53, 39 => 0x6c, 40 => 0x85, 41 => 0x8a, 300 => 0x20e, 308 => 0xb },
- 'wb_rggblevelstungsten' => { 31 => 0x11, 33 => 0x23, 34 => 0x32, 35 => 0x36, 36 => 0x5d, 39 => 0x76, 40 => 0x8f, 41 => 0x94, 300 => 0x210, 308 => 0x1d },
- 'wb_rggblevelsuncorrected' => { 329 => 0xa021 },
- 'wb_rggblevelsunknown' => { 33 => 0xf, 35 => 0x1d, 39 => 0x4e, 40 => 0x4e, 41 => 0x4e, 308 => 0x53 },
+ 'wb_rggblevelsshade' => { 31 => 0x9, 33 => 0x19, 34 => 0x28, 35 => 0x2c, 36 => 0x53, 39 => 0x6c, 40 => 0x85, 41 => 0x8a, 301 => 0x20e, 309 => 0xb },
+ 'wb_rggblevelstungsten' => { 31 => 0x11, 33 => 0x23, 34 => 0x32, 35 => 0x36, 36 => 0x5d, 39 => 0x76, 40 => 0x8f, 41 => 0x94, 301 => 0x210, 309 => 0x1d },
+ 'wb_rggblevelsuncorrected' => { 330 => 0xa021 },
+ 'wb_rggblevelsunknown' => { 33 => 0xf, 35 => 0x1d, 39 => 0x4e, 40 => 0x4e, 41 => 0x4e, 309 => 0x53 },
'wb_rggblevelsunknown10' => { 33 => 0x5f, 35 => 0x72, 39 => 0x9e, 40 => 0x7b, 41 => 0x7b },
'wb_rggblevelsunknown11' => { 33 => 0x64, 35 => 0x77, 39 => 0xa3, 40 => 0xa3, 41 => 0x80 },
'wb_rggblevelsunknown12' => { 33 => 0x69, 35 => 0x7c, 39 => 0xa8, 40 => 0xa8, 41 => 0xa8 },
@@ -4799,104 +4801,104 @@ my %tagLookup = (
'wb_rggblevelsunknown7' => { 33 => 0x50, 35 => 0x63, 39 => 0x8f, 40 => 0x6c, 41 => 0x6c },
'wb_rggblevelsunknown8' => { 33 => 0x55, 35 => 0x68, 39 => 0x94, 40 => 0x71, 41 => 0x71 },
'wb_rggblevelsunknown9' => { 33 => 0x5a, 35 => 0x6d, 39 => 0x99, 40 => 0x76, 41 => 0x76 },
- 'wb_rggblevelsuserselected' => { 308 => 0x5c },
+ 'wb_rggblevelsuserselected' => { 309 => 0x5c },
'wbadjblueamber' => { 90 => 0x20106 },
- 'wbadjbluebalance' => { 233 => 0x8 },
+ 'wbadjbluebalance' => { 234 => 0x8 },
'wbadjcolortemp' => { 90 => 0x20102, 95 => 0x1a },
- 'wbadjlighting' => { 233 => 0x14 },
+ 'wbadjlighting' => { 234 => 0x14 },
'wbadjmagentagreen' => { 90 => 0x20105 },
- 'wbadjmode' => { 233 => 0x10 },
- 'wbadjredbalance' => { 233 => 0x0 },
+ 'wbadjmode' => { 234 => 0x10 },
+ 'wbadjredbalance' => { 234 => 0x0 },
'wbadjrggblevels' => { 90 => 0x20125, 95 => 0x6 },
- 'wbadjtemperature' => { 233 => 0x18 },
- 'wbadjtint' => { 233 => 0x25 },
- 'wbbluelevel' => { 263 => 0x324, 267 => 0x8006, 271 => 0x26 },
+ 'wbadjtemperature' => { 234 => 0x18 },
+ 'wbadjtint' => { 234 => 0x25 },
+ 'wbbluelevel' => { 264 => 0x324, 268 => 0x8006, 272 => 0x26 },
'wbbracketmode' => { 48 => 0x9 },
- 'wbbracketshotnumber' => { 162 => 0x2b, 323 => 0x101a },
+ 'wbbracketshotnumber' => { 162 => 0x2b, 324 => 0x101a },
'wbbracketvalueab' => { 48 => 0xc },
'wbbracketvaluegm' => { 48 => 0xd },
'wbfinetuneactive' => { 95 => 0x24 },
'wbfinetunesaturation' => { 95 => 0x28 },
'wbfinetunetone' => { 95 => 0x2c },
- 'wbgreenlevel' => { 263 => 0x323, 267 => 0x8005, 271 => 0x25 },
+ 'wbgreenlevel' => { 264 => 0x323, 268 => 0x8005, 272 => 0x25 },
'wbmediaimagesizesetting' => { 72 => 0x708 },
- 'wbmode' => { 164 => 0x4, 252 => 0x1015 },
- 'wbredlevel' => { 263 => 0x322, 267 => 0x8004, 271 => 0x24 },
+ 'wbmode' => { 164 => 0x4, 253 => 0x1015 },
+ 'wbredlevel' => { 264 => 0x322, 268 => 0x8004, 272 => 0x24 },
'wbscale' => { 165 => 0x0 },
- 'wbshiftab' => { 64 => 0xc, 267 => 0x46, 282 => 0x10 },
- 'wbshiftab_gm' => { 351 => 0x2014 },
- 'wbshiftgm' => { 64 => 0xd, 267 => 0x47, 282 => 0x11 },
- 'wbtype1' => { 272 => 0x1, 273 => 0x1 },
- 'wbtype2' => { 272 => 0x4, 273 => 0x5 },
- 'wbtype3' => { 272 => 0x7, 273 => 0x9 },
- 'wbtype4' => { 272 => 0xa, 273 => 0xd },
- 'wbtype5' => { 272 => 0xd, 273 => 0x11 },
- 'wbtype6' => { 272 => 0x10, 273 => 0x15 },
- 'wbtype7' => { 272 => 0x13, 273 => 0x19 },
- 'webstatement' => { 423 => 'WebStatement' },
- 'what' => { 394 => 'What' },
- 'whitebalance' => { 6 => 0x6f, 7 => [0x44,0x4a], 8 => 0xbc, 9 => 0x36, 10 => 0x5e, 11 => 0x36, 12 => 0x78, 13 => 0x6f, 14 => 0x6f, 15 => 0x73, 16 => 0x6f, 17 => 0x78, 18 => 0x54, 19 => 0x6f, 20 => 0xbc, 21 => 0x7b, 23 => 0xbc, 24 => 0xc2, 26 => 0x77, 64 => 0x8, 66 => 0x7, 99 => 0x7, 100 => [0x19,0x2012], 104 => [0xa403,0xfe4e], 109 => 0x1002, 118 => 0x3fc, 119 => 0xfa0d, 120 => 0x40, 156 => 0x3, 157 => 0xe, 158 => 0x4, 159 => 0xb, 161 => 0x115, 191 => 0x5, 217 => 0x7, 263 => 0x304, 267 => 0x3, 269 => 0x3033, 300 => 0x19, 307 => 0x7, 322 => 0x26, 323 => 0x1003, 332 => [0x3c,0x7,0x58], 339 => 0xf, 340 => 0xe, 351 => [0x115,0xb054], 394 => 'WhiteBalance', 398 => 'WhiteBalance' },
+ 'wbshiftab' => { 64 => 0xc, 268 => 0x46, 283 => 0x10 },
+ 'wbshiftab_gm' => { 352 => 0x2014 },
+ 'wbshiftgm' => { 64 => 0xd, 268 => 0x47, 283 => 0x11 },
+ 'wbtype1' => { 273 => 0x1, 274 => 0x1 },
+ 'wbtype2' => { 273 => 0x4, 274 => 0x5 },
+ 'wbtype3' => { 273 => 0x7, 274 => 0x9 },
+ 'wbtype4' => { 273 => 0xa, 274 => 0xd },
+ 'wbtype5' => { 273 => 0xd, 274 => 0x11 },
+ 'wbtype6' => { 273 => 0x10, 274 => 0x15 },
+ 'wbtype7' => { 273 => 0x13, 274 => 0x19 },
+ 'webstatement' => { 424 => 'WebStatement' },
+ 'what' => { 395 => 'What' },
+ 'whitebalance' => { 6 => 0x6f, 7 => [0x44,0x4a], 8 => 0xbc, 9 => 0x36, 10 => 0x5e, 11 => 0x36, 12 => 0x78, 13 => 0x6f, 14 => 0x6f, 15 => 0x73, 16 => 0x6f, 17 => 0x78, 18 => 0x54, 19 => 0x6f, 20 => 0xbc, 21 => 0x7b, 23 => 0xbc, 24 => 0xc2, 26 => 0x77, 64 => 0x8, 66 => 0x7, 99 => 0x7, 100 => [0x19,0x2012], 104 => [0xa403,0xfe4e], 109 => 0x1002, 118 => 0x3fc, 119 => 0xfa0d, 120 => 0x40, 156 => 0x3, 157 => 0xe, 158 => 0x4, 159 => 0xb, 161 => 0x115, 192 => 0x5, 218 => 0x7, 264 => 0x304, 268 => 0x3, 270 => 0x3033, 301 => 0x19, 308 => 0x7, 323 => 0x26, 324 => 0x1003, 333 => [0x3c,0x7,0x58], 340 => 0xf, 341 => 0xe, 352 => [0x115,0xb054], 395 => 'WhiteBalance', 399 => 'WhiteBalance' },
'whitebalance0' => { 152 => 'WhiteBalance0' },
'whitebalance1' => { 152 => 'WhiteBalance1' },
- 'whitebalance2' => { 152 => 'WhiteBalance2', 247 => 0x500 },
- 'whitebalanceadj' => { 90 => 0x20101, 95 => 0x18, 227 => 0x76a43204 },
- 'whitebalanceautoadjustment' => { 278 => 0x0 },
- 'whitebalancebias' => { 100 => 0x2011, 252 => 0x304, 267 => 0x23 },
+ 'whitebalance2' => { 152 => 'WhiteBalance2', 248 => 0x500 },
+ 'whitebalanceadj' => { 90 => 0x20101, 95 => 0x18, 228 => 0x76a43204 },
+ 'whitebalanceautoadjustment' => { 279 => 0x0 },
+ 'whitebalancebias' => { 100 => 0x2011, 253 => 0x304, 268 => 0x23 },
'whitebalanceblue' => { 64 => 0x7 },
- 'whitebalancebracket' => { 247 => 0x502, 252 => 0x303 },
- 'whitebalancebracketing' => { 159 => 0x22, 162 => 0x2c, 350 => 0x2c },
- 'whitebalancecomp' => { 255 => 0x1001 },
- 'whitebalancefinetune' => { 109 => 0x100a, 159 => 0x38, 161 => 0x112, 191 => 0xb, 323 => 0x1004, 339 => 0x6, 340 => 0x5, 351 => 0x112 },
- 'whitebalancemode' => { 300 => 0x1a },
+ 'whitebalancebracket' => { 248 => 0x502, 253 => 0x303 },
+ 'whitebalancebracketing' => { 159 => 0x22, 162 => 0x2c, 351 => 0x2c },
+ 'whitebalancecomp' => { 256 => 0x1001 },
+ 'whitebalancefinetune' => { 109 => 0x100a, 159 => 0x38, 161 => 0x112, 192 => 0xb, 324 => 0x1004, 340 => 0x6, 341 => 0x5, 352 => 0x112 },
+ 'whitebalancemode' => { 301 => 0x1a },
'whitebalancered' => { 64 => 0x6 },
- 'whitebalanceset' => { 281 => 0xa },
- 'whitebalancesetting' => { 159 => 0x23, 339 => 0x5, 340 => 0x4, 341 => 0x16, 355 => 0xd },
- 'whitebalancetemperature' => { 247 => 0x501 },
- 'whiteboard' => { 252 => 0x301 },
- 'whitelevel' => { 104 => 0xc61d, 300 => 0x7e },
- 'whitepoint' => { 104 => 0x13e, 300 => 0x201, 415 => 'WhitePoint' },
- 'whites2012' => { 394 => 'Whites2012' },
- 'wideadapter' => { 323 => 0x1017 },
+ 'whitebalanceset' => { 282 => 0xa },
+ 'whitebalancesetting' => { 159 => 0x23, 340 => 0x5, 341 => 0x4, 342 => 0x16, 356 => 0xd },
+ 'whitebalancetemperature' => { 248 => 0x501 },
+ 'whiteboard' => { 253 => 0x301 },
+ 'whitelevel' => { 104 => 0xc61d, 301 => 0x7e },
+ 'whitepoint' => { 104 => 0x13e, 301 => 0x201, 416 => 'WhitePoint' },
+ 'whites2012' => { 395 => 'Whites2012' },
+ 'wideadapter' => { 324 => 0x1017 },
'widefocuszone' => { 156 => 0x2f },
- 'widerange' => { 331 => 0x20f },
- 'windowsatom' => { 393 => 'windowsAtom' },
- 'windowsatomextension' => { 393 => [\'windowsAtom','windowsAtomExtension'] },
- 'windowsatominvocationflags' => { 393 => [\'windowsAtom','windowsAtomInvocationFlags'] },
- 'windowsatomuncprojectpath' => { 393 => [\'windowsAtom','windowsAtomUncProjectPath'] },
- 'wordcount' => { 409 => 'wordCount' },
+ 'widerange' => { 332 => 0x20f },
+ 'windowsatom' => { 394 => 'windowsAtom' },
+ 'windowsatomextension' => { 394 => [\'windowsAtom','windowsAtomExtension'] },
+ 'windowsatominvocationflags' => { 394 => [\'windowsAtom','windowsAtomInvocationFlags'] },
+ 'windowsatomuncprojectpath' => { 394 => [\'windowsAtom','windowsAtomUncProjectPath'] },
+ 'wordcount' => { 410 => 'wordCount' },
'workcolorspace' => { 90 => 0x10200, 95 => 0x270 },
- 'worktodo' => { 400 => 'WorkToDo' },
- 'worldtimelocation' => { 267 => 0x3a, 300 => 0x22, 306 => '0.1' },
+ 'worktodo' => { 401 => 'WorkToDo' },
+ 'worldtimelocation' => { 268 => 0x3a, 301 => 0x22, 307 => '0.1' },
'writer-editor' => { 112 => 0x7a },
- 'x3filllight' => { 332 => 0x12 },
+ 'x3filllight' => { 333 => 0x12 },
'xml' => { 116 => 'xml ' },
'xmp' => { 93 => 0xffff00f6, 105 => 'XMP' },
- 'xmptoolkit' => { 416 => 'xmptk' },
+ 'xmptoolkit' => { 417 => 'xmptk' },
'xpauthor' => { 104 => 0x9c9d },
'xpcomment' => { 104 => 0x9c9c },
'xpkeywords' => { 104 => 0x9c9e },
'xposition' => { 104 => 0x11e },
'xpsubject' => { 104 => 0x9c9f },
'xptitle' => { 104 => 0x9c9b },
- 'xresolution' => { 104 => 0x11a, 115 => 0x3, 313 => 0x0, 415 => 'XResolution' },
+ 'xresolution' => { 104 => 0x11a, 115 => 0x3, 314 => 0x0, 416 => 'XResolution' },
'xyresolution' => { 108 => 0x3 },
- 'yawangle' => { 207 => 0x3513 },
- 'ycbcrcoefficients' => { 104 => 0x211, 415 => 'YCbCrCoefficients' },
- 'ycbcrpositioning' => { 104 => 0x213, 415 => 'YCbCrPositioning' },
- 'ycbcrsubsampling' => { 104 => 0x212, 415 => 'YCbCrSubSampling' },
+ 'yawangle' => { 208 => 0x3513 },
+ 'ycbcrcoefficients' => { 104 => 0x211, 416 => 'YCbCrCoefficients' },
+ 'ycbcrpositioning' => { 104 => 0x213, 416 => 'YCbCrPositioning' },
+ 'ycbcrsubsampling' => { 104 => 0x212, 416 => 'YCbCrSubSampling' },
'yearcreated' => { 120 => 0x10, 129 => 0xc },
- 'yield' => { 411 => 'yield' },
+ 'yield' => { 412 => 'yield' },
'yposition' => { 104 => 0x11f },
- 'yresolution' => { 104 => 0x11b, 115 => 0x5, 313 => 0x4, 415 => 'YResolution' },
- 'zonematching' => { 161 => 0x10a, 164 => [0x3a,0x4a], 351 => 0xb024 },
+ 'yresolution' => { 104 => 0x11b, 115 => 0x5, 314 => 0x4, 416 => 'YResolution' },
+ 'zonematching' => { 161 => 0x10a, 164 => [0x3a,0x4a], 352 => 0xb024 },
'zonematchingmode' => { 159 => 0x14 },
'zonematchingon' => { 158 => 0x75 },
- 'zonematchingvalue' => { 339 => 0x1f },
- 'zoomedpreviewlength' => { 252 => 0xf05 },
- 'zoomedpreviewsize' => { 252 => 0xf06 },
- 'zoomedpreviewstart' => { 252 => 0xf04 },
+ 'zonematchingvalue' => { 340 => 0x1f },
+ 'zoomedpreviewlength' => { 253 => 0xf05 },
+ 'zoomedpreviewsize' => { 253 => 0xf06 },
+ 'zoomedpreviewstart' => { 253 => 0xf04 },
'zoomsourcewidth' => { 30 => 0x24 },
- 'zoomstepcount' => { 250 => 0x300, 252 => 0x100d },
+ 'zoomstepcount' => { 251 => 0x300, 253 => 0x100d },
'zoomtargetwidth' => { 30 => 0x25 },
);
diff --git a/lib/Image/ExifTool/TagNames.pod b/lib/Image/ExifTool/TagNames.pod
index 8a3a9c1f..40a8b942 100644
--- a/lib/Image/ExifTool/TagNames.pod
+++ b/lib/Image/ExifTool/TagNames.pod
@@ -611,6 +611,7 @@ EXIF 2.3 specification.
MakerNoteMinolta ExifIFD Minolta
MakerNoteMinolta2 ExifIFD Olympus
MakerNoteMinolta3 ExifIFD undef
+ MakerNoteMotorola ExifIFD Motorola
MakerNoteNikon2 ExifIFD Nikon Type2
MakerNoteNikon3 ExifIFD Nikon
MakerNoteNintendo ExifIFD Nintendo
@@ -2477,8 +2478,7 @@ Adobe Photoshop namespace tags.
Country string
Credit string
DateCreated date
- DocumentAncestors Ancestor Struct+
- DocumentAncestorID string_+
+ DocumentAncestors string+
EmbeddedXMPDigest string
Headline string
History string
@@ -2495,12 +2495,6 @@ Adobe Photoshop namespace tags.
TransmissionReference string
Urgency integer
-=head3 XMP Ancestor Struct
-
- Field Name Writable
- ---------- --------
- AncestorID string
-
=head3 XMP Layer Struct
Field Name Writable
@@ -8846,6 +8840,13 @@ DiMAGE X and Xt.
50 ExposureCompensation N
72 FocalLength N
+=head2 Motorola Tags
+
+ Tag ID Tag Name Writable
+ ------ -------- --------
+ 0x665e Sensor string
+ 0x6705 ManufactureDate string
+
=head2 Nikon Tags
Tag ID Tag Name Writable
@@ -14621,6 +14622,7 @@ still proprietary) Adobe format.
MakerNoteMinolta Minolta
MakerNoteMinolta2 Olympus
MakerNoteMinolta3 undef
+ MakerNoteMotorola Motorola
MakerNoteNikon2 Nikon Type2
MakerNoteNikon3 Nikon
MakerNoteNintendo Nintendo
@@ -28855,6 +28857,7 @@ for more details.
MakerNoteMinolta
MakerNoteMinolta2
MakerNoteMinolta3
+ MakerNoteMotorola
MakerNoteNikon
MakerNoteNikon2
MakerNoteNikon3
diff --git a/lib/Image/ExifTool/WriteCanonRaw.pl b/lib/Image/ExifTool/WriteCanonRaw.pl
index a29129cb..e67870b4 100644
--- a/lib/Image/ExifTool/WriteCanonRaw.pl
+++ b/lib/Image/ExifTool/WriteCanonRaw.pl
@@ -307,7 +307,7 @@ sub WriteCanonRaw($$$)
if (@addTags and (not defined($tag) or $tag >= $addTags[0])) {
my $addTag = shift @addTags;
$tagInfo = $$newTags{$addTag};
- my $newVal = $et->GetNewValues($tagInfo);
+ my $newVal = $et->GetNewValue($tagInfo);
if (defined $newVal) {
# pad value to an even length (Canon ImageBrowser and ZoomBrowser
# version 6.1.1 have problems with odd-sized embedded JPEG images
@@ -432,7 +432,7 @@ sub WriteCanonRaw($$$)
}
my $nvHash = $et->GetNewValueHash($tagInfo);
if ($et->IsOverwriting($nvHash, $oldVal)) {
- my $newVal = $et->GetNewValues($nvHash);
+ my $newVal = $et->GetNewValue($nvHash);
my $verboseVal;
$verboseVal = $newVal if $verbose > 1;
# convert to specified format if necessary
diff --git a/lib/Image/ExifTool/WriteExif.pl b/lib/Image/ExifTool/WriteExif.pl
index 30e68b9f..46940d25 100644
--- a/lib/Image/ExifTool/WriteExif.pl
+++ b/lib/Image/ExifTool/WriteExif.pl
@@ -1371,7 +1371,7 @@ sub EncodeExifText($$)
my ($et, $val) = @_;
# does the string contain special characters?
if ($val =~ /[\x80-\xff]/) {
- my $order = $et->GetNewValues('ExifUnicodeByteOrder');
+ my $order = $et->GetNewValue('ExifUnicodeByteOrder');
return "UNICODE\0" . $et->Encode($val,'UTF16',$order);
} else {
return "ASCII\0\0\0$val";
@@ -1832,7 +1832,7 @@ sub WriteExif($$$)
my $curInfo = $et->GetTagInfo($tagTablePtr, $tagID);
if (defined $curInfo and not $curInfo) {
# need value to evaluate the condition
- my ($val) = $et->GetNewValues($tagInfo);
+ my ($val) = $et->GetNewValue($tagInfo);
# must convert to binary for evaluating in Condition
if ($$tagInfo{Format} and defined $val) {
$val = WriteValue($val, $$tagInfo{Format}, $$tagInfo{Count});
@@ -2360,7 +2360,7 @@ Entry: for (;;) {
}
}
if ($isOverwriting) {
- $newVal = $et->GetNewValues($nvHash) unless defined $newVal;
+ $newVal = $et->GetNewValue($nvHash) unless defined $newVal;
# value undefined if deleting this tag
# (also delete tag if cross-deleting and this isn't a date/time shift)
if (not defined $newVal or ($xDelete{$newID} and not defined $$nvHash{Shift})) {
@@ -2516,7 +2516,7 @@ NoOverwrite: next if $isNew > 0;
# prefer tag from Composite table if it exists (otherwise
# PreviewImage data would be taken from Extra tag)
my $compInfo = $Image::ExifTool::Composite{$dataTag};
- $offsetData{$dataTag} = $et->GetNewValues($compInfo || $dataTag);
+ $offsetData{$dataTag} = $et->GetNewValue($compInfo || $dataTag);
my $err;
if (defined $offsetData{$dataTag}) {
my $len = length $offsetData{$dataTag};
@@ -2936,7 +2936,7 @@ NoOverwrite: next if $isNew > 0;
my $hasVRD;
if ($$et{NEW_VALUE}{$Image::ExifTool::Extra{CanonVRD}}) {
# adding or deleting as a block
- $hasVRD = $et->GetNewValues('CanonVRD') ? 1 : 0;
+ $hasVRD = $et->GetNewValue('CanonVRD') ? 1 : 0;
} elsif ($$et{DEL_GROUP}{CanonVRD} or
$$et{DEL_GROUP}{Trailer})
{
@@ -2959,7 +2959,7 @@ NoOverwrite: next if $isNew > 0;
my $odd;
my $oddInfo = $Image::ExifTool::Composite{OriginalDecisionData};
if ($oddInfo and $$et{NEW_VALUE}{$oddInfo}) {
- $odd = $et->GetNewValues($dataTag);
+ $odd = $et->GetNewValue($dataTag);
if ($verbose > 1) {
print $out " - $dirName:$dataTag\n" if $$newValuePt ne "\0\0\0\0";
print $out " + $dirName:$dataTag\n" if $odd;
diff --git a/lib/Image/ExifTool/WriteIPTC.pl b/lib/Image/ExifTool/WriteIPTC.pl
index a5834520..2e958084 100644
--- a/lib/Image/ExifTool/WriteIPTC.pl
+++ b/lib/Image/ExifTool/WriteIPTC.pl
@@ -516,7 +516,7 @@ sub DoWriteIPTC($$$)
$doSet = 1 if not $found and $$nvHash{IsCreating};
}
if ($doSet) {
- @values = $et->GetNewValues($nvHash);
+ @values = $et->GetNewValue($nvHash);
@values and $foundRec{$newRec}->{$newTag} = $found | 0x04;
# write tags for each value in list
my $value;
@@ -633,7 +633,7 @@ sub WriteIPTC($$$)
my $nvHash = $$et{NEW_VALUE}{$Image::ExifTool::Photoshop::iptcDigestInfo};
last unless defined $nvHash;
last unless IsStandardIPTC($et->MetadataPath());
- my @values = $et->GetNewValues($nvHash);
+ my @values = $et->GetNewValue($nvHash);
push @values, @{$$nvHash{DelValue}} if $$nvHash{DelValue};
my $new = grep /^new$/, @values;
my $old = grep /^old$/, @values;
diff --git a/lib/Image/ExifTool/WritePDF.pl b/lib/Image/ExifTool/WritePDF.pl
index 1c44008b..6c1465d7 100644
--- a/lib/Image/ExifTool/WritePDF.pl
+++ b/lib/Image/ExifTool/WritePDF.pl
@@ -445,7 +445,7 @@ sub WritePDF($$)
next unless $deleted or $$tagInfo{List} or not exists $$infoDict{$tagID};
# add new values to existing ones
- my @newVals = $et->GetNewValues($nvHash);
+ my @newVals = $et->GetNewValue($nvHash);
if (@newVals) {
push @vals, @newVals;
++$infoChanged;
diff --git a/lib/Image/ExifTool/WritePNG.pl b/lib/Image/ExifTool/WritePNG.pl
index 4b3fdf3f..06082ec9 100644
--- a/lib/Image/ExifTool/WritePNG.pl
+++ b/lib/Image/ExifTool/WritePNG.pl
@@ -248,7 +248,7 @@ sub AddChunks($$;@)
my $nvHash = $et->GetNewValueHash($tagInfo);
# (native PNG information is always preferred, so don't check IsCreating)
next unless $et->IsOverwriting($nvHash);
- my $val = $et->GetNewValues($nvHash);
+ my $val = $et->GetNewValue($nvHash);
if (defined $val) {
next if $$nvHash{EditOnly};
my $data;
diff --git a/lib/Image/ExifTool/WritePhotoshop.pl b/lib/Image/ExifTool/WritePhotoshop.pl
index a22501e3..5e50bbee 100644
--- a/lib/Image/ExifTool/WritePhotoshop.pl
+++ b/lib/Image/ExifTool/WritePhotoshop.pl
@@ -124,7 +124,7 @@ sub WritePhotoshop($$$)
$$newTags{$tagID} = $tagInfo; # add later
$value = undef;
} else {
- $value = $et->GetNewValues($nvHash);
+ $value = $et->GetNewValue($nvHash);
}
++$$et{CHANGED};
next unless defined $value; # next if tag is being deleted
@@ -185,7 +185,7 @@ sub WritePhotoshop($$$)
if ($$newTags{$tagID}) {
$tagInfo = $$newTags{$tagID};
my $nvHash = $et->GetNewValueHash($tagInfo);
- $value = $et->GetNewValues($nvHash);
+ $value = $et->GetNewValue($nvHash);
# handle new IPTCDigest value specially
if ($tagInfo eq $iptcDigestInfo and defined $value) {
if ($value eq 'new') {
diff --git a/lib/Image/ExifTool/WritePostScript.pl b/lib/Image/ExifTool/WritePostScript.pl
index 622dc082..462d9d4f 100644
--- a/lib/Image/ExifTool/WritePostScript.pl
+++ b/lib/Image/ExifTool/WritePostScript.pl
@@ -290,7 +290,7 @@ sub WriteNewTags($$$)
my $tagInfo = $$newTags{$tag};
my $nvHash = $et->GetNewValueHash($tagInfo);
next unless $$nvHash{IsCreating};
- my $val = $et->GetNewValues($nvHash);
+ my $val = $et->GetNewValue($nvHash);
$et->VerboseValue("+ PostScript:$$tagInfo{Name}", $val);
Write($outfile, EncodeTag($tag, $val)) or $success = 0;
++$$et{CHANGED};
@@ -583,7 +583,7 @@ sub WritePS($$)
my $nvHash = $et->GetNewValueHash($tagInfo);
if ($et->IsOverwriting($nvHash, $val)) {
$et->VerboseValue("- PostScript:$$tagInfo{Name}", $val);
- $val = $et->GetNewValues($nvHash);
+ $val = $et->GetNewValue($nvHash);
++$$et{CHANGED};
next unless defined $val; # next if tag is being deleted
$et->VerboseValue("+ PostScript:$$tagInfo{Name}", $val);
diff --git a/lib/Image/ExifTool/WriteXMP.pl b/lib/Image/ExifTool/WriteXMP.pl
index 67ba6aa7..f9b6daa2 100644
--- a/lib/Image/ExifTool/WriteXMP.pl
+++ b/lib/Image/ExifTool/WriteXMP.pl
@@ -56,7 +56,7 @@ sub XMPOpen($)
my $nv = $$et{NEW_VALUE}{$Image::ExifTool::XMP::x{xmptk}};
my $tk;
if (defined $nv) {
- $tk = $et->GetNewValues($nv);
+ $tk = $et->GetNewValue($nv);
$et->VerboseValue(($tk ? '+' : '-') . ' XMP-x:XMPToolkit', $tk);
++$$et{CHANGED};
} else {
@@ -667,7 +667,7 @@ sub WriteXMP($$;$)
}
$tagInfo = $Image::ExifTool::XMP::rdf{about};
if (defined $$et{NEW_VALUE}{$tagInfo}) {
- $about = $et->GetNewValues($$et{NEW_VALUE}{$tagInfo}) || '';
+ $about = $et->GetNewValue($$et{NEW_VALUE}{$tagInfo}) || '';
if ($verbose > 1) {
my $wasAbout = $$et{XMP_ABOUT};
$et->VerboseValue('- XMP-rdf:About', UnescapeXML($wasAbout)) if defined $wasAbout;
@@ -690,7 +690,7 @@ sub WriteXMP($$;$)
$tagInfo = $Image::ExifTool::Extra{XMP};
if ($tagInfo and $$et{NEW_VALUE}{$tagInfo}) {
my $rtnVal = 1;
- my $newVal = $et->GetNewValues($$et{NEW_VALUE}{$tagInfo});
+ my $newVal = $et->GetNewValue($$et{NEW_VALUE}{$tagInfo});
if (defined $newVal and length $newVal) {
$et->VPrint(0, " Writing XMP as a block\n");
++$$et{CHANGED};
@@ -1028,7 +1028,7 @@ sub WriteXMP($$;$)
(not $cap and $isCreating);
# get list of new values (all done if no new values specified)
- my @newValues = $et->GetNewValues($nvHash) or next;
+ my @newValues = $et->GetNewValue($nvHash) or next;
# set language attribute for lang-alt lists
$attrs{'xml:lang'} = $$tagInfo{LangCode} || 'x-default' if $writable eq 'lang-alt';
diff --git a/lib/Image/ExifTool/Writer.pl b/lib/Image/ExifTool/Writer.pl
index 9590b247..38ac0917 100644
--- a/lib/Image/ExifTool/Writer.pl
+++ b/lib/Image/ExifTool/Writer.pl
@@ -262,12 +262,15 @@ sub SetNewValue($;$$%)
if (@$value > 1) {
# set all list-type tags first
my $replace = $options{Replace};
+ my $noJoin;
foreach (@$value) {
+ $noJoin = 1 if ref $_;
my ($n, $e) = SetNewValue($self, $tag, $_, %options, ListOnly => 1);
$err = $e if $e;
$numSet += $n;
delete $options{Replace}; # don't replace earlier values in list
}
+ return $numSet if $noJoin; # don't join if list contains objects
# and now set only non-list tags
$value = join $$self{OPTIONS}{ListSep}, @$value;
$options{Replace} = $replace;
@@ -1080,6 +1083,7 @@ sub SetNewValuesFromFile($$;@)
ExtendedXMP => $$options{ExtendedXMP},
ExtractEmbedded => $$options{ExtractEmbedded},
FastScan => $$options{FastScan},
+ Filter => $$options{Filter},
FixBase => $$options{FixBase},
GlobalTimeShift => $$options{GlobalTimeShift},
IgnoreMinorErrors=>$$options{IgnoreMinorErrors},
@@ -1380,7 +1384,7 @@ SET: foreach $set (@setList) {
# 2) Must call AFTER IsOverwriting() returns 1 to get proper value for shifted times
# 3) Tag name is case sensitive and may be prefixed by family 0 or 1 group name
# 4) Value may have been modified by CHECK_PROC routine after ValueConv
-sub GetNewValues($$;$)
+sub GetNewValue($$;$)
{
local $_;
my $self = shift;
@@ -1607,7 +1611,7 @@ sub SetFileModifyDate($$;$$$)
my ($self, $file, $originalTime, $tag, $isUnixTime) = @_;
my $nvHash;
$tag = 'FileModifyDate' unless defined $tag;
- my $val = $self->GetNewValues($tag, \$nvHash);
+ my $val = $self->GetNewValue($tag, \$nvHash);
return 0 unless defined $val;
my $isOverwriting = $self->IsOverwriting($nvHash);
return 0 unless $isOverwriting;
@@ -1658,15 +1662,15 @@ sub SetFileName($$;$$)
unless (defined $newName) {
if ($opt) {
if ($opt eq 'Link') {
- $newName = $self->GetNewValues('HardLink');
+ $newName = $self->GetNewValue('HardLink');
} elsif ($opt eq 'Test') {
- $newName = $self->GetNewValues('TestName');
+ $newName = $self->GetNewValue('TestName');
}
return 0 unless defined $newName;
} else {
- my $filename = $self->GetNewValues('FileName', \$nvHash);
+ my $filename = $self->GetNewValue('FileName', \$nvHash);
$doName = 1 if defined $filename and $self->IsOverwriting($nvHash, $file);
- my $dir = $self->GetNewValues('Directory', \$nvHash);
+ my $dir = $self->GetNewValue('Directory', \$nvHash);
$doDir = 1 if defined $dir and $self->IsOverwriting($nvHash, $file);
return 0 unless $doName or $doDir; # nothing to do
if ($doName) {
@@ -1774,8 +1778,8 @@ sub WriteInfo($$;$$)
# first, save original file modify date if necessary
# (do this now in case we are modifying file in place and shifting date)
my ($nvHash, $nvHash2, $originalTime, $createTime);
- my $fileModifyDate = $self->GetNewValues('FileModifyDate', \$nvHash);
- my $fileCreateDate = $self->GetNewValues('FileCreateDate', \$nvHash2);
+ my $fileModifyDate = $self->GetNewValue('FileModifyDate', \$nvHash);
+ my $fileCreateDate = $self->GetNewValue('FileCreateDate', \$nvHash2);
my ($aTime, $mTime, $cTime);
if (defined $fileModifyDate and $self->IsOverwriting($nvHash) < 0 and
defined $infile and ref $infile ne 'SCALAR')
@@ -1794,12 +1798,12 @@ sub WriteInfo($$;$$)
#
my ($numNew, $numPseudo) = $self->CountNewValues();
if (not defined $outfile and defined $infile) {
- $hardLink = $self->GetNewValues('HardLink');
- $testName = $self->GetNewValues('TestName');
+ $hardLink = $self->GetNewValue('HardLink');
+ $testName = $self->GetNewValue('TestName');
undef $hardLink if defined $hardLink and not length $hardLink;
undef $testName if defined $testName and not length $testName;
- my $newFileName = $self->GetNewValues('FileName', \$nvHash);
- my $newDir = $self->GetNewValues('Directory');
+ my $newFileName = $self->GetNewValue('FileName', \$nvHash);
+ my $newDir = $self->GetNewValue('Directory');
if (defined $newDir and length $newDir) {
$newDir .= '/' unless $newDir =~ m{/$};
} else {
@@ -2410,6 +2414,14 @@ sub AddUserDefinedTags($%)
# Functions below this are not part of the public API
#------------------------------------------------------------------------------
+# Maintain backward compatibility for old GetNewValues function name
+sub GetNewValues($$;$)
+{
+ my ($self, $tag, $nvHashPt) = @_;
+ return $self->GetNewValue($tag, $nvHashPt);
+}
+
+#------------------------------------------------------------------------------
# Un-escape string according to options settings and clear UTF-8 flag
# Inputs: 0) ExifTool ref, 1) string ref or string ref ref
# Notes: also de-references SCALAR values
@@ -3018,7 +3030,7 @@ sub IsOverwriting($$;$)
return 0;
}
# ensure that the shifted value is valid and reformat if necessary
- my $checkVal = $self->GetNewValues($nvHash);
+ my $checkVal = $self->GetNewValue($nvHash);
return 0 unless defined $checkVal;
# don't bother overwriting if value is the same
return 0 if $val eq $$nvHash{Value}[0];
@@ -3550,7 +3562,7 @@ sub WriteDirectory($$$;$)
}
last unless $self->IsOverwriting($nvHash, $dataPt ? $$dataPt : '');
my $verb = 'Writing';
- my $newVal = $self->GetNewValues($nvHash);
+ my $newVal = $self->GetNewValue($nvHash);
unless (defined $newVal and length $newVal) {
return '' unless $dataPt or $$dirInfo{RAF}; # nothing to do if block never existed
$verb = 'Deleting';
@@ -4148,7 +4160,7 @@ sub SetPreferredByteOrder($)
{
my $self = shift;
my $byteOrder = $self->Options('ByteOrder') ||
- $self->GetNewValues('ExifByteOrder') ||
+ $self->GetNewValue('ExifByteOrder') ||
$$self{MAKER_NOTE_BYTE_ORDER} || 'MM';
unless (SetByteOrder($byteOrder)) {
warn "Invalid byte order '$byteOrder'\n" if $self->Options('Verbose');
@@ -4516,7 +4528,7 @@ sub AddNewTrailers($;@)
foreach $type (@types) {
next unless $$self{NEW_VALUE}{$Image::ExifTool::Extra{$type}};
next if $$self{"Did$type"};
- my $val = $self->GetNewValues($type) or next;
+ my $val = $self->GetNewValue($type) or next;
# DR4 record must be wrapped in VRD trailer package
if ($type eq 'CanonDR4') {
next if $$self{DidCanonVRD}; # (only allow one VRD trailer)
@@ -4930,7 +4942,7 @@ sub WriteJPEG($$)
last if $dirCount{Adobe};
if (exists $$addDirs{Adobe} and not defined $doneDir{Adobe}) {
$doneDir{Adobe} = 1;
- my $buff = $self->GetNewValues('Adobe');
+ my $buff = $self->GetNewValue('Adobe');
if ($buff) {
$verbose and print $out "Creating APP14:\n Creating Adobe segment\n";
my $size = length($buff);
@@ -4949,7 +4961,7 @@ sub WriteJPEG($$)
if (exists $$addDirs{COM} and not defined $doneDir{COM}) {
$doneDir{COM} = 1;
next if $$delGroup{File} and $$delGroup{File} != 2;
- my $newComment = $self->GetNewValues('Comment');
+ my $newComment = $self->GetNewValue('Comment');
if (defined $newComment and length($newComment)) {
if ($verbose) {
print $out "Creating COM:\n";
@@ -5609,7 +5621,7 @@ sub WriteJPEG($$)
my $val = $segData;
$val =~ s/\0+$//; # allow for stupid software that adds NULL terminator
if ($self->IsOverwriting($nvHash, $val) or $$delGroup{File}) {
- $newComment = $self->GetNewValues($nvHash);
+ $newComment = $self->GetNewValue($nvHash);
} else {
delete $$editDirs{COM}; # we aren't editing COM after all
last;
@@ -6021,7 +6033,7 @@ sub WriteBinaryData($$$)
next unless defined $val;
my $nvHash = $self->GetNewValueHash($tagInfo, $$self{CUR_WRITE_GROUP});
next unless $self->IsOverwriting($nvHash, $val);
- my $newVal = $self->GetNewValues($nvHash);
+ my $newVal = $self->GetNewValue($nvHash);
next unless defined $newVal; # can't delete from a binary table
# only write masked bits if specified
my $mask = $$tagInfo{Mask};
@@ -6029,7 +6041,7 @@ sub WriteBinaryData($$$)
# set the size
if ($$tagInfo{DataTag} and not $$tagInfo{IsOffset}) {
warn 'Internal error' unless $newVal == 0xfeedfeed;
- my $data = $self->GetNewValues($$tagInfo{DataTag});
+ my $data = $self->GetNewValue($$tagInfo{DataTag});
$newVal = length($data) if defined $data;
my $format = $$tagInfo{Format} || $$tagTablePtr{FORMAT} || 'int32u';
if ($format =~ /^int16/ and $newVal > 0xffff) {
@@ -6079,7 +6091,7 @@ sub WriteBinaryData($$$)
$$previewInfo{IsShort} = 1 unless $format eq 'int32u';
$$previewInfo{Absolute} = 1 if $$tagInfo{IsOffset} and $$tagInfo{IsOffset} eq '3';
# get the value of the Composite::PreviewImage tag
- $$previewInfo{Data} = $self->GetNewValues($Image::ExifTool::Composite{PreviewImage});
+ $$previewInfo{Data} = $self->GetNewValue($Image::ExifTool::Composite{PreviewImage});
unless (defined $$previewInfo{Data}) {
if ($offset >= 0 and $offset + $size <= $$dirInfo{DataLen}) {
$$previewInfo{Data} = substr(${$$dirInfo{DataPt}},$offset,$size);
diff --git a/lib/Image/ExifTool/XMP.pm b/lib/Image/ExifTool/XMP.pm
index 36be06cc..ba372437 100644
--- a/lib/Image/ExifTool/XMP.pm
+++ b/lib/Image/ExifTool/XMP.pm
@@ -47,7 +47,7 @@ use Image::ExifTool qw(:Utils);
use Image::ExifTool::Exif;
require Exporter;
-$VERSION = '2.88';
+$VERSION = '2.89';
@ISA = qw(Exporter);
@EXPORT_OK = qw(EscapeXML UnescapeXML);
@@ -1057,13 +1057,15 @@ my %sPantryItem = (
Credit => { Groups => { 2 => 'Author' } },
DateCreated => { Groups => { 2 => 'Time' }, %dateTimeInfo },
DocumentAncestors => {
- FlatName => 'Document',
List => 'Bag',
- Struct => {
- STRUCT_NAME => 'Ancestor',
- NAMESPACE => 'photoshop',
- AncestorID => { },
- },
+ # Contrary to their own XMP specification, Adobe writes this as a simple Bag
+ # of strings instead of structures, so comment out the structure definition...
+ # FlatName => 'Document',
+ # Struct => {
+ # STRUCT_NAME => 'Ancestor',
+ # NAMESPACE => 'photoshop',
+ # AncestorID => { },
+ # },
},
Headline => { },
History => { }, #PH (CS3)