exiftool-vendored.exe 13.17.0 → 13.25.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.
Files changed (45) hide show
  1. package/bin/README.txt +14 -14
  2. package/bin/exiftool.exe +0 -0
  3. package/bin/exiftool_files/exiftool.pl +117 -46
  4. package/bin/exiftool_files/lib/Image/ExifTool/Apple.pm +12 -2
  5. package/bin/exiftool_files/lib/Image/ExifTool/BuildTagLookup.pm +2 -2
  6. package/bin/exiftool_files/lib/Image/ExifTool/CanonRaw.pm +1 -1
  7. package/bin/exiftool_files/lib/Image/ExifTool/DJI.pm +190 -29
  8. package/bin/exiftool_files/lib/Image/ExifTool/DarwinCore.pm +22 -11
  9. package/bin/exiftool_files/lib/Image/ExifTool/EXE.pm +2 -9
  10. package/bin/exiftool_files/lib/Image/ExifTool/GM.pm +1 -1
  11. package/bin/exiftool_files/lib/Image/ExifTool/GPS.pm +3 -3
  12. package/bin/exiftool_files/lib/Image/ExifTool/Geolocation.dat +0 -0
  13. package/bin/exiftool_files/lib/Image/ExifTool/GoPro.pm +86 -48
  14. package/bin/exiftool_files/lib/Image/ExifTool/ICO.pm +2 -2
  15. package/bin/exiftool_files/lib/Image/ExifTool/JPEG.pm +5 -1
  16. package/bin/exiftool_files/lib/Image/ExifTool/JSON.pm +5 -1
  17. package/bin/exiftool_files/lib/Image/ExifTool/Kodak.pm +3 -2
  18. package/bin/exiftool_files/lib/Image/ExifTool/Nikon.pm +943 -1237
  19. package/bin/exiftool_files/lib/Image/ExifTool/Olympus.pm +2 -1
  20. package/bin/exiftool_files/lib/Image/ExifTool/PCAP.pm +462 -0
  21. package/bin/exiftool_files/lib/Image/ExifTool/PDF.pm +10 -1
  22. package/bin/exiftool_files/lib/Image/ExifTool/PLIST.pm +92 -29
  23. package/bin/exiftool_files/lib/Image/ExifTool/PNG.pm +7 -1
  24. package/bin/exiftool_files/lib/Image/ExifTool/Photoshop.pm +2 -2
  25. package/bin/exiftool_files/lib/Image/ExifTool/Plot.pm +713 -0
  26. package/bin/exiftool_files/lib/Image/ExifTool/Protobuf.pm +24 -11
  27. package/bin/exiftool_files/lib/Image/ExifTool/Qualcomm.pm +78 -1
  28. package/bin/exiftool_files/lib/Image/ExifTool/QuickTime.pm +347 -318
  29. package/bin/exiftool_files/lib/Image/ExifTool/QuickTimeStream.pl +75 -27
  30. package/bin/exiftool_files/lib/Image/ExifTool/Sony.pm +33 -14
  31. package/bin/exiftool_files/lib/Image/ExifTool/TagLookup.pm +5056 -4967
  32. package/bin/exiftool_files/lib/Image/ExifTool/TagNames.pod +443 -334
  33. package/bin/exiftool_files/lib/Image/ExifTool/Trailer.pm +3 -3
  34. package/bin/exiftool_files/lib/Image/ExifTool/Validate.pm +4 -4
  35. package/bin/exiftool_files/lib/Image/ExifTool/WriteCanonRaw.pl +1 -1
  36. package/bin/exiftool_files/lib/Image/ExifTool/WriteExif.pl +9 -4
  37. package/bin/exiftool_files/lib/Image/ExifTool/WritePDF.pl +1 -1
  38. package/bin/exiftool_files/lib/Image/ExifTool/WriteQuickTime.pl +58 -5
  39. package/bin/exiftool_files/lib/Image/ExifTool/Writer.pl +14 -13
  40. package/bin/exiftool_files/lib/Image/ExifTool/XMP.pm +34 -6
  41. package/bin/exiftool_files/lib/Image/ExifTool/XMP2.pl +2 -0
  42. package/bin/exiftool_files/lib/Image/ExifTool.pm +63 -29
  43. package/bin/exiftool_files/lib/Image/ExifTool.pod +83 -86
  44. package/bin/exiftool_files/windows_exiftool.txt +95 -71
  45. package/package.json +4 -4
@@ -36,7 +36,7 @@ use strict;
36
36
  use vars qw($VERSION $AUTOLOAD %stdCase);
37
37
  use Image::ExifTool qw(:DataAccess :Utils);
38
38
 
39
- $VERSION = '1.70';
39
+ $VERSION = '1.71';
40
40
 
41
41
  sub ProcessPNG_tEXt($$$);
42
42
  sub ProcessPNG_iTXt($$$);
@@ -371,6 +371,12 @@ my %noLeapFrog = ( SAVE => 1, SEEK => 1, IHDR => 1, JHDR => 1, IEND => 1, MEND =
371
371
  IgnoreProp => { meta => 1 }, # ignore 'meta' container
372
372
  },
373
373
  },
374
+ gdAT => {
375
+ Name => 'GainMapImage',
376
+ Groups => { 2 => 'Preview' },
377
+ Binary => 1,
378
+ },
379
+ # gmAP - https://github.com/w3c/png/issues/380 does't correspond to my only sample
374
380
  seAl => {
375
381
  Name => 'SEAL',
376
382
  SubDirectory => { TagTable => 'Image::ExifTool::XMP::SEAL' },
@@ -1165,7 +1165,7 @@ sub ProcessPSD($$)
1165
1165
  $len = Set32u(length $data);
1166
1166
  Write($outfile, $len, $data) or $err = 1;
1167
1167
  # look for trailer and edit if necessary
1168
- my $trailInfo = Image::ExifTool::IdentifyTrailer($raf);
1168
+ my $trailInfo = $et->IdentifyTrailer($raf);
1169
1169
  if ($trailInfo) {
1170
1170
  my $tbuf = '';
1171
1171
  $$trailInfo{OutFile} = \$tbuf; # rewrite trailer(s)
@@ -1223,7 +1223,7 @@ sub ProcessPSD($$)
1223
1223
  }
1224
1224
  $$et{INDENT} = $oldIndent;
1225
1225
  # process trailers if they exist
1226
- my $trailInfo = Image::ExifTool::IdentifyTrailer($raf);
1226
+ my $trailInfo = $et->IdentifyTrailer($raf);
1227
1227
  $et->ProcessTrailers($trailInfo) if $trailInfo;
1228
1228
  }
1229
1229
  return $rtnVal;