exiftool_vendored 12.63.0 → 12.64.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -16,7 +16,7 @@ use strict;
16
16
  use vars qw($VERSION);
17
17
  use Image::ExifTool qw(:DataAccess :Utils);
18
18
 
19
- $VERSION = '1.35';
19
+ $VERSION = '1.36';
20
20
 
21
21
  sub ProcessJpeg2000Box($$$);
22
22
  sub ProcessJUMD($$$);
@@ -132,7 +132,7 @@ my %j2cMarker = (
132
132
  images, but not all of these are extracted. Note that ExifTool currently
133
133
  writes only EXIF, IPTC and XMP tags in Jpeg2000 images, and EXIF and XMP in
134
134
  JXL images. ExifTool will read/write Brotli-compressed EXIF and XMP in JXL
135
- images, but the API Compress option must be set to create new EXIF and XMP
135
+ images, but the API L<Compress|../ExifTool.html#Compress> option must be set to create new EXIF and XMP
136
136
  in compressed format.
137
137
  },
138
138
  #
@@ -1429,7 +1429,8 @@ sub ProcessJXLCodestream($$)
1429
1429
 
1430
1430
  return 0 unless $$dataPt =~ /^(\0\0\0\0)?\xff\x0a/; # validate codestream
1431
1431
  # ignore if already extracted (ie. subsequent jxlp boxes)
1432
- return 0 if $$et{VALUE}{ImageWidth};
1432
+ return 0 if $$et{ProcessedJXLCodestream};
1433
+ $$et{ProcessedJXLCodestream} = 1;
1433
1434
  # work with first 64 bytes of codestream data
1434
1435
  # (and add padding if necessary to avoid unpacking past end of data)
1435
1436
  my $dat;