exiftool_vendored 13.29.0 → 13.30.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.
- checksums.yaml +4 -4
- data/bin/Changes +24 -1
- data/bin/META.json +1 -1
- data/bin/META.yml +1 -1
- data/bin/README +2 -2
- data/bin/config_files/pix4d.config +9 -8
- data/bin/exiftool +7 -4
- data/bin/lib/Image/ExifTool/BuildTagLookup.pm +1 -1
- data/bin/lib/Image/ExifTool/Canon.pm +3 -1
- data/bin/lib/Image/ExifTool/Exif.pm +3 -1
- data/bin/lib/Image/ExifTool/FujiFilm.pm +2 -1
- data/bin/lib/Image/ExifTool/Geolocation.dat +0 -0
- data/bin/lib/Image/ExifTool/LigoGPS.pm +2 -2
- data/bin/lib/Image/ExifTool/MakerNotes.pm +3 -3
- data/bin/lib/Image/ExifTool/Olympus.pm +5 -1
- data/bin/lib/Image/ExifTool/Pentax.pm +51 -11
- data/bin/lib/Image/ExifTool/QuickTime.pm +21 -2
- data/bin/lib/Image/ExifTool/QuickTimeStream.pl +10 -0
- data/bin/lib/Image/ExifTool/Sigma.pm +12 -4
- data/bin/lib/Image/ExifTool/Sony.pm +3 -3
- data/bin/lib/Image/ExifTool/TagLookup.pm +3735 -3729
- data/bin/lib/Image/ExifTool/TagNames.pod +17 -4
- data/bin/lib/Image/ExifTool/Writer.pl +1 -1
- data/bin/lib/Image/ExifTool.pm +6 -5
- data/bin/perl-Image-ExifTool.spec +1 -1
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +2 -2
@@ -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 28450 tags, with 17673 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
|
@@ -20349,6 +20349,7 @@ These tags are used in Pentax/Asahi cameras.
|
|
20349
20349
|
0x0230 FirmwareVersion string
|
20350
20350
|
0x0231 ContrastDetectAFArea int16u[4]
|
20351
20351
|
0x0235 CrossProcessParams undef[10]
|
20352
|
+
0x0238 CAFPointInfo Pentax CAFPointInfo
|
20352
20353
|
0x0239 LensInfoQ Pentax LensInfoQ
|
20353
20354
|
0x023f Model string
|
20354
20355
|
0x0243 PixelShiftInfo Pentax PixelShiftInfo
|
@@ -20873,6 +20874,17 @@ valid for other models.
|
|
20873
20874
|
83 WB_RGGBLevelsUnknown? int16u[4]
|
20874
20875
|
92 WB_RGGBLevelsUserSelected int16u[4]
|
20875
20876
|
|
20877
|
+
=head3 Pentax CAFPointInfo Tags
|
20878
|
+
|
20879
|
+
Contrast-detect AF-point information for the K-01 and later models.
|
20880
|
+
|
20881
|
+
Index1 Tag Name Writable
|
20882
|
+
------ -------- --------
|
20883
|
+
1 NumCAFPoints no
|
20884
|
+
1.1 CAFGridSize no
|
20885
|
+
2 CAFPointsInFocus no
|
20886
|
+
2.1 CAFPointsSelected no
|
20887
|
+
|
20876
20888
|
=head3 Pentax LensInfoQ Tags
|
20877
20889
|
|
20878
20890
|
More lens information stored by the Pentax Q.
|
@@ -20897,9 +20909,9 @@ AF point information written by the K-1.
|
|
20897
20909
|
Index1 Tag Name Writable
|
20898
20910
|
------ -------- --------
|
20899
20911
|
2 NumAFPoints int16u
|
20900
|
-
4 AFPointsInFocus
|
20901
|
-
4.1 AFPointsSelected
|
20902
|
-
4.2 AFPointsSpecial
|
20912
|
+
4 AFPointsInFocus no
|
20913
|
+
4.1 AFPointsSelected no
|
20914
|
+
4.2 AFPointsSpecial no
|
20903
20915
|
|
20904
20916
|
=head3 Pentax TempInfo Tags
|
20905
20917
|
|
@@ -31655,6 +31667,7 @@ the config file.
|
|
31655
31667
|
'RMKN' RicohRMKN EXIF
|
31656
31668
|
'RTHU' PreviewImage no
|
31657
31669
|
'SDLN' PlayMode string
|
31670
|
+
'SIGM' PreviewImage no
|
31658
31671
|
'SNum' SerialNumber string/
|
31659
31672
|
'SelO' PlaySelection int8u
|
31660
31673
|
'TAGS' FujiFilmTags FujiFilm MOV
|
@@ -3410,7 +3410,7 @@ sub InsertTagValues($$;$$$$)
|
|
3410
3410
|
my $msg = $didExpr ? "Advanced formatting expression returned undef for '$g3${var}'" :
|
3411
3411
|
"Tag '$g3${var}' not defined";
|
3412
3412
|
if (ref $opt) {
|
3413
|
-
$
|
3413
|
+
$val = '' if $$self{OPTIONS}{IgnoreMinorErrors};
|
3414
3414
|
} elsif ($opt) {
|
3415
3415
|
no strict 'refs';
|
3416
3416
|
($opt eq 'Silent' or &$opt($self, $msg, 2)) and return $$self{FMT_EXPR} = undef;
|
data/bin/lib/Image/ExifTool.pm
CHANGED
@@ -27,9 +27,9 @@ use vars qw($VERSION $RELEASE @ISA @EXPORT_OK %EXPORT_TAGS $AUTOLOAD @fileTypes
|
|
27
27
|
%noWriteFile %magicNumber @langs $defaultLang %langName %charsetName
|
28
28
|
%mimeType $swapBytes $swapWords $currentByteOrder %unpackStd
|
29
29
|
%jpegMarker %specialTags %fileTypeLookup $testLen $exeDir
|
30
|
-
%static_vars $advFmtSelf);
|
30
|
+
%static_vars $advFmtSelf $configFile @configFiles $noConfig);
|
31
31
|
|
32
|
-
$VERSION = '13.
|
32
|
+
$VERSION = '13.30';
|
33
33
|
$RELEASE = '';
|
34
34
|
@ISA = qw(Exporter);
|
35
35
|
%EXPORT_TAGS = (
|
@@ -10047,8 +10047,9 @@ sub ProcessBinaryData($$$)
|
|
10047
10047
|
#..............................................................................
|
10048
10048
|
# Load .ExifTool_config file from user's home directory
|
10049
10049
|
# (use of noConfig is now deprecated, use configFile = '' instead)
|
10050
|
-
|
10051
|
-
|
10050
|
+
push @configFiles, $configFile if defined $configFile;
|
10051
|
+
until ($noConfig) {
|
10052
|
+
my $config = shift @configFiles;
|
10052
10053
|
my $file;
|
10053
10054
|
if (not defined $config) {
|
10054
10055
|
$config = '.ExifTool_config';
|
@@ -10073,7 +10074,7 @@ until ($Image::ExifTool::noConfig) {
|
|
10073
10074
|
shift @INC;
|
10074
10075
|
# print warning (minus "Compilation failed" part)
|
10075
10076
|
$@ and $_=$@, s/Compilation failed.*//s, warn $_;
|
10076
|
-
last;
|
10077
|
+
last unless @configFiles;
|
10077
10078
|
}
|
10078
10079
|
# read user-defined lenses (may have been defined by script instead of config file)
|
10079
10080
|
if (@Image::ExifTool::UserDefined::Lenses) {
|
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: 13.
|
4
|
+
version: 13.30.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: 2025-
|
12
|
+
date: 2025-05-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: exiftool
|