exiftool_vendored 11.88.0 → 11.89.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of exiftool_vendored might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/bin/Changes +10 -0
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +2 -2
- data/bin/exiftool +2 -2
- data/bin/lib/Image/ExifTool.pm +10 -3
- data/bin/lib/Image/ExifTool.pod +5 -5
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +1 -1
- data/bin/lib/Image/ExifTool/QuickTime.pm +14 -2
- data/bin/lib/Image/ExifTool/Samsung.pm +2 -0
- data/bin/lib/Image/ExifTool/TagLookup.pm +13 -3
- data/bin/lib/Image/ExifTool/TagNames.pod +30 -2
- data/bin/lib/Image/ExifTool/WriteExif.pl +3 -0
- data/bin/lib/Image/ExifTool/WriteXMP.pl +1 -1
- data/bin/lib/Image/ExifTool/Writer.pl +8 -7
- data/bin/lib/Image/ExifTool/XMP.pm +30 -1
- data/bin/perl-Image-ExifTool.spec +1 -1
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0d3946a9b1b7c50a6864746de47d3c8a0818df3c
|
4
|
+
data.tar.gz: 71ff7c97951c9a108372db26f1192cea9eca2002
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 13d128e73009d6d931223324a9f54d4692da494db474d2030c6b7b8fb00f96a180ef0cbec2e788ff9440d4b6c7e875a620600766b885aa9957fecd4d8b5dc2cf
|
7
|
+
data.tar.gz: f233de0cbbfc34b207ecb59e9ac8d7247e338ec93443ce8278c1096b549d894db3a5b2767d0055064f1d90233ef386fea79337a2206ec38122c58d172b0ace28
|
data/bin/Changes
CHANGED
@@ -7,6 +7,16 @@ RSS feed: https://exiftool.org/rss.xml
|
|
7
7
|
Note: The most recent production release is Version 11.85. (Other versions are
|
8
8
|
considered development releases, and are not uploaded to CPAN.)
|
9
9
|
|
10
|
+
Feb. 25, 2020 - Version 11.89
|
11
|
+
|
12
|
+
- Added support for Exif 2.32 for XMP
|
13
|
+
- Recognize the HIF file extension
|
14
|
+
- Improved verbose output for QuickTime iref items
|
15
|
+
- Patched to use same byte ordering as IFD0 by default when creating new GPS
|
16
|
+
metadata in Canon CR3 files
|
17
|
+
- Patched to add missing newline that could occur in XMP with the API Compact
|
18
|
+
Shorthand option
|
19
|
+
|
10
20
|
Feb. 20, 2020 - Version 11.88
|
11
21
|
|
12
22
|
- Added write support for new Google depth-map XMP tags
|
data/bin/META.json
CHANGED
data/bin/META.yml
CHANGED
data/bin/README
CHANGED
@@ -105,8 +105,8 @@ your home directory, then you would type the following commands in a
|
|
105
105
|
terminal window to extract and run ExifTool:
|
106
106
|
|
107
107
|
cd ~/Desktop
|
108
|
-
gzip -dc Image-ExifTool-11.
|
109
|
-
cd Image-ExifTool-11.
|
108
|
+
gzip -dc Image-ExifTool-11.89.tar.gz | tar -xf -
|
109
|
+
cd Image-ExifTool-11.89
|
110
110
|
./exiftool t/images/ExifTool.jpg
|
111
111
|
|
112
112
|
Note: These commands extract meta information from one of the test images.
|
data/bin/exiftool
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
use strict;
|
11
11
|
require 5.004;
|
12
12
|
|
13
|
-
my $version = '11.
|
13
|
+
my $version = '11.89';
|
14
14
|
|
15
15
|
# add our 'lib' directory to the include list BEFORE 'use Image::ExifTool'
|
16
16
|
my $exeDir;
|
@@ -5202,7 +5202,7 @@ with this command:
|
|
5202
5202
|
|
5203
5203
|
produces output like this:
|
5204
5204
|
|
5205
|
-
-- Generated by ExifTool 11.
|
5205
|
+
-- Generated by ExifTool 11.89 --
|
5206
5206
|
File: a.jpg - 2003:10:31 15:44:19
|
5207
5207
|
(f/5.6, 1/60s, ISO 100)
|
5208
5208
|
File: b.jpg - 2006:05:23 11:57:38
|
data/bin/lib/Image/ExifTool.pm
CHANGED
@@ -28,7 +28,7 @@ use vars qw($VERSION $RELEASE @ISA @EXPORT_OK %EXPORT_TAGS $AUTOLOAD @fileTypes
|
|
28
28
|
%mimeType $swapBytes $swapWords $currentByteOrder %unpackStd
|
29
29
|
%jpegMarker %specialTags %fileTypeLookup $testLen);
|
30
30
|
|
31
|
-
$VERSION = '11.
|
31
|
+
$VERSION = '11.89';
|
32
32
|
$RELEASE = '';
|
33
33
|
@ISA = qw(Exporter);
|
34
34
|
%EXPORT_TAGS = (
|
@@ -110,7 +110,7 @@ sub CheckBinaryData($$$);
|
|
110
110
|
sub WriteTIFF($$$);
|
111
111
|
sub PackUTF8(@);
|
112
112
|
sub UnpackUTF8($);
|
113
|
-
sub SetPreferredByteOrder(
|
113
|
+
sub SetPreferredByteOrder($;$);
|
114
114
|
sub CopyBlock($$$);
|
115
115
|
sub CopyFileAttrs($$$);
|
116
116
|
sub TimeNow(;$$);
|
@@ -319,6 +319,7 @@ my %createTypes = map { $_ => 1 } qw(XMP ICC MIE VRD DR4 EXIF EXV);
|
|
319
319
|
HDR => ['HDR', 'Radiance RGBE High Dynamic Range'],
|
320
320
|
HEIC => ['MOV', 'High Efficiency Image Format still image'],
|
321
321
|
HEIF => ['MOV', 'High Efficiency Image Format'],
|
322
|
+
HIF => 'HEIF',
|
322
323
|
HTM => 'HTML',
|
323
324
|
HTML => ['HTML', 'HyperText Markup Language'],
|
324
325
|
ICAL => 'ICS',
|
@@ -2098,6 +2099,7 @@ sub Options($$;@)
|
|
2098
2099
|
/^(.*:)?([-\w?*]*)#?$/ or next;
|
2099
2100
|
push @{$$options{$param}}, lc($2) if $2;
|
2100
2101
|
next unless $1;
|
2102
|
+
# add requested groups with trailing colon
|
2101
2103
|
push @{$$options{$param}}, lc($_).':' foreach split /:/, $1;
|
2102
2104
|
}
|
2103
2105
|
} else {
|
@@ -7015,8 +7017,13 @@ sub DoProcessTIFF($$;$)
|
|
7015
7017
|
$$self{EXIF_DATA} = '';
|
7016
7018
|
}
|
7017
7019
|
unless (defined $$self{EXIF_DATA}) {
|
7020
|
+
# set default byte order for creating new GPS in CR3 images
|
7021
|
+
my $defaultByteOrder;
|
7022
|
+
if ($$dirInfo{DirName} and $$dirInfo{DirName} eq 'GPS') {
|
7023
|
+
$defaultByteOrder = $$self{SaveExifByteOrder};
|
7024
|
+
}
|
7018
7025
|
# create TIFF information from scratch
|
7019
|
-
if ($self->SetPreferredByteOrder() eq 'MM') {
|
7026
|
+
if ($self->SetPreferredByteOrder($defaultByteOrder) eq 'MM') {
|
7020
7027
|
$$self{EXIF_DATA} = "MM\0\x2a\0\0\0\x08";
|
7021
7028
|
} else {
|
7022
7029
|
$$self{EXIF_DATA} = "II\x2a\0\x08\0\0\0";
|
data/bin/lib/Image/ExifTool.pod
CHANGED
@@ -536,13 +536,13 @@ since padding is never written for stand-alone XMP files. Also note that
|
|
536
536
|
'OneDesc' is not recommended when writing XMP larger than 64 kB to a JPG
|
537
537
|
file because it interferes with ExifTool's technique of splitting off the
|
538
538
|
large description elements into the extended XMP. Case is not significant
|
539
|
-
for any of these options. Default is undef.
|
539
|
+
for any of these options. Aliases are given in brackets. Default is undef.
|
540
540
|
|
541
|
-
NoPadding - Avoid 2 kB of recommended padding at end of XMP
|
542
|
-
NoIndent -
|
543
|
-
NoNewline - Avoid unnecessary newlines
|
541
|
+
NoPadding - Avoid 2 kB of recommended padding at end of XMP (NoPad)
|
542
|
+
NoIndent - No spaces to indent lines (NoSpace, NoSpaces)
|
543
|
+
NoNewline - Avoid unnecessary newlines (NoNewlines)
|
544
544
|
Shorthand - Use XMP Shorthand format
|
545
|
-
OneDesc - Combine
|
545
|
+
OneDesc - Combine properties into a single rdf:Description (OneDescr)
|
546
546
|
AllSpace - Equivalent to 'NoPadding,NoIndent,NoNewline'
|
547
547
|
AllFormat - Equivalent to 'Shorthand,OneDesc'
|
548
548
|
All - Equivalent to 'AllSpace,AllFormat'
|
@@ -318,7 +318,7 @@ When reading, C<struct> tags are extracted only if the L<Struct|../ExifTool.html
|
|
318
318
|
option is used. Otherwise the corresponding I<Flattened> tags, indicated by
|
319
319
|
an underline (C<_>) after the B<Writable> type, are extracted. When
|
320
320
|
copying, by default both structured and flattened tags are available, but
|
321
|
-
the flattened tags are considered "unsafe" so they
|
321
|
+
the flattened tags are considered "unsafe" so they aren't copied unless
|
322
322
|
specified explicitly. The L<Struct|../ExifTool.html#Struct> option may be disabled by setting Struct
|
323
323
|
to 0 via the API or with --struct on the command line to copy only flattened
|
324
324
|
tags, or enabled by setting Struct to 1 via the API or with -struct on the
|
@@ -45,7 +45,7 @@ use Image::ExifTool qw(:DataAccess :Utils);
|
|
45
45
|
use Image::ExifTool::Exif;
|
46
46
|
use Image::ExifTool::GPS;
|
47
47
|
|
48
|
-
$VERSION = '2.
|
48
|
+
$VERSION = '2.43';
|
49
49
|
|
50
50
|
sub ProcessMOV($$;$);
|
51
51
|
sub ProcessKeys($$$);
|
@@ -205,6 +205,7 @@ my %ftypLookup = (
|
|
205
205
|
'hevc' => 'High Efficiency Image Format HEVC sequence (.HEICS)', # image/heic-sequence
|
206
206
|
'mif1' => 'High Efficiency Image Format still image (.HEIF)', # image/heif
|
207
207
|
'msf1' => 'High Efficiency Image Format sequence (.HEIFS)', # image/heif-sequence
|
208
|
+
'heix' => 'High Efficiency Image Format still image (.HEIF)', # image/heif (ref PH, Canon 1DXmkIII)
|
208
209
|
'avif' => 'AV1 Image File Format (.AVIF)', # image/avif
|
209
210
|
'crx ' => 'Canon Raw (.CRX)', #PH (CR3 or CRM; use Canon CompressorVersion to decide)
|
210
211
|
);
|
@@ -7725,7 +7726,6 @@ sub ParseContentDescribes($$)
|
|
7725
7726
|
}
|
7726
7727
|
# add all referenced item ID's to a "RefersTo" lookup
|
7727
7728
|
$$et{ItemInfo}{$id}{RefersTo}{$_} = 1 foreach @to;
|
7728
|
-
$et->VPrint(1, "$$et{INDENT} Item $id describes: @to\n") unless $$et{IsWriting};
|
7729
7729
|
return undef;
|
7730
7730
|
}
|
7731
7731
|
|
@@ -8558,6 +8558,18 @@ ItemID: foreach $id (keys %$items) {
|
|
8558
8558
|
Format => $tagInfo ? $$tagInfo{Format} : undef,
|
8559
8559
|
Index => $index,
|
8560
8560
|
);
|
8561
|
+
# print iref item ID numbers
|
8562
|
+
if ($dirID eq 'iref') {
|
8563
|
+
my ($id, $count, @to);
|
8564
|
+
if ($$et{ItemRefVersion}) {
|
8565
|
+
($id, $count, @to) = unpack('NnN*', $val) if length $val >= 10;
|
8566
|
+
} else {
|
8567
|
+
($id, $count, @to) = unpack('nnn*', $val) if length $val >= 6;
|
8568
|
+
}
|
8569
|
+
defined $id or $id = '<err>', $count = 0;
|
8570
|
+
$id .= " (wrong count: $count)" if $count != @to;
|
8571
|
+
$et->VPrint(1, "$$et{INDENT} Item $id refers to: @to\n");
|
8572
|
+
}
|
8561
8573
|
}
|
8562
8574
|
# extract metadata from stream if ExtractEmbedded option is enabled
|
8563
8575
|
if ($eeTag) {
|
@@ -960,6 +960,8 @@ my %formatMinMax = (
|
|
960
960
|
# 0x08e0-name - seen 'Panorama_Shot_Info'
|
961
961
|
# 0x08e0 - string, seen 'PanoramaShot'
|
962
962
|
# 0x08e1-name - seen 'Motion_Panorama_Info'
|
963
|
+
# 0x0910-name - seen 'Front_Cam_Selfie_Info'
|
964
|
+
# 0x0910 - string, seen 'Front_Cam_Selfie_Info'
|
963
965
|
# 0x09e0-name - seen 'Burst_Shot_Info'
|
964
966
|
# 0x09e0 - string, seen '489489125'
|
965
967
|
# 0x0a01-name - seen 'Image_UTC_Data'
|
@@ -1613,14 +1613,24 @@ my %tagLookup = (
|
|
1613
1613
|
'comment' => { 0 => 0x2, 117 => 'Comment', 153 => 'Comment', 296 => 'Comment', 358 => "\xa9cmt", 360 => 'comment', 366 => "\xa9cmt" },
|
1614
1614
|
'compass' => { 376 => 0x4 },
|
1615
1615
|
'compilation' => { 358 => 'cpil' },
|
1616
|
+
'compimageimagespersequence' => { 469 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesNumberOfImagesInSequences'] },
|
1617
|
+
'compimagemaxexposureall' => { 469 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMaxExposureTimesOfAll'] },
|
1618
|
+
'compimagemaxexposureused' => { 469 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMaxExposureTimesOfUsed'] },
|
1619
|
+
'compimageminexposureall' => { 469 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMinExposureTimesOfAll'] },
|
1620
|
+
'compimageminexposureused' => { 469 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesMinExposureTimesOfUsed'] },
|
1621
|
+
'compimagenumsequences' => { 469 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesNumberOfSequences'] },
|
1622
|
+
'compimagesumexposureall' => { 469 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesSumOfExposureTimesOfAll'] },
|
1623
|
+
'compimagesumexposureused' => { 469 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesSumOfExposureTimesOfUsed'] },
|
1624
|
+
'compimagetotalexposureperiod' => { 469 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesTotalExposurePeriod'] },
|
1625
|
+
'compimagevalues' => { 469 => [\'CompositeImageExposureTimes','CompositeImageExposureTimesValues'] },
|
1616
1626
|
'complianceprofile' => { 478 => 'complianceProfile' },
|
1617
1627
|
'componentsconfiguration' => { 116 => 0x9101, 158 => 'Components', 468 => 'ComponentsConfiguration' },
|
1618
1628
|
'componentversion' => { 94 => 0x80c },
|
1619
1629
|
'composer' => { 358 => ["\xa9com","\xa9wrt"], 366 => ["\xa9com","\xa9wrt"], 488 => 'composer' },
|
1620
1630
|
'composerkeywords' => { 366 => "\xa9cok" },
|
1621
|
-
'compositeimage' => { 116 => 0xa460 },
|
1622
|
-
'compositeimagecount' => { 116 => 0xa461 },
|
1623
|
-
'compositeimageexposuretimes' => { 116 => 0xa462 },
|
1631
|
+
'compositeimage' => { 116 => 0xa460, 469 => 'CompositeImage' },
|
1632
|
+
'compositeimagecount' => { 116 => 0xa461, 469 => 'CompositeImageCount' },
|
1633
|
+
'compositeimageexposuretimes' => { 116 => 0xa462, 469 => 'CompositeImageExposureTimes' },
|
1624
1634
|
'composition' => { 452 => 'Composition' },
|
1625
1635
|
'compositionadjust' => { 340 => '0.1' },
|
1626
1636
|
'compositionadjustrotation' => { 340 => 0x7 },
|
@@ -12,7 +12,7 @@ meta information extracted from or written to a file.
|
|
12
12
|
=head1 TAG TABLES
|
13
13
|
|
14
14
|
The tables listed below give the names of all tags recognized by ExifTool.
|
15
|
-
They contain a total of
|
15
|
+
They contain a total of 23351 tags, with 15303 unique tag names.
|
16
16
|
|
17
17
|
B<Tag ID>, B<Index#> or B<Sequence> is given in the first column of each
|
18
18
|
table. A B<Tag ID> is the computer-readable equivalent of a tag name, and
|
@@ -1160,7 +1160,7 @@ When reading, C<struct> tags are extracted only if the Struct (-struct)
|
|
1160
1160
|
option is used. Otherwise the corresponding I<Flattened> tags, indicated by
|
1161
1161
|
an underline (C<_>) after the B<Writable> type, are extracted. When
|
1162
1162
|
copying, by default both structured and flattened tags are available, but
|
1163
|
-
the flattened tags are considered "unsafe" so they
|
1163
|
+
the flattened tags are considered "unsafe" so they aren't copied unless
|
1164
1164
|
specified explicitly. The Struct option may be disabled by setting Struct
|
1165
1165
|
to 0 via the API or with --struct on the command line to copy only flattened
|
1166
1166
|
tags, or enabled by setting Struct to 1 via the API or with -struct on the
|
@@ -2897,6 +2897,19 @@ These tags belong to the ExifTool XMP-exifEX family 1 group.
|
|
2897
2897
|
SerialNumber string
|
2898
2898
|
CameraElevationAngle rational
|
2899
2899
|
OwnerName string
|
2900
|
+
CompositeImage integer
|
2901
|
+
CompositeImageCount integer+
|
2902
|
+
CompositeImageExposureTimes CompImageExp Struct
|
2903
|
+
CompImageMaxExposureAll rational_
|
2904
|
+
CompImageMaxExposureUsed rational_
|
2905
|
+
CompImageMinExposureAll rational_
|
2906
|
+
CompImageMinExposureUsed rational_
|
2907
|
+
CompImageImagesPerSequence integer_
|
2908
|
+
CompImageNumSequences integer_
|
2909
|
+
CompImageSumExposureAll rational_
|
2910
|
+
CompImageSumExposureUsed rational_
|
2911
|
+
CompImageTotalExposurePeriod rational_
|
2912
|
+
CompImageValues rational_+
|
2900
2913
|
Gamma rational
|
2901
2914
|
Humidity rational
|
2902
2915
|
InteropIndex string
|
@@ -2915,6 +2928,21 @@ These tags belong to the ExifTool XMP-exifEX family 1 group.
|
|
2915
2928
|
AmbientTemperature rational
|
2916
2929
|
WaterDepth rational
|
2917
2930
|
|
2931
|
+
=head3 XMP CompImageExp Struct
|
2932
|
+
|
2933
|
+
Field Name Writable
|
2934
|
+
---------- --------
|
2935
|
+
MaxExposureTimesOfAll rational
|
2936
|
+
MaxExposureTimesOfUsed rational
|
2937
|
+
MinExposureTimesOfAll rational
|
2938
|
+
MinExposureTimesOfUsed rational
|
2939
|
+
NumberOfImagesInSequences integer
|
2940
|
+
NumberOfSequences integer
|
2941
|
+
SumOfExposureTimesOfAll rational
|
2942
|
+
SumOfExposureTimesOfUsed rational
|
2943
|
+
TotalExposurePeriod rational
|
2944
|
+
Values rational+
|
2945
|
+
|
2918
2946
|
=head3 XMP ExpressionMedia Tags
|
2919
2947
|
|
2920
2948
|
Microsoft Expression Media namespace tags. These tags are avoided when
|
@@ -522,6 +522,9 @@ sub WriteExif($$$)
|
|
522
522
|
my $name = $$dirInfo{Name};
|
523
523
|
$name = $dirName unless $name and $dirName eq 'MakerNotes' and $name !~ /^MakerNote/;
|
524
524
|
|
525
|
+
# save byte order of existing EXIF
|
526
|
+
$$et{SaveExifByteOrder} = GetByteOrder() if $dirName eq 'IFD0' or $dirName eq 'ExifIFD';
|
527
|
+
|
525
528
|
# set encoding for strings
|
526
529
|
$strEnc = $et->Options('CharsetEXIF') if $$tagTablePtr{GROUPS}{0} eq 'EXIF';
|
527
530
|
|
@@ -699,7 +699,7 @@ sub CloseProperty($$$$)
|
|
699
699
|
if (length $$short[-1]) {
|
700
700
|
if (length $$long[-1]) {
|
701
701
|
# require a new Description if both longhand and shorthand properties
|
702
|
-
$$long[-2] .= ">$pad<$rdfDesc";
|
702
|
+
$$long[-2] .= ">$nl$pad<$rdfDesc";
|
703
703
|
$$short[-1] .= ">$nl";
|
704
704
|
$$long[-1] .= "$pad</$rdfDesc>$nl";
|
705
705
|
} else {
|
@@ -4074,7 +4074,7 @@ sub WriteDirectory($$$;$)
|
|
4074
4074
|
$self->Warn("Can't write EXIF as a block to $$self{FILE_TYPE} file");
|
4075
4075
|
last;
|
4076
4076
|
}
|
4077
|
-
# this can happen if we call WriteDirectory for an EXIF directory without
|
4077
|
+
# this can happen if we call WriteDirectory for an EXIF directory without going
|
4078
4078
|
# through WriteTIFF as the WriteProc (which happens if conditionally replacing
|
4079
4079
|
# the EXIF block and the condition fails), but we never want to do a block write
|
4080
4080
|
# in this case because the EXIF block would end up with two TIFF headers
|
@@ -4798,19 +4798,20 @@ TryLib: for ($lib=$strptimeLib; ; $lib='') {
|
|
4798
4798
|
|
4799
4799
|
#------------------------------------------------------------------------------
|
4800
4800
|
# Set byte order according to our current preferences
|
4801
|
-
# Inputs: 0) ExifTool object ref
|
4801
|
+
# Inputs: 0) ExifTool object ref, 1) default byte order
|
4802
4802
|
# Returns: new byte order ('II' or 'MM') and sets current byte order
|
4803
4803
|
# Notes: takes the first of the following that is valid:
|
4804
4804
|
# 1) ByteOrder option
|
4805
4805
|
# 2) new value for ExifByteOrder
|
4806
|
-
# 3)
|
4807
|
-
# 4)
|
4808
|
-
|
4806
|
+
# 3) default byte order passed to this routine
|
4807
|
+
# 4) makenote byte order from last file read
|
4808
|
+
# 5) big endian
|
4809
|
+
sub SetPreferredByteOrder($;$)
|
4809
4810
|
{
|
4810
|
-
my $self =
|
4811
|
+
my ($self, $default) = @_;
|
4811
4812
|
my $byteOrder = $self->Options('ByteOrder') ||
|
4812
4813
|
$self->GetNewValue('ExifByteOrder') ||
|
4813
|
-
$$self{MAKER_NOTE_BYTE_ORDER} || 'MM';
|
4814
|
+
$default || $$self{MAKER_NOTE_BYTE_ORDER} || 'MM';
|
4814
4815
|
unless (SetByteOrder($byteOrder)) {
|
4815
4816
|
warn "Invalid byte order '${byteOrder}'\n" if $self->Options('Verbose');
|
4816
4817
|
$byteOrder = $$self{MAKER_NOTE_BYTE_ORDER} || 'MM';
|
@@ -49,7 +49,7 @@ use Image::ExifTool::Exif;
|
|
49
49
|
use Image::ExifTool::GPS;
|
50
50
|
require Exporter;
|
51
51
|
|
52
|
-
$VERSION = '3.
|
52
|
+
$VERSION = '3.31';
|
53
53
|
@ISA = qw(Exporter);
|
54
54
|
@EXPORT_OK = qw(EscapeXML UnescapeXML);
|
55
55
|
|
@@ -2118,6 +2118,35 @@ my %sPantryItem = (
|
|
2118
2118
|
WaterDepth => { Writable => 'rational' },
|
2119
2119
|
Acceleration => { Writable => 'rational' },
|
2120
2120
|
CameraElevationAngle=> { Writable => 'rational' },
|
2121
|
+
# new in Exif 2.32 (according to the spec, these should use a different namespace
|
2122
|
+
# URI, but the same namespace prefix... Exactly how is that supposed to work?!!
|
2123
|
+
# -- I'll just stick with the same URI)
|
2124
|
+
CompositeImage => { Writable => 'integer',
|
2125
|
+
PrintConv => {
|
2126
|
+
0 => 'Unknown',
|
2127
|
+
1 => 'Not a Composite Image',
|
2128
|
+
2 => 'General Composite Image',
|
2129
|
+
3 => 'Composite Image Captured While Shooting',
|
2130
|
+
},
|
2131
|
+
},
|
2132
|
+
CompositeImageCount => { List => 'Seq', Writable => 'integer' },
|
2133
|
+
CompositeImageExposureTimes => {
|
2134
|
+
FlatName => 'CompImage',
|
2135
|
+
Struct => {
|
2136
|
+
STRUCT_NAME => 'CompImageExp',
|
2137
|
+
NAMESPACE => 'exifEX',
|
2138
|
+
TotalExposurePeriod => { Writable => 'rational' },
|
2139
|
+
SumOfExposureTimesOfAll => { Writable => 'rational', FlatName => 'SumExposureAll' },
|
2140
|
+
SumOfExposureTimesOfUsed=> { Writable => 'rational', FlatName => 'SumExposureUsed' },
|
2141
|
+
MaxExposureTimesOfAll => { Writable => 'rational', FlatName => 'MaxExposureAll' },
|
2142
|
+
MaxExposureTimesOfUsed => { Writable => 'rational', FlatName => 'MaxExposureUsed' },
|
2143
|
+
MinExposureTimesOfAll => { Writable => 'rational', FlatName => 'MinExposureAll' },
|
2144
|
+
MinExposureTimesOfUsed => { Writable => 'rational', FlatName => 'MinExposureUsed' },
|
2145
|
+
NumberOfSequences => { Writable => 'integer', FlatName => 'NumSequences' },
|
2146
|
+
NumberOfImagesInSequences=>{ Writable => 'integer', FlatName => 'ImagesPerSequence' },
|
2147
|
+
Values => { List => 'Seq', Writable => 'rational' },
|
2148
|
+
},
|
2149
|
+
},
|
2121
2150
|
);
|
2122
2151
|
|
2123
2152
|
# Auxiliary namespace properties (aux) - not fully documented (ref PH)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: exiftool_vendored
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 11.
|
4
|
+
version: 11.89.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew McEachen
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-02-
|
12
|
+
date: 2020-02-26 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: exiftool
|