exiftool_vendored 12.75.0 → 12.76.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/Changes +10 -3
- 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/HtmlDump.pm +5 -3
- data/bin/lib/Image/ExifTool/WriteExif.pl +1 -1
- data/bin/lib/Image/ExifTool.pm +1 -1
- data/bin/perl-Image-ExifTool.spec +1 -1
- data/lib/exiftool_vendored/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 67bedcfd11781809c2cfd90e145b49a44247c647b1da224c5ba1109dd53d8030
|
4
|
+
data.tar.gz: dea0163e74b01c61aff7679a1cec47e875a4200be6be146db1f496453bb73877
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be5e71ec63d7c5e8f4f5072507b84e02b14ebafb5aff86b32849a3f43d4cc3c459eae421bb244ad083ea24448a8d7748dc56bdd9f3a125f5c53aa62bea635f23
|
7
|
+
data.tar.gz: 0fd3c38b2e6894e342161a31f07a3cf416caa74ada8df58a4bee908d93e217f33c5d5778aa3e2d2855a4a82fe3f362143fab26d902a5a007faa23d2d4c5d64f1
|
data/bin/Changes
CHANGED
@@ -4,14 +4,21 @@ ExifTool Version History
|
|
4
4
|
|
5
5
|
RSS feed: https://exiftool.org/rss.xml
|
6
6
|
|
7
|
-
Note: The most recent production release is Version 12.
|
7
|
+
Note: The most recent production release is Version 12.76. (Other versions are
|
8
8
|
considered development releases, and are not uploaded to MetaCPAN.)
|
9
9
|
|
10
|
+
Jan. 31, 2024 - Version 12.76 (production release)
|
11
|
+
|
12
|
+
- Properly implement patch of 12.45 to avoid duplicating raw data when writing
|
13
|
+
Sony ARW images where the raw data is double-referenced as both strips and
|
14
|
+
tiles
|
15
|
+
- Improved handling of bad offsets in HtmlDump output
|
16
|
+
|
10
17
|
Jan. 30, 2024 - Version 12.75 (production release)
|
11
18
|
|
12
19
|
- CORRUPTION WARNING: Fixed bug introduced in 12.45 which could result in
|
13
|
-
|
14
|
-
|
20
|
+
corrupted Sony ARW images from some newer models when rewriting lossless
|
21
|
+
compressed ARW images which were previously edited by 12.44 or earlier
|
15
22
|
- Added ability to read C2PA JUMBF metadata from PDF and SVG files
|
16
23
|
- Added ability to extract JUMBF metadata as a block
|
17
24
|
- Added read support for C2PA (JUMBF-format) files
|
data/bin/META.json
CHANGED
data/bin/META.yml
CHANGED
data/bin/README
CHANGED
@@ -109,8 +109,8 @@ your home directory, then you would type the following commands in a
|
|
109
109
|
terminal window to extract and run ExifTool:
|
110
110
|
|
111
111
|
cd ~/Desktop
|
112
|
-
gzip -dc Image-ExifTool-12.
|
113
|
-
cd Image-ExifTool-12.
|
112
|
+
gzip -dc Image-ExifTool-12.76.tar.gz | tar -xf -
|
113
|
+
cd Image-ExifTool-12.76
|
114
114
|
./exiftool t/images/ExifTool.jpg
|
115
115
|
|
116
116
|
Note: These commands extract meta information from one of the test images.
|
data/bin/exiftool
CHANGED
@@ -11,7 +11,7 @@ use strict;
|
|
11
11
|
use warnings;
|
12
12
|
require 5.004;
|
13
13
|
|
14
|
-
my $version = '12.
|
14
|
+
my $version = '12.76';
|
15
15
|
|
16
16
|
# add our 'lib' directory to the include list BEFORE 'use Image::ExifTool'
|
17
17
|
my $exePath;
|
@@ -5605,7 +5605,7 @@ with this command:
|
|
5605
5605
|
|
5606
5606
|
produces output like this:
|
5607
5607
|
|
5608
|
-
-- Generated by ExifTool 12.
|
5608
|
+
-- Generated by ExifTool 12.76 --
|
5609
5609
|
File: a.jpg - 2003:10:31 15:44:19
|
5610
5610
|
(f/5.6, 1/60s, ISO 100)
|
5611
5611
|
File: b.jpg - 2006:05:23 11:57:38
|
@@ -13,7 +13,7 @@ use vars qw($VERSION);
|
|
13
13
|
use Image::ExifTool; # only for FinishTiffDump()
|
14
14
|
use Image::ExifTool::HTML qw(EscapeHTML);
|
15
15
|
|
16
|
-
$VERSION = '1.
|
16
|
+
$VERSION = '1.41';
|
17
17
|
|
18
18
|
sub DumpTable($$$;$$$$$$);
|
19
19
|
sub Open($$$;@);
|
@@ -314,6 +314,8 @@ sub Print($$;$$$$$)
|
|
314
314
|
$title = 'HtmlDump' unless $title;
|
315
315
|
$level or $level = 0;
|
316
316
|
my $tell = $raf->Tell();
|
317
|
+
$raf->Seek(0,2) or $$self{ERROR} = 'Seek error', return -1;
|
318
|
+
my $fileLen = $raf->Tell();
|
317
319
|
my $pos = 0;
|
318
320
|
my $dataEnd = $dataPos + ($dataPt ? length($$dataPt) : 0);
|
319
321
|
# initialize member variables
|
@@ -352,6 +354,7 @@ sub Print($$;$$$$$)
|
|
352
354
|
} else {
|
353
355
|
last;
|
354
356
|
}
|
357
|
+
$start = $fileLen if $start > $fileLen; # handle case of bad start offset
|
355
358
|
my $len = $start - $pos;
|
356
359
|
if ($len > 0 and not $wasUnused) {
|
357
360
|
# we have a unused bytes before this data block
|
@@ -432,8 +435,7 @@ sub Print($$;$$$$$)
|
|
432
435
|
{
|
433
436
|
$err = $msg;
|
434
437
|
# reset $len to the actual length of available data
|
435
|
-
$
|
436
|
-
$len = $raf->Tell() - $start;
|
438
|
+
$len = $fileLen - $start;
|
437
439
|
$tip .= "<br>Error: Only $len bytes available!" if $tip;
|
438
440
|
next;
|
439
441
|
}
|
@@ -2278,7 +2278,7 @@ NoOverwrite: next if $isNew > 0;
|
|
2278
2278
|
$$offsetInfo{0x111}[2]==1) # (must be a single strip or the tile offsets could get out of sync)
|
2279
2279
|
{
|
2280
2280
|
# check the start offsets to see if they are the same
|
2281
|
-
if ($$offsetInfo{0x111}[3] == $$offsetInfo{0x144}[3]) {
|
2281
|
+
if ($$offsetInfo{0x111}[3][0] == $$offsetInfo{0x144}[3][0]) {
|
2282
2282
|
# some Sony ARW images contain double-referenced raw data stored as both strips
|
2283
2283
|
# and tiles. Copy the data using only the strip tags, but store the TileOffets
|
2284
2284
|
# information for updating later (see PanasonicRaw:PatchRawDataOffset for a
|
data/bin/lib/Image/ExifTool.pm
CHANGED
@@ -29,7 +29,7 @@ use vars qw($VERSION $RELEASE @ISA @EXPORT_OK %EXPORT_TAGS $AUTOLOAD @fileTypes
|
|
29
29
|
%jpegMarker %specialTags %fileTypeLookup $testLen $exeDir
|
30
30
|
%static_vars);
|
31
31
|
|
32
|
-
$VERSION = '12.
|
32
|
+
$VERSION = '12.76';
|
33
33
|
$RELEASE = '';
|
34
34
|
@ISA = qw(Exporter);
|
35
35
|
%EXPORT_TAGS = (
|