line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
2
|
|
|
|
|
|
|
# File: WriteExif.pl |
3
|
|
|
|
|
|
|
# |
4
|
|
|
|
|
|
|
# Description: Write EXIF meta information |
5
|
|
|
|
|
|
|
# |
6
|
|
|
|
|
|
|
# Revisions: 12/13/2004 - P. Harvey Created |
7
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
package Image::ExifTool::Exif; |
10
|
|
|
|
|
|
|
|
11
|
40
|
|
|
40
|
|
276
|
use strict; |
|
40
|
|
|
|
|
80
|
|
|
40
|
|
|
|
|
1508
|
|
12
|
40
|
|
|
|
|
2719
|
use vars qw($VERSION $AUTOLOAD @formatSize @formatName %formatNumber |
13
|
40
|
|
|
40
|
|
228
|
%compression %photometricInterpretation %orientation); |
|
40
|
|
|
|
|
85
|
|
14
|
|
|
|
|
|
|
|
15
|
40
|
|
|
40
|
|
234
|
use Image::ExifTool::Fixup; |
|
40
|
|
|
|
|
85
|
|
|
40
|
|
|
|
|
622157
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
# some information may be stored in different IFD's with the same meaning. |
18
|
|
|
|
|
|
|
# Use this lookup to decide when we should delete information that is stored |
19
|
|
|
|
|
|
|
# in another IFD when we write it to the preferred IFD. |
20
|
|
|
|
|
|
|
my %crossDelete = ( |
21
|
|
|
|
|
|
|
ExifIFD => 'IFD0', |
22
|
|
|
|
|
|
|
IFD0 => 'ExifIFD', |
23
|
|
|
|
|
|
|
); |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
# mandatory tag default values |
26
|
|
|
|
|
|
|
my %mandatory = ( |
27
|
|
|
|
|
|
|
IFD0 => { |
28
|
|
|
|
|
|
|
0x011a => 72, # XResolution |
29
|
|
|
|
|
|
|
0x011b => 72, # YResolution |
30
|
|
|
|
|
|
|
0x0128 => 2, # ResolutionUnit (inches) |
31
|
|
|
|
|
|
|
0x0213 => 1, # YCbCrPositioning (centered) |
32
|
|
|
|
|
|
|
# 0x8769 => ????, # ExifOffset |
33
|
|
|
|
|
|
|
}, |
34
|
|
|
|
|
|
|
IFD1 => { |
35
|
|
|
|
|
|
|
0x0103 => 6, # Compression (JPEG) |
36
|
|
|
|
|
|
|
0x011a => 72, # XResolution |
37
|
|
|
|
|
|
|
0x011b => 72, # YResolution |
38
|
|
|
|
|
|
|
0x0128 => 2, # ResolutionUnit (inches) |
39
|
|
|
|
|
|
|
}, |
40
|
|
|
|
|
|
|
ExifIFD => { |
41
|
|
|
|
|
|
|
0x9000 => '0232', # ExifVersion |
42
|
|
|
|
|
|
|
0x9101 => "1 2 3 0",# ComponentsConfiguration |
43
|
|
|
|
|
|
|
0xa000 => '0100', # FlashpixVersion |
44
|
|
|
|
|
|
|
0xa001 => 0xffff, # ColorSpace (uncalibrated) |
45
|
|
|
|
|
|
|
# 0xa002 => ????, # ExifImageWidth |
46
|
|
|
|
|
|
|
# 0xa003 => ????, # ExifImageHeight |
47
|
|
|
|
|
|
|
}, |
48
|
|
|
|
|
|
|
GPS => { |
49
|
|
|
|
|
|
|
0x0000 => '2 3 0 0',# GPSVersionID |
50
|
|
|
|
|
|
|
}, |
51
|
|
|
|
|
|
|
InteropIFD => { |
52
|
|
|
|
|
|
|
0x0002 => '0100', # InteropVersion |
53
|
|
|
|
|
|
|
}, |
54
|
|
|
|
|
|
|
); |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
57
|
|
|
|
|
|
|
# Inverse print conversion for LensInfo |
58
|
|
|
|
|
|
|
# Inputs: 0) lens info string |
59
|
|
|
|
|
|
|
# Returns: PrintConvInv of string |
60
|
|
|
|
|
|
|
sub ConvertLensInfo($) |
61
|
|
|
|
|
|
|
{ |
62
|
7
|
|
|
7
|
0
|
22
|
my $val = shift; |
63
|
7
|
|
|
|
|
41
|
my @a = GetLensInfo($val, 1); # (allow unknown "?" values) |
64
|
7
|
100
|
|
|
|
42
|
return @a ? join(' ', @a) : $val; |
65
|
|
|
|
|
|
|
} |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
68
|
|
|
|
|
|
|
# Get binary CFA Pattern from a text string |
69
|
|
|
|
|
|
|
# Inputs: Print-converted CFA pattern (eg. '[Blue,Green][Green,Red]') |
70
|
|
|
|
|
|
|
# Returns: CFA pattern as a string of numbers |
71
|
|
|
|
|
|
|
sub GetCFAPattern($) |
72
|
|
|
|
|
|
|
{ |
73
|
1
|
|
|
1
|
0
|
3
|
my $val = shift; |
74
|
1
|
|
|
|
|
7
|
my @rows = split /\]\s*\[/, $val; |
75
|
1
|
50
|
|
|
|
4
|
@rows or warn("Rows not properly bracketed by '[]'\n"), return undef; |
76
|
1
|
|
|
|
|
4
|
my @cols = split /,/, $rows[0]; |
77
|
1
|
50
|
|
|
|
5
|
@cols or warn("Colors not separated by ','\n"), return undef; |
78
|
1
|
|
|
|
|
3
|
my $ny = @cols; |
79
|
1
|
|
|
|
|
2
|
my @a = (scalar(@rows), scalar(@cols)); |
80
|
1
|
|
|
|
|
10
|
my %cfaLookup = (red=>0, green=>1, blue=>2, cyan=>3, magenta=>4, yellow=>5, white=>6); |
81
|
1
|
|
|
|
|
3
|
my $row; |
82
|
1
|
|
|
|
|
3
|
foreach $row (@rows) { |
83
|
2
|
|
|
|
|
6
|
@cols = split /,/, $row; |
84
|
2
|
50
|
|
|
|
6
|
@cols == $ny or warn("Inconsistent number of colors in each row\n"), return undef; |
85
|
2
|
|
|
|
|
4
|
foreach (@cols) { |
86
|
4
|
|
|
|
|
7
|
tr/ \]\[//d; # remove remaining brackets and any spaces |
87
|
4
|
|
|
|
|
8
|
my $c = $cfaLookup{lc($_)}; |
88
|
4
|
50
|
|
|
|
8
|
defined $c or warn("Unknown color '${_}'\n"), return undef; |
89
|
4
|
|
|
|
|
6
|
push @a, $c; |
90
|
|
|
|
|
|
|
} |
91
|
|
|
|
|
|
|
} |
92
|
1
|
|
|
|
|
11
|
return "@a"; |
93
|
|
|
|
|
|
|
} |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
96
|
|
|
|
|
|
|
# validate raw values for writing |
97
|
|
|
|
|
|
|
# Inputs: 0) ExifTool ref, 1) tagInfo hash ref, 2) raw value ref |
98
|
|
|
|
|
|
|
# Returns: error string or undef (and possibly changes value) on success |
99
|
|
|
|
|
|
|
sub CheckExif($$$) |
100
|
|
|
|
|
|
|
{ |
101
|
6177
|
|
|
6177
|
0
|
10799
|
my ($et, $tagInfo, $valPtr) = @_; |
102
|
6177
|
|
66
|
|
|
22334
|
my $format = $$tagInfo{Format} || $$tagInfo{Writable} || $$tagInfo{Table}{WRITABLE}; |
103
|
6177
|
100
|
66
|
|
|
18434
|
if (not $format or $format eq '1') { |
104
|
123
|
50
|
|
|
|
396
|
if ($$tagInfo{Groups}{0} eq 'MakerNotes') { |
105
|
123
|
|
|
|
|
346
|
return undef; # OK to have no format for makernotes |
106
|
|
|
|
|
|
|
} else { |
107
|
0
|
|
|
|
|
0
|
return 'No writable format'; |
108
|
|
|
|
|
|
|
} |
109
|
|
|
|
|
|
|
} |
110
|
6054
|
|
|
|
|
19673
|
return Image::ExifTool::CheckValue($valPtr, $format, $$tagInfo{Count}); |
111
|
|
|
|
|
|
|
} |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
114
|
|
|
|
|
|
|
# encode exif ASCII/Unicode text from UTF8 or Latin |
115
|
|
|
|
|
|
|
# Inputs: 0) ExifTool ref, 1) text string |
116
|
|
|
|
|
|
|
# Returns: encoded string |
117
|
|
|
|
|
|
|
# Note: MUST be called Raw conversion time so the EXIF byte order is known! |
118
|
|
|
|
|
|
|
sub EncodeExifText($$) |
119
|
|
|
|
|
|
|
{ |
120
|
11
|
|
|
11
|
0
|
42
|
my ($et, $val) = @_; |
121
|
|
|
|
|
|
|
# does the string contain special characters? |
122
|
11
|
50
|
|
|
|
52
|
if ($val =~ /[\x80-\xff]/) { |
123
|
0
|
|
|
|
|
0
|
my $order = $et->GetNewValue('ExifUnicodeByteOrder'); |
124
|
0
|
|
|
|
|
0
|
return "UNICODE\0" . $et->Encode($val,'UTF16',$order); |
125
|
|
|
|
|
|
|
} else { |
126
|
11
|
|
|
|
|
99
|
return "ASCII\0\0\0$val"; |
127
|
|
|
|
|
|
|
} |
128
|
|
|
|
|
|
|
} |
129
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
131
|
|
|
|
|
|
|
# rebuild maker notes to properly contain all value data |
132
|
|
|
|
|
|
|
# (some manufacturers put value data outside maker notes!!) |
133
|
|
|
|
|
|
|
# Inputs: 0) ExifTool object ref, 1) dirInfo ref, 2) tag table ref |
134
|
|
|
|
|
|
|
# Returns: new maker note data (and creates MAKER_NOTE_FIXUP), or undef on error |
135
|
|
|
|
|
|
|
sub RebuildMakerNotes($$$) |
136
|
|
|
|
|
|
|
{ |
137
|
20
|
|
|
20
|
0
|
66
|
my ($et, $dirInfo, $tagTablePtr) = @_; |
138
|
20
|
|
|
|
|
57
|
my $dirStart = $$dirInfo{DirStart}; |
139
|
20
|
|
|
|
|
51
|
my $dirLen = $$dirInfo{DirLen}; |
140
|
20
|
|
|
|
|
60
|
my $dataPt = $$dirInfo{DataPt}; |
141
|
20
|
|
100
|
|
|
113
|
my $dataPos = $$dirInfo{DataPos} || 0; |
142
|
20
|
|
|
|
|
45
|
my $rtnValue; |
143
|
20
|
|
|
|
|
133
|
my %subdirInfo = %$dirInfo; |
144
|
|
|
|
|
|
|
|
145
|
20
|
|
|
|
|
57
|
delete $$et{MAKER_NOTE_FIXUP}; |
146
|
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
# don't need to rebuild text, BinaryData or PreviewImage maker notes |
148
|
20
|
|
|
|
|
52
|
my $tagInfo = $$dirInfo{TagInfo}; |
149
|
20
|
|
|
|
|
47
|
my $subdir = $$tagInfo{SubDirectory}; |
150
|
20
|
|
100
|
|
|
127
|
my $proc = $$subdir{ProcessProc} || $$tagTablePtr{PROCESS_PROC} || \&ProcessExif; |
151
|
20
|
0
|
66
|
|
|
343
|
if (($proc ne \&ProcessExif and $$tagInfo{Name} =~ /Text/) or |
|
|
|
33
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
33
|
|
|
|
|
152
|
|
|
|
|
|
|
$proc eq \&Image::ExifTool::ProcessBinaryData or |
153
|
|
|
|
|
|
|
($$tagInfo{PossiblePreview} and $dirLen > 6 and |
154
|
|
|
|
|
|
|
substr($$dataPt, $dirStart, 3) eq "\xff\xd8\xff")) |
155
|
|
|
|
|
|
|
{ |
156
|
0
|
|
|
|
|
0
|
return substr($$dataPt, $dirStart, $dirLen); |
157
|
|
|
|
|
|
|
} |
158
|
20
|
|
|
|
|
85
|
my $saveOrder = GetByteOrder(); |
159
|
20
|
|
|
|
|
105
|
my $loc = Image::ExifTool::MakerNotes::LocateIFD($et,\%subdirInfo); |
160
|
20
|
50
|
|
|
|
75
|
if (defined $loc) { |
161
|
20
|
|
|
|
|
202
|
my $makerFixup = $subdirInfo{Fixup} = new Image::ExifTool::Fixup; |
162
|
|
|
|
|
|
|
# create new exiftool object to rewrite the directory without changing it |
163
|
20
|
|
|
|
|
113
|
my $newTool = new Image::ExifTool; |
164
|
|
|
|
|
|
|
$newTool->Options( |
165
|
|
|
|
|
|
|
IgnoreMinorErrors => $$et{OPTIONS}{IgnoreMinorErrors}, |
166
|
|
|
|
|
|
|
FixBase => $$et{OPTIONS}{FixBase}, |
167
|
20
|
|
|
|
|
131
|
); |
168
|
20
|
|
|
|
|
91
|
$newTool->Init(); # must do this before calling WriteDirectory()! |
169
|
|
|
|
|
|
|
# don't copy over preview image |
170
|
20
|
|
|
|
|
126
|
$newTool->SetNewValue(PreviewImage => ''); |
171
|
|
|
|
|
|
|
# copy all transient members over in case they are used for writing |
172
|
|
|
|
|
|
|
# (Make, Model, etc) |
173
|
20
|
|
|
|
|
642
|
foreach (grep /[a-z]/, keys %$et) { |
174
|
209
|
|
|
|
|
412
|
$$newTool{$_} = $$et{$_}; |
175
|
|
|
|
|
|
|
} |
176
|
|
|
|
|
|
|
# fix base offsets if specified |
177
|
20
|
|
|
|
|
136
|
$newTool->Options(FixBase => $et->Options('FixBase')); |
178
|
|
|
|
|
|
|
# set GENERATE_PREVIEW_INFO flag so PREVIEW_INFO will be generated |
179
|
20
|
|
|
|
|
66
|
$$newTool{GENERATE_PREVIEW_INFO} = 1; |
180
|
|
|
|
|
|
|
# drop any large tags |
181
|
20
|
|
|
|
|
60
|
$$newTool{DropTags} = 1; |
182
|
|
|
|
|
|
|
# initialize other necessary data members |
183
|
20
|
|
|
|
|
70
|
$$newTool{FILE_TYPE} = $$et{FILE_TYPE}; |
184
|
20
|
|
|
|
|
67
|
$$newTool{TIFF_TYPE} = $$et{TIFF_TYPE}; |
185
|
|
|
|
|
|
|
# rewrite maker notes |
186
|
20
|
|
|
|
|
145
|
$rtnValue = $newTool->WriteDirectory(\%subdirInfo, $tagTablePtr); |
187
|
20
|
50
|
33
|
|
|
169
|
if (defined $rtnValue and length $rtnValue) { |
188
|
|
|
|
|
|
|
# add the dummy/empty preview image if necessary |
189
|
20
|
100
|
|
|
|
92
|
if ($$newTool{PREVIEW_INFO}) { |
190
|
2
|
|
|
|
|
16
|
$makerFixup->SetMarkerPointers(\$rtnValue, 'PreviewImage', length($rtnValue)); |
191
|
2
|
|
|
|
|
11
|
$rtnValue .= $$newTool{PREVIEW_INFO}{Data}; |
192
|
2
|
|
|
|
|
10
|
delete $$newTool{PREVIEW_INFO}; |
193
|
|
|
|
|
|
|
} |
194
|
|
|
|
|
|
|
# add makernote header |
195
|
20
|
100
|
|
|
|
87
|
if ($loc) { |
196
|
8
|
|
|
|
|
33
|
my $hdr = substr($$dataPt, $dirStart, $loc); |
197
|
|
|
|
|
|
|
# special case: convert Pentax/Samsung DNG maker notes to JPEG style |
198
|
|
|
|
|
|
|
# (in JPEG, Pentax makernotes are absolute and start with "AOC\0" for some |
199
|
|
|
|
|
|
|
# models, but in DNG images they are stored in tag 0xc634 of IFD0 and |
200
|
|
|
|
|
|
|
# start with either "PENTAX \0" or "SAMSUNG\0") |
201
|
8
|
50
|
33
|
|
|
51
|
if ($$dirInfo{Parent} eq 'IFD0' and $hdr =~ /^(PENTAX |SAMSUNG)\0/) { |
202
|
|
|
|
|
|
|
# convert to JPEG-style AOC maker notes if used by this model |
203
|
|
|
|
|
|
|
# (Note: this expression also appears in Exif.pm) |
204
|
0
|
0
|
|
|
|
0
|
if ($$et{Model} =~ /\b(K(-[57mrx]|(10|20|100|110|200)D|2000)|GX(10|20))\b/) { |
205
|
0
|
|
|
|
|
0
|
$hdr =~ s/^(PENTAX |SAMSUNG)\0/AOC\0/; |
206
|
|
|
|
|
|
|
# save fixup because AOC maker notes have absolute offsets |
207
|
0
|
|
|
|
|
0
|
$$et{MAKER_NOTE_FIXUP} = $makerFixup; |
208
|
|
|
|
|
|
|
} |
209
|
|
|
|
|
|
|
} |
210
|
8
|
|
|
|
|
47
|
$rtnValue = $hdr . $rtnValue; |
211
|
|
|
|
|
|
|
# adjust fixup for shift in start position |
212
|
8
|
|
|
|
|
25
|
$$makerFixup{Start} += length $hdr; |
213
|
|
|
|
|
|
|
} |
214
|
|
|
|
|
|
|
# shift offsets according to original position of maker notes, |
215
|
|
|
|
|
|
|
# and relative to the makernotes Base |
216
|
|
|
|
|
|
|
$$makerFixup{Shift} += $dataPos + $dirStart + |
217
|
20
|
|
|
|
|
87
|
$$dirInfo{Base} - $subdirInfo{Base}; |
218
|
|
|
|
|
|
|
# repair incorrect offsets if offsets were fixed |
219
|
20
|
|
50
|
|
|
105
|
$$makerFixup{Shift} += $subdirInfo{FixedBy} || 0; |
220
|
|
|
|
|
|
|
# fix up pointers to the specified offset |
221
|
20
|
|
|
|
|
93
|
$makerFixup->ApplyFixup(\$rtnValue); |
222
|
|
|
|
|
|
|
# save fixup information unless offsets were relative |
223
|
20
|
100
|
|
|
|
141
|
unless ($subdirInfo{Relative}) { |
224
|
|
|
|
|
|
|
# set shift so offsets are all relative to start of maker notes |
225
|
17
|
|
|
|
|
50
|
$$makerFixup{Shift} -= $dataPos + $dirStart; |
226
|
17
|
|
|
|
|
290
|
$$et{MAKER_NOTE_FIXUP} = $makerFixup; # save fixup for later |
227
|
|
|
|
|
|
|
} |
228
|
|
|
|
|
|
|
} |
229
|
|
|
|
|
|
|
} |
230
|
20
|
|
|
|
|
104
|
SetByteOrder($saveOrder); |
231
|
|
|
|
|
|
|
|
232
|
20
|
|
|
|
|
200
|
return $rtnValue; |
233
|
|
|
|
|
|
|
} |
234
|
|
|
|
|
|
|
|
235
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
236
|
|
|
|
|
|
|
# Sort IFD directory entries |
237
|
|
|
|
|
|
|
# Inputs: 0) data reference, 1) directory start, 2) number of entries, |
238
|
|
|
|
|
|
|
# 3) flag to treat 0 as a valid tag ID (as opposed to an empty IFD entry) |
239
|
|
|
|
|
|
|
sub SortIFD($$$;$) |
240
|
|
|
|
|
|
|
{ |
241
|
0
|
|
|
0
|
0
|
0
|
my ($dataPt, $dirStart, $numEntries, $allowZero) = @_; |
242
|
0
|
|
|
|
|
0
|
my ($index, %entries); |
243
|
|
|
|
|
|
|
# split the directory into separate entries |
244
|
0
|
|
|
|
|
0
|
for ($index=0; $index<$numEntries; ++$index) { |
245
|
0
|
|
|
|
|
0
|
my $entry = $dirStart + 2 + 12 * $index; |
246
|
0
|
|
|
|
|
0
|
my $tagID = Get16u($dataPt, $entry); |
247
|
0
|
|
|
|
|
0
|
my $entryData = substr($$dataPt, $entry, 12); |
248
|
|
|
|
|
|
|
# silly software can pad directories with zero entries -- put these at the end |
249
|
0
|
0
|
0
|
|
|
0
|
$tagID = 0x10000 unless $tagID or $index == 0 or $allowZero; |
|
|
|
0
|
|
|
|
|
250
|
|
|
|
|
|
|
# add new entry (allow for duplicate tag ID's, which shouldn't normally happen) |
251
|
0
|
0
|
|
|
|
0
|
if ($entries{$tagID}) { |
252
|
0
|
|
|
|
|
0
|
$entries{$tagID} .= $entryData; |
253
|
|
|
|
|
|
|
} else { |
254
|
0
|
|
|
|
|
0
|
$entries{$tagID} = $entryData; |
255
|
|
|
|
|
|
|
} |
256
|
|
|
|
|
|
|
} |
257
|
|
|
|
|
|
|
# sort the directory entries |
258
|
0
|
|
|
|
|
0
|
my @sortedTags = sort { $a <=> $b } keys %entries; |
|
0
|
|
|
|
|
0
|
|
259
|
|
|
|
|
|
|
# generate the sorted IFD |
260
|
0
|
|
|
|
|
0
|
my $newDir = ''; |
261
|
0
|
|
|
|
|
0
|
foreach (@sortedTags) { |
262
|
0
|
|
|
|
|
0
|
$newDir .= $entries{$_}; |
263
|
|
|
|
|
|
|
} |
264
|
|
|
|
|
|
|
# replace original directory with new, sorted one |
265
|
0
|
|
|
|
|
0
|
substr($$dataPt, $dirStart + 2, 12 * $numEntries) = $newDir; |
266
|
|
|
|
|
|
|
} |
267
|
|
|
|
|
|
|
|
268
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
269
|
|
|
|
|
|
|
# Validate IFD entries (strict validation to test possible chained IFD's) |
270
|
|
|
|
|
|
|
# Inputs: 0) dirInfo ref (must have RAF set), 1) optional DirStart |
271
|
|
|
|
|
|
|
# Returns: true if IFD looks OK |
272
|
|
|
|
|
|
|
sub ValidateIFD($;$) |
273
|
|
|
|
|
|
|
{ |
274
|
0
|
|
|
0
|
0
|
0
|
my ($dirInfo, $dirStart) = @_; |
275
|
0
|
0
|
|
|
|
0
|
my $raf = $$dirInfo{RAF} or return 0; |
276
|
0
|
|
|
|
|
0
|
my $base = $$dirInfo{Base}; |
277
|
0
|
0
|
0
|
|
|
0
|
$dirStart = $$dirInfo{DirStart} || 0 unless defined $dirStart; |
278
|
0
|
|
0
|
|
|
0
|
my $offset = $dirStart + ($$dirInfo{DataPos} || 0); |
279
|
0
|
|
|
|
|
0
|
my ($buff, $index); |
280
|
0
|
0
|
0
|
|
|
0
|
$raf->Seek($offset + $base, 0) and $raf->Read($buff,2) == 2 or return 0; |
281
|
0
|
|
|
|
|
0
|
my $numEntries = Get16u(\$buff,0); |
282
|
0
|
0
|
0
|
|
|
0
|
$numEntries > 1 and $numEntries < 64 or return 0; |
283
|
0
|
|
|
|
|
0
|
my $len = 12 * $numEntries; |
284
|
0
|
0
|
|
|
|
0
|
$raf->Read($buff, $len) == $len or return 0; |
285
|
0
|
|
|
|
|
0
|
my $lastID = -1; |
286
|
0
|
|
|
|
|
0
|
for ($index=0; $index<$numEntries; ++$index) { |
287
|
0
|
|
|
|
|
0
|
my $entry = 12 * $index; |
288
|
0
|
|
|
|
|
0
|
my $tagID = Get16u(\$buff, $entry); |
289
|
0
|
0
|
0
|
|
|
0
|
$tagID > $lastID or $$dirInfo{AllowOutOfOrderTags} or return 0; |
290
|
0
|
|
|
|
|
0
|
my $format = Get16u(\$buff, $entry+2); |
291
|
0
|
0
|
0
|
|
|
0
|
$format > 0 and $format <= 13 or return 0; |
292
|
0
|
|
|
|
|
0
|
my $count = Get32u(\$buff, $entry+4); |
293
|
0
|
0
|
|
|
|
0
|
$count > 0 or return 0; |
294
|
0
|
|
|
|
|
0
|
$lastID = $tagID; |
295
|
|
|
|
|
|
|
} |
296
|
0
|
|
|
|
|
0
|
return 1; |
297
|
|
|
|
|
|
|
} |
298
|
|
|
|
|
|
|
|
299
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
300
|
|
|
|
|
|
|
# Get sorted list of offsets used in IFD |
301
|
|
|
|
|
|
|
# Inputs: 0) data ref, 1) directory start, 2) dataPos, 3) IFD entries, 4) tag table ref |
302
|
|
|
|
|
|
|
# Returns: 0) sorted list of offsets (only offsets after the end of the IFD) |
303
|
|
|
|
|
|
|
# 1) hash of list indices keyed by offset value |
304
|
|
|
|
|
|
|
# Notes: This is used in a patch to fix the count for tags in Kodak SubIFD3 |
305
|
|
|
|
|
|
|
sub GetOffList($$$$$) |
306
|
|
|
|
|
|
|
{ |
307
|
0
|
|
|
0
|
0
|
0
|
my ($dataPt, $dirStart, $dataPos, $numEntries, $tagTablePtr) = @_; |
308
|
0
|
|
|
|
|
0
|
my $ifdEnd = $dirStart + 2 + 12 * $numEntries + $dataPos; |
309
|
0
|
|
|
|
|
0
|
my ($index, $offset, %offHash); |
310
|
0
|
|
|
|
|
0
|
for ($index=0; $index<$numEntries; ++$index) { |
311
|
0
|
|
|
|
|
0
|
my $entry = $dirStart + 2 + 12 * $index; |
312
|
0
|
|
|
|
|
0
|
my $format = Get16u($dataPt, $entry + 2); |
313
|
0
|
0
|
0
|
|
|
0
|
next if $format < 1 or $format > 13; |
314
|
0
|
|
|
|
|
0
|
my $count = Get16u($dataPt, $entry + 4); |
315
|
0
|
|
|
|
|
0
|
my $size = $formatSize[$format] * $count; |
316
|
0
|
0
|
|
|
|
0
|
if ($size <= 4) { |
317
|
0
|
|
|
|
|
0
|
my $tagID = Get16u($dataPt, $entry); |
318
|
0
|
0
|
0
|
|
|
0
|
next unless ref $$tagTablePtr{$tagID} eq 'HASH' and $$tagTablePtr{$tagID}{FixCount}; |
319
|
|
|
|
|
|
|
} |
320
|
0
|
|
|
|
|
0
|
my $offset = Get16u($dataPt, $entry + 8); |
321
|
0
|
0
|
|
|
|
0
|
$offHash{$offset} = 1 if $offset >= $ifdEnd; |
322
|
|
|
|
|
|
|
} |
323
|
|
|
|
|
|
|
# set offset hash values to indices in list |
324
|
0
|
|
|
|
|
0
|
my @offList = sort keys %offHash; |
325
|
0
|
|
|
|
|
0
|
$index = 0; |
326
|
0
|
|
|
|
|
0
|
foreach $offset (@offList) { |
327
|
0
|
|
|
|
|
0
|
$offHash{$offset} = $index++; |
328
|
|
|
|
|
|
|
} |
329
|
0
|
|
|
|
|
0
|
return(\@offList, \%offHash); |
330
|
|
|
|
|
|
|
} |
331
|
|
|
|
|
|
|
|
332
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
333
|
|
|
|
|
|
|
# Update TIFF_END member if defined |
334
|
|
|
|
|
|
|
# Inputs: 0) ExifTool ref, 1) end of valid TIFF data |
335
|
|
|
|
|
|
|
sub UpdateTiffEnd($$) |
336
|
|
|
|
|
|
|
{ |
337
|
332
|
|
|
332
|
0
|
660
|
my ($et, $end) = @_; |
338
|
332
|
100
|
100
|
|
|
1544
|
if (defined $$et{TIFF_END} and |
339
|
|
|
|
|
|
|
$$et{TIFF_END} < $end) |
340
|
|
|
|
|
|
|
{ |
341
|
278
|
|
|
|
|
554
|
$$et{TIFF_END} = $end; |
342
|
|
|
|
|
|
|
} |
343
|
|
|
|
|
|
|
} |
344
|
|
|
|
|
|
|
|
345
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
346
|
|
|
|
|
|
|
# Validate image data size |
347
|
|
|
|
|
|
|
# Inputs: 0) ExifTool ref, 1) validate info hash ref, |
348
|
|
|
|
|
|
|
# 2) flag to issue error (ie. we're writing) |
349
|
|
|
|
|
|
|
# - issues warning or error if problems found |
350
|
|
|
|
|
|
|
sub ValidateImageData($$$;$) |
351
|
|
|
|
|
|
|
{ |
352
|
85
|
|
|
85
|
0
|
171
|
local $_; |
353
|
85
|
|
|
|
|
238
|
my ($et, $vInfo, $dirName, $errFlag) = @_; |
354
|
|
|
|
|
|
|
|
355
|
|
|
|
|
|
|
# determine the expected size of the image data for an uncompressed image |
356
|
|
|
|
|
|
|
# (0x102 BitsPerSample, 0x103 Compression and 0x115 SamplesPerPixel |
357
|
|
|
|
|
|
|
# all default to a value of 1 if they don't exist) |
358
|
85
|
100
|
100
|
|
|
714
|
if ((not defined $$vInfo{0x103} or $$vInfo{0x103} eq '1') and |
|
|
|
100
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
66
|
|
|
|
|
359
|
|
|
|
|
|
|
$$vInfo{0x100} and $$vInfo{0x101} and ($$vInfo{0x117} or $$vInfo{0x145})) |
360
|
|
|
|
|
|
|
{ |
361
|
5
|
|
100
|
|
|
25
|
my $samplesPerPix = $$vInfo{0x115} || 1; |
362
|
5
|
50
|
|
|
|
37
|
my @bitsPerSample = $$vInfo{0x102} ? split(' ',$$vInfo{0x102}) : (1) x $samplesPerPix; |
363
|
5
|
|
33
|
|
|
22
|
my $byteCountInfo = $$vInfo{0x117} || $$vInfo{0x145}; |
364
|
5
|
|
|
|
|
12
|
my $byteCounts = $$byteCountInfo[1]; |
365
|
5
|
|
|
|
|
13
|
my $totalBytes = 0; |
366
|
5
|
|
|
|
|
26
|
$totalBytes += $_ foreach split ' ', $byteCounts; |
367
|
5
|
|
|
|
|
13
|
my $minor; |
368
|
5
|
50
|
33
|
|
|
38
|
$minor = 1 if $$et{DOC_NUM} or $$et{FILE_TYPE} ne 'TIFF'; |
369
|
5
|
50
|
|
|
|
21
|
unless (@bitsPerSample == $samplesPerPix) { |
370
|
0
|
0
|
0
|
|
|
0
|
unless ($$et{FILE_TYPE} eq 'EPS' and @bitsPerSample == 1) { |
371
|
|
|
|
|
|
|
# (just a warning for this problem) |
372
|
0
|
0
|
|
|
|
0
|
my $s = $samplesPerPix eq '1' ? '' : 's'; |
373
|
0
|
|
|
|
|
0
|
$et->Warn("$dirName BitsPerSample should have $samplesPerPix value$s", $minor); |
374
|
|
|
|
|
|
|
} |
375
|
0
|
|
|
|
|
0
|
push @bitsPerSample, $bitsPerSample[0] while @bitsPerSample < $samplesPerPix; |
376
|
0
|
|
|
|
|
0
|
foreach (@bitsPerSample) { |
377
|
0
|
0
|
|
|
|
0
|
$et->WarnOnce("$dirName BitsPerSample values are different", $minor) if $_ ne $bitsPerSample[0]; |
378
|
0
|
0
|
0
|
|
|
0
|
$et->WarnOnce("Invalid $dirName BitsPerSample value", $minor) if $_ < 1 or $_ > 32; |
379
|
|
|
|
|
|
|
} |
380
|
|
|
|
|
|
|
} |
381
|
5
|
|
|
|
|
11
|
my $bitsPerPixel = 0; |
382
|
5
|
|
|
|
|
17
|
$bitsPerPixel += $_ foreach @bitsPerSample; |
383
|
5
|
|
|
|
|
35
|
my $expectedBytes = int(($$vInfo{0x100} * $$vInfo{0x101} * $bitsPerPixel + 7) / 8); |
384
|
5
|
100
|
66
|
|
|
84
|
if ($expectedBytes != $totalBytes and |
385
|
|
|
|
|
|
|
# (this problem seems normal for certain types of RAW files...) |
386
|
|
|
|
|
|
|
$$et{TIFF_TYPE} !~ /^(K25|KDC|MEF|ORF|SRF)$/) |
387
|
|
|
|
|
|
|
{ |
388
|
1
|
|
|
|
|
5
|
my ($adj, $minor); |
389
|
1
|
50
|
|
|
|
4
|
if ($expectedBytes > $totalBytes) { |
390
|
1
|
|
|
|
|
3
|
$adj = 'Under'; # undersized is a bigger problem because we may lose data |
391
|
1
|
50
|
|
|
|
5
|
$minor = 0 unless $errFlag; |
392
|
|
|
|
|
|
|
} else { |
393
|
0
|
|
|
|
|
0
|
$adj = 'Over'; |
394
|
0
|
|
|
|
|
0
|
$minor = 1; |
395
|
|
|
|
|
|
|
} |
396
|
1
|
|
|
|
|
9
|
my $msg = "${adj}sized $dirName $$byteCountInfo[0]{Name} ($totalBytes bytes, but expected $expectedBytes)"; |
397
|
1
|
50
|
|
|
|
5
|
if (not defined $minor) { |
398
|
|
|
|
|
|
|
# this is a serious error if we are writing the file and there |
399
|
|
|
|
|
|
|
# is a chance that we may not copy all of the image data |
400
|
|
|
|
|
|
|
# (but make it minor to allow the file to be written anyway) |
401
|
1
|
|
|
|
|
7
|
$et->Error($msg, 1); |
402
|
|
|
|
|
|
|
} else { |
403
|
0
|
|
|
|
|
0
|
$et->Warn($msg, $minor); |
404
|
|
|
|
|
|
|
} |
405
|
|
|
|
|
|
|
} |
406
|
|
|
|
|
|
|
} |
407
|
|
|
|
|
|
|
} |
408
|
|
|
|
|
|
|
|
409
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
410
|
|
|
|
|
|
|
# Handle error while writing EXIF |
411
|
|
|
|
|
|
|
# Inputs: 0) ExifTool ref, 1) error string, 2) tag table ref |
412
|
|
|
|
|
|
|
# Returns: undef on fatal error, or '' if minor error is ignored |
413
|
|
|
|
|
|
|
sub ExifErr($$$) |
414
|
|
|
|
|
|
|
{ |
415
|
0
|
|
|
0
|
0
|
0
|
my ($et, $errStr, $tagTablePtr) = @_; |
416
|
|
|
|
|
|
|
# MakerNote errors are minor by default |
417
|
0
|
|
0
|
|
|
0
|
my $minor = ($$tagTablePtr{GROUPS}{0} eq 'MakerNotes' or $$et{FILE_TYPE} eq 'MOV'); |
418
|
0
|
0
|
0
|
|
|
0
|
if ($$tagTablePtr{VARS} and $$tagTablePtr{VARS}{MINOR_ERRORS}) { |
419
|
0
|
0
|
0
|
|
|
0
|
$et->Warn("$errStr. IFD dropped.") and return '' if $minor; |
420
|
0
|
|
|
|
|
0
|
$minor = 1; |
421
|
|
|
|
|
|
|
} |
422
|
0
|
0
|
|
|
|
0
|
return undef if $et->Error($errStr, $minor); |
423
|
0
|
|
|
|
|
0
|
return ''; |
424
|
|
|
|
|
|
|
} |
425
|
|
|
|
|
|
|
|
426
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
427
|
|
|
|
|
|
|
# Read/Write IFD with TIFF-like header (used by DNG 1.2) |
428
|
|
|
|
|
|
|
# Inputs: 0) ExifTool object ref, 1) dirInfo ref, 2) tag table ref |
429
|
|
|
|
|
|
|
# Returns: Reading: 1 on success, otherwise returns 0 and sets a Warning |
430
|
|
|
|
|
|
|
# Writing: new data block or undef on error |
431
|
|
|
|
|
|
|
sub ProcessTiffIFD($$$) |
432
|
|
|
|
|
|
|
{ |
433
|
0
|
|
|
0
|
0
|
0
|
my ($et, $dirInfo, $tagTablePtr) = @_; |
434
|
0
|
0
|
|
|
|
0
|
$et or return 1; # allow dummy access |
435
|
0
|
|
|
|
|
0
|
my $raf = $$dirInfo{RAF}; |
436
|
0
|
|
0
|
|
|
0
|
my $base = $$dirInfo{Base} || 0; |
437
|
0
|
|
|
|
|
0
|
my $dirName = $$dirInfo{DirName}; |
438
|
0
|
|
0
|
|
|
0
|
my $magic = $$dirInfo{Subdir}{Magic} || 0x002a; |
439
|
0
|
|
|
|
|
0
|
my $buff; |
440
|
|
|
|
|
|
|
|
441
|
|
|
|
|
|
|
# structured with a TIFF-like header and relative offsets |
442
|
0
|
0
|
0
|
|
|
0
|
$raf->Seek($base, 0) and $raf->Read($buff, 8) == 8 or return 0; |
443
|
0
|
0
|
0
|
|
|
0
|
unless (SetByteOrder(substr($buff,0,2)) and Get16u(\$buff, 2) == $magic) { |
444
|
0
|
|
|
|
|
0
|
my $msg = "Invalid $dirName header"; |
445
|
0
|
0
|
|
|
|
0
|
if ($$dirInfo{IsWriting}) { |
446
|
0
|
|
|
|
|
0
|
$et->Error($msg); |
447
|
0
|
|
|
|
|
0
|
return undef; |
448
|
|
|
|
|
|
|
} else { |
449
|
0
|
|
|
|
|
0
|
$et->Warn($msg); |
450
|
0
|
|
|
|
|
0
|
return 0; |
451
|
|
|
|
|
|
|
} |
452
|
|
|
|
|
|
|
} |
453
|
0
|
|
|
|
|
0
|
my $offset = Get32u(\$buff, 4); |
454
|
|
|
|
|
|
|
my %dirInfo = ( |
455
|
|
|
|
|
|
|
DirName => $$dirInfo{DirName}, |
456
|
|
|
|
|
|
|
Parent => $$dirInfo{Parent}, |
457
|
0
|
|
|
|
|
0
|
Base => $base, |
458
|
|
|
|
|
|
|
DataPt => \$buff, |
459
|
|
|
|
|
|
|
DataLen => length $buff, |
460
|
|
|
|
|
|
|
DataPos => 0, |
461
|
|
|
|
|
|
|
DirStart => $offset, |
462
|
|
|
|
|
|
|
DirLen => length($buff) - $offset, |
463
|
|
|
|
|
|
|
RAF => $raf, |
464
|
|
|
|
|
|
|
NewDataPos => 8, |
465
|
|
|
|
|
|
|
); |
466
|
0
|
0
|
|
|
|
0
|
if ($$dirInfo{IsWriting}) { |
467
|
|
|
|
|
|
|
# rewrite the Camera Profile IFD |
468
|
0
|
|
|
|
|
0
|
my $newDir = WriteExif($et, \%dirInfo, $tagTablePtr); |
469
|
|
|
|
|
|
|
# don't add header if error writing directory ($newDir is undef) |
470
|
|
|
|
|
|
|
# or if directory is being deleted ($newDir is empty) |
471
|
0
|
0
|
|
|
|
0
|
return $newDir unless $newDir; |
472
|
|
|
|
|
|
|
# return directory with TIFF-like header |
473
|
0
|
|
|
|
|
0
|
return GetByteOrder() . Set16u($magic) . Set32u(8) . $newDir; |
474
|
|
|
|
|
|
|
} |
475
|
0
|
0
|
|
|
|
0
|
if ($$et{HTML_DUMP}) { |
476
|
0
|
0
|
|
|
|
0
|
my $tip = sprintf("Byte order: %s endian\nIdentifier: 0x%.4x\n%s offset: 0x%.4x", |
477
|
|
|
|
|
|
|
(GetByteOrder() eq 'II') ? 'Little' : 'Big', $magic, $dirName, $offset); |
478
|
0
|
|
|
|
|
0
|
$et->HDump($base, 8, "$dirName header", $tip, 0); |
479
|
|
|
|
|
|
|
} |
480
|
0
|
|
|
|
|
0
|
return ProcessExif($et, \%dirInfo, $tagTablePtr); |
481
|
|
|
|
|
|
|
} |
482
|
|
|
|
|
|
|
|
483
|
|
|
|
|
|
|
#------------------------------------------------------------------------------ |
484
|
|
|
|
|
|
|
# Write EXIF directory |
485
|
|
|
|
|
|
|
# Inputs: 0) ExifTool object ref, 1) source dirInfo ref, 2) tag table ref |
486
|
|
|
|
|
|
|
# Returns: Exif data block (may be empty if no Exif data) or undef on error |
487
|
|
|
|
|
|
|
# Notes: Increments ExifTool CHANGED flag for each tag changed. Also updates |
488
|
|
|
|
|
|
|
# TIFF_END if defined with location of end of original TIFF image. |
489
|
|
|
|
|
|
|
# Returns IFD data in the following order: |
490
|
|
|
|
|
|
|
# 1. IFD0 directory followed by its data |
491
|
|
|
|
|
|
|
# 2. SubIFD directory followed by its data, thumbnail and image |
492
|
|
|
|
|
|
|
# 3. GlobalParameters, EXIF, GPS, Interop IFD's each with their data |
493
|
|
|
|
|
|
|
# 4. IFD1,IFD2,... directories each followed by their data |
494
|
|
|
|
|
|
|
# 5. Thumbnail and/or image data for each IFD, with IFD0 image last |
495
|
|
|
|
|
|
|
sub WriteExif($$$) |
496
|
|
|
|
|
|
|
{ |
497
|
8297
|
|
|
8297
|
0
|
14062
|
my ($et, $dirInfo, $tagTablePtr) = @_; |
498
|
8297
|
100
|
|
|
|
26503
|
$et or return 1; # allow dummy access to autoload this package |
499
|
324
|
|
|
|
|
608
|
my $origDirInfo = $dirInfo; # save original dirInfo |
500
|
324
|
|
|
|
|
716
|
my $dataPt = $$dirInfo{DataPt}; |
501
|
324
|
100
|
|
|
|
808
|
unless ($dataPt) { |
502
|
32
|
|
|
|
|
93
|
my $emptyData = ''; |
503
|
32
|
|
|
|
|
75
|
$dataPt = \$emptyData; |
504
|
|
|
|
|
|
|
} |
505
|
324
|
|
100
|
|
|
1270
|
my $dataPos = $$dirInfo{DataPos} || 0; |
506
|
324
|
|
100
|
|
|
945
|
my $dirStart = $$dirInfo{DirStart} || 0; |
507
|
324
|
|
66
|
|
|
1003
|
my $dataLen = $$dirInfo{DataLen} || length($$dataPt); |
508
|
324
|
|
100
|
|
|
1099
|
my $dirLen = $$dirInfo{DirLen} || ($dataLen - $dirStart); |
509
|
324
|
|
100
|
|
|
961
|
my $base = $$dirInfo{Base} || 0; |
510
|
324
|
|
|
|
|
525
|
my $firstBase = $base; |
511
|
324
|
|
|
|
|
584
|
my $raf = $$dirInfo{RAF}; |
512
|
324
|
|
50
|
|
|
863
|
my $dirName = $$dirInfo{DirName} || 'unknown'; |
513
|
324
|
|
66
|
|
|
4628
|
my $fixup = $$dirInfo{Fixup} || new Image::ExifTool::Fixup; |
514
|
324
|
|
100
|
|
|
1118
|
my $imageDataFlag = $$dirInfo{ImageData} || ''; |
515
|
324
|
|
|
|
|
1075
|
my $verbose = $et->Options('Verbose'); |
516
|
324
|
|
|
|
|
900
|
my $out = $et->Options('TextOut'); |
517
|
324
|
|
|
|
|
986
|
my ($nextIfdPos, %offsetData, $inMakerNotes); |
518
|
324
|
|
|
|
|
0
|
my (@offsetInfo, %validateInfo, %xDelete, $strEnc); |
519
|
324
|
|
|
|
|
914
|
my $deleteAll = 0; |
520
|
324
|
|
|
|
|
870
|
my $newData = ''; # initialize buffer to receive new directory data |
521
|
324
|
|
|
|
|
579
|
my @imageData; # image data blocks to copy later if requested |
522
|
324
|
|
|
|
|
581
|
my $name = $$dirInfo{Name}; |
523
|
324
|
100
|
100
|
|
|
1700
|
$name = $dirName unless $name and $dirName eq 'MakerNotes' and $name !~ /^MakerNote/; |
|
|
|
100
|
|
|
|
|
524
|
|
|
|
|
|
|
|
525
|
|
|
|
|
|
|
# save byte order of existing EXIF |
526
|
324
|
100
|
100
|
|
|
1699
|
$$et{SaveExifByteOrder} = GetByteOrder() if $dirName eq 'IFD0' or $dirName eq 'ExifIFD'; |
527
|
|
|
|
|
|
|
|
528
|
|
|
|
|
|
|
# set encoding for strings |
529
|
324
|
100
|
|
|
|
1523
|
$strEnc = $et->Options('CharsetEXIF') if $$tagTablePtr{GROUPS}{0} eq 'EXIF'; |
530
|
|
|
|
|
|
|
|
531
|
|
|
|
|
|
|
# allow multiple IFD's in IFD0-IFD1-IFD2... chain |
532
|
324
|
100
|
66
|
|
|
2228
|
$$dirInfo{Multi} = 1 if $dirName =~ /^(IFD0|SubIFD)$/ and not defined $$dirInfo{Multi}; |
533
|
324
|
100
|
|
|
|
1028
|
$inMakerNotes = 1 if $$tagTablePtr{GROUPS}{0} eq 'MakerNotes'; |
534
|
324
|
|
|
|
|
794
|
my $ifd; |
535
|
|
|
|
|
|
|
|
536
|
|
|
|
|
|
|
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
537
|
|
|
|
|
|
|
# loop through each IFD |
538
|
|
|
|
|
|
|
# |
539
|
324
|
|
|
|
|
840
|
for ($ifd=0; ; ++$ifd) { # loop through multiple IFD's |
540
|
|
|
|
|
|
|
|
541
|
|
|
|
|
|
|
# make sure that Compression and SubfileType are defined for this IFD (for Condition's) |
542
|
372
|
|
|
|
|
915
|
$$et{Compression} = $$et{SubfileType} = ''; |
543
|
|
|
|
|
|
|
|
544
|
|
|
|
|
|
|
# save pointer to start of this IFD within the newData |
545
|
372
|
|
|
|
|
676
|
my $newStart = length($newData); |
546
|
372
|
|
|
|
|
698
|
my @subdirs; # list of subdirectory data and tag table pointers |
547
|
|
|
|
|
|
|
# determine if directory is contained within our data |
548
|
|
|
|
|
|
|
my $mustRead; |
549
|
372
|
100
|
66
|
|
|
1943
|
if ($dirStart < 0 or $dirStart > $dataLen-2) { |
|
|
50
|
|
|
|
|
|
550
|
115
|
|
|
|
|
338
|
$mustRead = 1; |
551
|
|
|
|
|
|
|
} elsif ($dirLen >= 2) { |
552
|
257
|
|
|
|
|
770
|
my $len = 2 + 12 * Get16u($dataPt, $dirStart); |
553
|
257
|
50
|
|
|
|
761
|
$mustRead = 1 if $dirStart + $len > $dataLen; |
554
|
|
|
|
|
|
|
} |
555
|
|
|
|
|
|
|
# read IFD from file if necessary |
556
|
372
|
100
|
|
|
|
864
|
if ($mustRead) { |
557
|
115
|
100
|
33
|
|
|
499
|
if ($raf) { |
|
|
50
|
|
|
|
|
|
558
|
|
|
|
|
|
|
# read the count of entries in this IFD |
559
|
38
|
|
|
|
|
80
|
my $offset = $dirStart + $dataPos; |
560
|
38
|
|
|
|
|
67
|
my ($buff, $buf2); |
561
|
38
|
50
|
33
|
|
|
162
|
unless ($raf->Seek($offset + $base, 0) and $raf->Read($buff,2) == 2) { |
562
|
0
|
|
|
|
|
0
|
return ExifErr($et, "Bad IFD or truncated file in $name", $tagTablePtr); |
563
|
|
|
|
|
|
|
} |
564
|
38
|
|
|
|
|
185
|
my $len = 12 * Get16u(\$buff,0); |
565
|
|
|
|
|
|
|
# (also read next IFD pointer if available) |
566
|
38
|
50
|
|
|
|
143
|
unless ($raf->Read($buf2, $len+4) >= $len) { |
567
|
0
|
|
|
|
|
0
|
return ExifErr($et, "Error reading $name", $tagTablePtr); |
568
|
|
|
|
|
|
|
} |
569
|
38
|
|
|
|
|
112
|
$buff .= $buf2; |
570
|
|
|
|
|
|
|
# make copy of dirInfo since we're going to modify it |
571
|
38
|
|
|
|
|
414
|
my %newDirInfo = %$dirInfo; |
572
|
38
|
|
|
|
|
119
|
$dirInfo = \%newDirInfo; |
573
|
|
|
|
|
|
|
# update directory parameters for the newly loaded IFD |
574
|
38
|
|
|
|
|
106
|
$dataPt = $$dirInfo{DataPt} = \$buff; |
575
|
38
|
|
|
|
|
94
|
$dirStart = $$dirInfo{DirStart} = 0; |
576
|
38
|
|
|
|
|
80
|
$dataPos = $$dirInfo{DataPos} = $offset; |
577
|
38
|
|
|
|
|
78
|
$dataLen = $$dirInfo{DataLen} = length $buff; |
578
|
38
|
|
|
|
|
91
|
$dirLen = $$dirInfo{DirLen} = $dataLen; |
579
|
|
|
|
|
|
|
# only account for nextIFD pointer if we are going to use it |
580
|
38
|
50
|
66
|
|
|
289
|
$len += 4 if $dataLen==$len+6 and ($$dirInfo{Multi} or $buff =~ /\0{4}$/); |
|
|
|
66
|
|
|
|
|
581
|
38
|
|
|
|
|
146
|
UpdateTiffEnd($et, $offset+$base+2+$len); |
582
|
|
|
|
|
|
|
} elsif ($dirLen and $dirStart + 4 >= $dataLen) { |
583
|
|
|
|
|
|
|
# error if we can't load IFD (unless we are creating |
584
|
|
|
|
|
|
|
# from scratch, in which case dirLen will be zero) |
585
|
0
|
0
|
|
|
|
0
|
my $str = $et->Options('IgnoreMinorErrors') ? 'Deleted bad' : 'Bad'; |
586
|
0
|
|
|
|
|
0
|
$et->Error("$str $name directory", 1); |
587
|
|
|
|
|
|
|
} |
588
|
|
|
|
|
|
|
} |
589
|
372
|
|
|
|
|
789
|
my ($index, $dirEnd, $numEntries); |
590
|
372
|
100
|
|
|
|
1296
|
if ($dirStart + 4 < $dataLen) { |
591
|
288
|
|
|
|
|
633
|
$numEntries = Get16u($dataPt, $dirStart); |
592
|
288
|
|
|
|
|
658
|
$dirEnd = $dirStart + 2 + 12 * $numEntries; |
593
|
288
|
50
|
|
|
|
663
|
if ($dirEnd > $dataLen) { |
594
|
0
|
|
|
|
|
0
|
my $n = int(($dataLen - $dirStart - 2) / 12); |
595
|
0
|
|
|
|
|
0
|
my $rtn = ExifErr($et, "Truncated $name directory", $tagTablePtr); |
596
|
0
|
0
|
0
|
|
|
0
|
return undef unless $n and defined $rtn; |
597
|
0
|
|
|
|
|
0
|
$numEntries = $n; # continue processing the entries we have |
598
|
|
|
|
|
|
|
} |
599
|
|
|
|
|
|
|
# sort entries if necessary (but not in maker notes IFDs) |
600
|
288
|
100
|
|
|
|
2088
|
unless ($inMakerNotes) { |
601
|
217
|
|
|
|
|
378
|
my $lastID = -1; |
602
|
217
|
|
|
|
|
655
|
for ($index=0; $index<$numEntries; ++$index) { |
603
|
2866
|
|
|
|
|
4825
|
my $tagID = Get16u($dataPt, $dirStart + 2 + 12 * $index); |
604
|
|
|
|
|
|
|
# check for proper sequence (but ignore null entries at end) |
605
|
2866
|
0
|
0
|
|
|
4862
|
if ($tagID < $lastID and ($tagID or $$tagTablePtr{0})) { |
|
|
|
33
|
|
|
|
|
606
|
0
|
|
|
|
|
0
|
SortIFD($dataPt, $dirStart, $numEntries, $$tagTablePtr{0}); |
607
|
0
|
|
|
|
|
0
|
$et->Warn("Entries in $name were out of sequence. Fixed.",1); |
608
|
0
|
|
|
|
|
0
|
last; |
609
|
|
|
|
|
|
|
} |
610
|
2866
|
|
|
|
|
4625
|
$lastID = $tagID; |
611
|
|
|
|
|
|
|
} |
612
|
|
|
|
|
|
|
} |
613
|
|
|
|
|
|
|
} else { |
614
|
84
|
|
|
|
|
166
|
$numEntries = 0; |
615
|
84
|
|
|
|
|
152
|
$dirEnd = $dirStart; |
616
|
|
|
|
|
|
|
} |
617
|
|
|
|
|
|
|
|
618
|
|
|
|
|
|
|
# loop through new values and accumulate all information for this IFD |
619
|
372
|
|
|
|
|
756
|
my (%set, %mayDelete, $tagInfo); |
620
|
372
|
|
|
|
|
894
|
my $wrongDir = $crossDelete{$dirName}; |
621
|
372
|
|
|
|
|
1405
|
my @newTagInfo = $et->GetNewTagInfoList($tagTablePtr); |
622
|
372
|
|
|
|
|
837
|
foreach $tagInfo (@newTagInfo) { |
623
|
2038
|
|
|
|
|
3176
|
my $tagID = $$tagInfo{TagID}; |
624
|
|
|
|
|
|
|
# must evaluate Condition later when we have all DataMember's available |
625
|
2038
|
100
|
100
|
|
|
6415
|
$set{$tagID} = (ref $$tagTablePtr{$tagID} eq 'ARRAY' or $$tagInfo{Condition}) ? '' : $tagInfo; |
626
|
|
|
|
|
|
|
} |
627
|
|
|
|
|
|
|
|
628
|
|
|
|
|
|
|
# fix base offsets (some cameras incorrectly write maker notes in IFD0) |
629
|
372
|
100
|
100
|
|
|
2131
|
if ($dirName eq 'MakerNotes' and $$dirInfo{Parent} =~ /^(ExifIFD|IFD0)$/ and |
|
|
|
66
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
66
|
|
|
|
|
630
|
|
|
|
|
|
|
$$et{TIFF_TYPE} !~ /^(ARW|SR2)$/ and not $$et{LeicaTrailerPos} and |
631
|
|
|
|
|
|
|
Image::ExifTool::MakerNotes::FixBase($et, $dirInfo)) |
632
|
|
|
|
|
|
|
{ |
633
|
|
|
|
|
|
|
# update local variables from fixed values |
634
|
2
|
|
|
|
|
5
|
$base = $$dirInfo{Base}; |
635
|
2
|
|
|
|
|
4
|
$dataPos = $$dirInfo{DataPos}; |
636
|
|
|
|
|
|
|
# changed if ForceWrite tag was was set to "FixBase" |
637
|
2
|
50
|
|
|
|
9
|
++$$et{CHANGED} if $$et{FORCE_WRITE}{FixBase}; |
638
|
2
|
0
|
33
|
|
|
8
|
if ($$et{TIFF_TYPE} eq 'SRW' and $$et{Make} eq 'SAMSUNG' and $$et{Model} eq 'EK-GN120') { |
|
|
|
33
|
|
|
|
|
639
|
0
|
|
|
|
|
0
|
$et->Error("EK-GN120 SRW files are too buggy to write"); |
640
|
|
|
|
|
|
|
} |
641
|
|
|
|
|
|
|
} |
642
|
|
|
|
|
|
|
|
643
|
|
|
|
|
|
|
# initialize variables to handle mandatory tags |
644
|
372
|
|
|
|
|
946
|
my $mandatory = $mandatory{$dirName}; |
645
|
372
|
|
|
|
|
649
|
my ($allMandatory, $addMandatory); |
646
|
372
|
100
|
|
|
|
876
|
if ($mandatory) { |
647
|
|
|
|
|
|
|
# use X/Y resolution values from JFIF if available |
648
|
289
|
100
|
100
|
|
|
1116
|
if ($dirName eq 'IFD0' and defined $$et{JFIFYResolution}) { |
649
|
6
|
|
|
|
|
34
|
my %ifd0Vals = %$mandatory; |
650
|
6
|
|
|
|
|
19
|
$ifd0Vals{0x011a} = $$et{JFIFXResolution}; |
651
|
6
|
|
|
|
|
14
|
$ifd0Vals{0x011b} = $$et{JFIFYResolution}; |
652
|
6
|
|
|
|
|
16
|
$ifd0Vals{0x0128} = $$et{JFIFResolutionUnit} + 1; |
653
|
6
|
|
|
|
|
12
|
$mandatory = \%ifd0Vals; |
654
|
|
|
|
|
|
|
} |
655
|
289
|
|
|
|
|
534
|
$allMandatory = $addMandatory = 0; # initialize to zero |
656
|
|
|
|
|
|
|
# add mandatory tags if creating a new directory |
657
|
289
|
100
|
|
|
|
672
|
unless ($numEntries) { |
658
|
84
|
|
|
|
|
302
|
foreach (keys %$mandatory) { |
659
|
309
|
100
|
|
|
|
1175
|
defined $set{$_} or $set{$_} = $$tagTablePtr{$_}; |
660
|
|
|
|
|
|
|
} |
661
|
|
|
|
|
|
|
} |
662
|
|
|
|
|
|
|
} else { |
663
|
83
|
|
|
|
|
190
|
undef $deleteAll; # don't remove directory (no mandatory entries) |
664
|
|
|
|
|
|
|
} |
665
|
372
|
|
|
|
|
741
|
my ($addDirs, @newTags); |
666
|
372
|
100
|
|
|
|
812
|
if ($inMakerNotes) { |
667
|
71
|
|
|
|
|
150
|
$addDirs = { }; # can't currently add new directories in MakerNotes |
668
|
|
|
|
|
|
|
# allow non-permanent makernotes tags to be added |
669
|
|
|
|
|
|
|
# (note: we may get into trouble if there are too many of these |
670
|
|
|
|
|
|
|
# because we allow out-of-order tags in MakerNote IFD's but our |
671
|
|
|
|
|
|
|
# logic to add new tags relies on ordered entries) |
672
|
71
|
|
|
|
|
256
|
foreach (keys %set) { |
673
|
41
|
100
|
|
|
|
163
|
next unless $set{$_}; |
674
|
36
|
|
|
|
|
72
|
my $perm = $set{$_}{Permanent}; |
675
|
36
|
50
|
66
|
|
|
410
|
push @newTags, $_ if defined $perm and not $perm; |
676
|
|
|
|
|
|
|
} |
677
|
71
|
50
|
|
|
|
250
|
@newTags = sort { $a <=> $b } @newTags if @newTags > 1; |
|
0
|
|
|
|
|
0
|
|
678
|
|
|
|
|
|
|
} else { |
679
|
|
|
|
|
|
|
# get a hash of directories we will be writing in this one |
680
|
301
|
|
|
|
|
1202
|
$addDirs = $et->GetAddDirHash($tagTablePtr, $dirName); |
681
|
|
|
|
|
|
|
# make a union of tags & dirs (can set whole dirs, like MakerNotes) |
682
|
301
|
|
|
|
|
2602
|
my %allTags = ( %set, %$addDirs ); |
683
|
|
|
|
|
|
|
# make sorted list of new tags to be added |
684
|
301
|
|
|
|
|
1709
|
@newTags = sort { $a <=> $b } keys(%allTags); |
|
7438
|
|
|
|
|
9004
|
|
685
|
|
|
|
|
|
|
} |
686
|
372
|
|
|
|
|
932
|
my $dirBuff = ''; # buffer for directory data |
687
|
372
|
|
|
|
|
665
|
my $valBuff = ''; # buffer for value data |
688
|
372
|
|
|
|
|
563
|
my @valFixups; # list of fixups for offsets in valBuff |
689
|
|
|
|
|
|
|
# fixup for offsets in dirBuff |
690
|
372
|
|
|
|
|
1818
|
my $dirFixup = new Image::ExifTool::Fixup; |
691
|
372
|
|
|
|
|
620
|
my $entryBasedFixup; |
692
|
372
|
|
|
|
|
665
|
my $lastTagID = -1; |
693
|
372
|
|
|
|
|
2375
|
my ($oldInfo, $oldFormat, $oldFormName, $oldCount, $oldSize, $oldValue, $oldImageData); |
694
|
372
|
|
|
|
|
0
|
my ($readFormat, $readFormName, $readCount); # format for reading old value(s) |
695
|
372
|
|
|
|
|
0
|
my ($entry, $valueDataPt, $valueDataPos, $valueDataLen, $valuePtr, $valEnd); |
696
|
372
|
|
|
|
|
0
|
my ($offList, $offHash, $ignoreCount, $fixCount); |
697
|
372
|
|
|
|
|
555
|
my $oldID = -1; |
698
|
372
|
|
|
|
|
581
|
my $newID = -1; |
699
|
|
|
|
|
|
|
|
700
|
|
|
|
|
|
|
# patch for Canon EOS 40D firmware 1.0.4 bug (incorrect directory counts) |
701
|
372
|
50
|
66
|
|
|
1327
|
if ($inMakerNotes and $$et{Model} eq 'Canon EOS 40D') { |
702
|
0
|
|
|
|
|
0
|
my $fmt = Get16u($dataPt, $dirStart + 2 + 12 * ($numEntries - 1) + 2); |
703
|
0
|
0
|
0
|
|
|
0
|
if ($fmt < 1 or $fmt > 13) { |
704
|
|
|
|
|
|
|
# adjust the number of directory entries |
705
|
0
|
|
|
|
|
0
|
--$numEntries; |
706
|
0
|
|
|
|
|
0
|
$dirEnd -= 12; |
707
|
0
|
|
|
|
|
0
|
$ignoreCount = 1; |
708
|
|
|
|
|
|
|
} |
709
|
|
|
|
|
|
|
} |
710
|
|
|
|
|
|
|
#.............................................................................. |
711
|
|
|
|
|
|
|
# loop through entries in new directory |
712
|
|
|
|
|
|
|
# |
713
|
372
|
|
|
|
|
673
|
$index = 0; |
714
|
372
|
|
|
|
|
567
|
Entry: for (;;) { |
715
|
|
|
|
|
|
|
|
716
|
7038
|
100
|
100
|
|
|
18721
|
if (defined $oldID and $oldID == $newID) { |
717
|
|
|
|
|
|
|
# |
718
|
|
|
|
|
|
|
# read next entry from existing directory |
719
|
|
|
|
|
|
|
# |
720
|
5054
|
100
|
|
|
|
8488
|
if ($index < $numEntries) { |
721
|
4682
|
|
|
|
|
6838
|
$entry = $dirStart + 2 + 12 * $index; |
722
|
4682
|
|
|
|
|
8551
|
$oldID = Get16u($dataPt, $entry); |
723
|
4682
|
|
|
|
|
8757
|
$readFormat = $oldFormat = Get16u($dataPt, $entry+2); |
724
|
4682
|
|
|
|
|
9494
|
$readCount = $oldCount = Get32u($dataPt, $entry+4); |
725
|
4682
|
|
|
|
|
7801
|
undef $oldImageData; |
726
|
4682
|
50
|
33
|
|
|
13663
|
if ($oldFormat < 1 or $oldFormat > 13) { |
727
|
0
|
|
|
|
|
0
|
my $msg = "Bad format ($oldFormat) for $name entry $index"; |
728
|
|
|
|
|
|
|
# patch to preserve invalid directory entries in SubIFD3 of |
729
|
|
|
|
|
|
|
# various Kodak Z-series cameras (Z812, Z1085IS, Z1275) |
730
|
|
|
|
|
|
|
# and some Sony cameras such as the DSC-P10 |
731
|
0
|
0
|
0
|
|
|
0
|
if ($dirName eq 'MakerNotes' and (($$et{Make}=~/KODAK/i and |
|
|
|
0
|
|
|
|
|
732
|
|
|
|
|
|
|
$$dirInfo{Name} and $$dirInfo{Name} eq 'SubIFD3') or |
733
|
|
|
|
|
|
|
($numEntries == 12 and $$et{Make} eq 'SONY' and $index >= 8))) |
734
|
|
|
|
|
|
|
{ |
735
|
0
|
|
|
|
|
0
|
$dirBuff .= substr($$dataPt, $entry, 12); |
736
|
0
|
|
|
|
|
0
|
++$index; |
737
|
0
|
|
|
|
|
0
|
$newID = $oldID; # we wrote this |
738
|
0
|
|
|
|
|
0
|
$et->Warn($msg, 1); |
739
|
0
|
|
|
|
|
0
|
next; |
740
|
|
|
|
|
|
|
} |
741
|
|
|
|
|
|
|
# don't write out null directory entry |
742
|
0
|
0
|
0
|
|
|
0
|
if ($oldFormat==0 and $index and $oldCount==0) { |
|
|
|
0
|
|
|
|
|
743
|
0
|
|
0
|
|
|
0
|
$ignoreCount = ($ignoreCount || 0) + 1; |
744
|
|
|
|
|
|
|
# must keep same directory size to avoid messing up our fixed offsets |
745
|
0
|
0
|
|
|
|
0
|
$dirBuff .= ("\0" x 12) if $$dirInfo{FixBase}; |
746
|
0
|
|
|
|
|
0
|
++$index; |
747
|
0
|
|
|
|
|
0
|
$newID = $oldID; # pretend we wrote this |
748
|
0
|
|
|
|
|
0
|
next; |
749
|
|
|
|
|
|
|
} |
750
|
0
|
|
|
|
|
0
|
return ExifErr($et, $msg, $tagTablePtr); |
751
|
|
|
|
|
|
|
} |
752
|
4682
|
|
|
|
|
8188
|
$readFormName = $oldFormName = $formatName[$oldFormat]; |
753
|
4682
|
|
|
|
|
5699
|
$valueDataPt = $dataPt; |
754
|
4682
|
|
|
|
|
5409
|
$valueDataPos = $dataPos; |
755
|
4682
|
|
|
|
|
5299
|
$valueDataLen = $dataLen; |
756
|
4682
|
|
|
|
|
5517
|
$valuePtr = $entry + 8; |
757
|
|
|
|
|
|
|
# try direct method first for speed |
758
|
4682
|
|
|
|
|
8595
|
$oldInfo = $$tagTablePtr{$oldID}; |
759
|
4682
|
100
|
100
|
|
|
15701
|
if (ref $oldInfo ne 'HASH' or $$oldInfo{Condition}) { |
760
|
|
|
|
|
|
|
# must get unknown tags too |
761
|
|
|
|
|
|
|
# (necessary so we don't miss a tag we want to Drop) |
762
|
580
|
|
|
|
|
1812
|
my $unk = $et->Options(Unknown => 1); |
763
|
580
|
|
|
|
|
1610
|
$oldInfo = $et->GetTagInfo($tagTablePtr, $oldID); |
764
|
580
|
|
|
|
|
1792
|
$et->Options(Unknown => $unk); |
765
|
|
|
|
|
|
|
} |
766
|
|
|
|
|
|
|
# patch incorrect count in Kodak SubIFD3 tags |
767
|
4682
|
50
|
100
|
|
|
15308
|
if ($oldCount < 2 and $oldInfo and $$oldInfo{FixCount}) { |
|
|
|
66
|
|
|
|
|
768
|
0
|
0
|
|
|
|
0
|
$offList or ($offList, $offHash) = GetOffList($dataPt, $dirStart, $dataPos, |
769
|
|
|
|
|
|
|
$numEntries, $tagTablePtr); |
770
|
0
|
|
|
|
|
0
|
my $i = $$offHash{Get32u($dataPt, $valuePtr)}; |
771
|
0
|
0
|
0
|
|
|
0
|
if (defined $i and $i < $#$offList) { |
772
|
0
|
|
|
|
|
0
|
$oldCount = int(($$offList[$i+1] - $$offList[$i]) / $formatSize[$oldFormat]); |
773
|
0
|
0
|
0
|
|
|
0
|
$fixCount = ($fixCount || 0) + 1 if $oldCount != $readCount; |
774
|
|
|
|
|
|
|
} |
775
|
|
|
|
|
|
|
} |
776
|
4682
|
|
|
|
|
6666
|
$oldSize = $oldCount * $formatSize[$oldFormat]; |
777
|
4682
|
|
|
|
|
5606
|
my $readFromFile; |
778
|
4682
|
100
|
|
|
|
7632
|
if ($oldSize > 4) { |
779
|
2127
|
|
|
|
|
3990
|
$valuePtr = Get32u($dataPt, $valuePtr); |
780
|
|
|
|
|
|
|
# fix valuePtr if necessary |
781
|
2127
|
50
|
|
|
|
4511
|
if ($$dirInfo{FixOffsets}) { |
782
|
0
|
0
|
|
|
|
0
|
$valEnd or $valEnd = $dataPos + $dirStart + 2 + 12 * $numEntries + 4; |
783
|
0
|
|
|
|
|
0
|
my ($tagID, $size, $wFlag) = ($oldID, $oldSize, 1); |
784
|
|
|
|
|
|
|
#### eval FixOffsets ($valuePtr, $valEnd, $size, $tagID, $wFlag) |
785
|
0
|
|
|
|
|
0
|
eval $$dirInfo{FixOffsets}; |
786
|
0
|
0
|
|
|
|
0
|
unless (defined $valuePtr) { |
787
|
0
|
0
|
|
|
|
0
|
unless ($$et{DropTags}) { |
788
|
0
|
0
|
|
|
|
0
|
my $tagStr = $oldInfo ? $$oldInfo{Name} : sprintf("tag 0x%.4x",$oldID); |
789
|
0
|
0
|
|
|
|
0
|
return undef if $et->Error("Bad $name offset for $tagStr", $inMakerNotes); |
790
|
|
|
|
|
|
|
} |
791
|
0
|
|
|
|
|
0
|
++$index; $oldID = $newID; next; # drop this tag |
|
0
|
|
|
|
|
0
|
|
|
0
|
|
|
|
|
0
|
|
792
|
|
|
|
|
|
|
} |
793
|
|
|
|
|
|
|
} |
794
|
|
|
|
|
|
|
# offset shouldn't point into TIFF or IFD header |
795
|
2127
|
|
|
|
|
3203
|
my $suspect = ($valuePtr < 8); |
796
|
|
|
|
|
|
|
# convert offset to pointer in $$dataPt |
797
|
2127
|
100
|
66
|
|
|
9468
|
if ($$dirInfo{EntryBased} or (ref $$tagTablePtr{$oldID} eq 'HASH' and |
|
|
|
66
|
|
|
|
|
798
|
|
|
|
|
|
|
$$tagTablePtr{$oldID}{EntryBased})) |
799
|
|
|
|
|
|
|
{ |
800
|
5
|
|
|
|
|
6
|
$valuePtr += $entry; |
801
|
|
|
|
|
|
|
} else { |
802
|
2122
|
|
|
|
|
3166
|
$valuePtr -= $dataPos; |
803
|
|
|
|
|
|
|
} |
804
|
|
|
|
|
|
|
# value shouldn't overlap our directory |
805
|
2127
|
50
|
66
|
|
|
4345
|
$suspect = 1 if $valuePtr < $dirEnd and $valuePtr+$oldSize > $dirStart; |
806
|
|
|
|
|
|
|
# get value by seeking in file if we are allowed |
807
|
2127
|
100
|
100
|
|
|
6293
|
if ($valuePtr < 0 or $valuePtr+$oldSize > $dataLen) { |
808
|
226
|
|
|
|
|
390
|
my ($pos, $tagStr, $invalidPreview, $tmpInfo, $leicaTrailer); |
809
|
226
|
100
|
|
|
|
432
|
if ($oldInfo) { |
|
|
50
|
|
|
|
|
|
810
|
218
|
|
|
|
|
470
|
$tagStr = $$oldInfo{Name}; |
811
|
218
|
|
|
|
|
326
|
$leicaTrailer = $$oldInfo{LeicaTrailer}; |
812
|
|
|
|
|
|
|
} elsif (defined $oldInfo) { |
813
|
8
|
|
|
|
|
42
|
$tmpInfo = $et->GetTagInfo($tagTablePtr, $oldID, \ '', $oldFormName, $oldCount); |
814
|
8
|
50
|
|
|
|
35
|
if ($tmpInfo) { |
815
|
8
|
|
|
|
|
20
|
$tagStr = $$tmpInfo{Name}; |
816
|
8
|
|
|
|
|
24
|
$leicaTrailer = $$tmpInfo{LeicaTrailer}; |
817
|
|
|
|
|
|
|
} |
818
|
|
|
|
|
|
|
} |
819
|
226
|
50
|
|
|
|
450
|
$tagStr or $tagStr = sprintf("tag 0x%.4x",$oldID); |
820
|
|
|
|
|
|
|
# allow PreviewImage to run outside EXIF segment in JPEG images |
821
|
226
|
50
|
|
|
|
461
|
if (not $raf) { |
822
|
0
|
0
|
|
|
|
0
|
if ($tagStr eq 'PreviewImage') { |
|
|
0
|
|
|
|
|
|
823
|
0
|
|
|
|
|
0
|
$raf = $$et{RAF}; |
824
|
0
|
0
|
|
|
|
0
|
if ($raf) { |
825
|
0
|
|
|
|
|
0
|
$pos = $raf->Tell(); |
826
|
0
|
0
|
0
|
|
|
0
|
if ($oldInfo and $$oldInfo{ChangeBase}) { |
827
|
|
|
|
|
|
|
# adjust base offset for this tag only |
828
|
|
|
|
|
|
|
#### eval ChangeBase ($dirStart,$dataPos) |
829
|
0
|
|
|
|
|
0
|
my $newBase = eval $$oldInfo{ChangeBase}; |
830
|
0
|
|
|
|
|
0
|
$valuePtr += $newBase; |
831
|
|
|
|
|
|
|
} |
832
|
|
|
|
|
|
|
} else { |
833
|
0
|
|
|
|
|
0
|
$invalidPreview = 1; |
834
|
|
|
|
|
|
|
} |
835
|
|
|
|
|
|
|
} elsif ($leicaTrailer) { |
836
|
|
|
|
|
|
|
# save information about Leica makernote trailer |
837
|
|
|
|
|
|
|
$$et{LeicaTrailer} = { |
838
|
0
|
|
0
|
|
|
0
|
TagInfo => $oldInfo || $tmpInfo, |
839
|
|
|
|
|
|
|
Offset => $base + $valuePtr + $dataPos, |
840
|
|
|
|
|
|
|
Size => $oldSize, |
841
|
|
|
|
|
|
|
Fixup => new Image::ExifTool::Fixup, |
842
|
|
|
|
|
|
|
}, |
843
|
|
|
|
|
|
|
$invalidPreview = 2; |
844
|
|
|
|
|
|
|
# remove SubDirectory to prevent processing (for now) |
845
|
0
|
0
|
|
|
|
0
|
my %copy = %{$oldInfo || $tmpInfo}; |
|
0
|
|
|
|
|
0
|
|
846
|
0
|
|
|
|
|
0
|
delete $copy{SubDirectory}; |
847
|
0
|
|
|
|
|
0
|
delete $copy{MakerNotes}; |
848
|
0
|
|
|
|
|
0
|
$oldInfo = \%copy; |
849
|
|
|
|
|
|
|
} |
850
|
|
|
|
|
|
|
} |
851
|
226
|
50
|
33
|
|
|
601
|
if ($oldSize > BINARY_DATA_LIMIT and $$origDirInfo{ImageData} and |
|
|
50
|
0
|
|
|
|
|
|
|
0
|
0
|
|
|
|
|
852
|
|
|
|
|
|
|
(not defined $oldInfo or ($oldInfo and |
853
|
|
|
|
|
|
|
(not $$oldInfo{SubDirectory} or $$oldInfo{ReadFromRAF})))) |
854
|
|
|
|
|
|
|
{ |
855
|
|
|
|
|
|
|
# copy huge data blocks later instead of loading into memory |
856
|
0
|
|
|
|
|
0
|
$oldValue = ''; # dummy empty value |
857
|
|
|
|
|
|
|
# copy this value later unless writing a new value |
858
|
0
|
0
|
|
|
|
0
|
unless (defined $set{$oldID}) { |
859
|
0
|
0
|
|
|
|
0
|
my $pad = $oldSize & 0x01 ? 1 : 0; |
860
|
|
|
|
|
|
|
# save block information to copy later (set directory offset later) |
861
|
0
|
|
|
|
|
0
|
$oldImageData = [$base+$valuePtr+$dataPos, $oldSize, $pad]; |
862
|
|
|
|
|
|
|
} |
863
|
|
|
|
|
|
|
} elsif ($raf) { |
864
|
226
|
|
33
|
|
|
757
|
my $success = ($raf->Seek($base+$valuePtr+$dataPos, 0) and |
865
|
|
|
|
|
|
|
$raf->Read($oldValue, $oldSize) == $oldSize); |
866
|
226
|
50
|
|
|
|
692
|
if (defined $pos) { |
867
|
0
|
|
|
|
|
0
|
$raf->Seek($pos, 0); |
868
|
0
|
|
|
|
|
0
|
undef $raf; |
869
|
|
|
|
|
|
|
# (sony A700 has 32-byte header on PreviewImage) |
870
|
0
|
0
|
0
|
|
|
0
|
unless ($success and $oldValue =~ /^(\xff\xd8\xff|(.|.{33})\xd8\xff\xdb)/s) { |
871
|
0
|
|
|
|
|
0
|
$invalidPreview = 1; |
872
|
0
|
|
|
|
|
0
|
$success = 1; # continue writing directory anyway |
873
|
|
|
|
|
|
|
} |
874
|
|
|
|
|
|
|
} |
875
|
226
|
50
|
|
|
|
463
|
unless ($success) { |
876
|
0
|
0
|
|
|
|
0
|
return undef if $et->Error("Error reading value for $name entry $index", $inMakerNotes); |
877
|
0
|
|
|
|
|
0
|
++$index; $oldID = $newID; next; # drop this tag |
|
0
|
|
|
|
|
0
|
|
|
0
|
|
|
|
|
0
|
|
878
|
|
|
|
|
|
|
} |
879
|
|
|
|
|
|
|
} elsif (not $invalidPreview) { |
880
|
0
|
0
|
|
|
|
0
|
return undef if $et->Error("Bad $name offset for $tagStr", $inMakerNotes); |
881
|
0
|
|
|
|
|
0
|
++$index; $oldID = $newID; next; # drop this tag |
|
0
|
|
|
|
|
0
|
|
|
0
|
|
|
|
|
0
|
|
882
|
|
|
|
|
|
|
} |
883
|
226
|
50
|
|
|
|
437
|
if ($invalidPreview) { |
884
|
|
|
|
|
|
|
# set value for invalid preview |
885
|
0
|
0
|
|
|
|
0
|
if ($$et{FILE_TYPE} eq 'JPEG') { |
886
|
|
|
|
|
|
|
# define dummy value for preview (or Leica MakerNote) to write later |
887
|
|
|
|
|
|
|
# (value must be larger than 4 bytes to generate PREVIEW_INFO, |
888
|
|
|
|
|
|
|
# and an even number of bytes so it won't be padded) |
889
|
0
|
|
|
|
|
0
|
$oldValue = 'LOAD_PREVIEW'; |
890
|
|
|
|
|
|
|
} else { |
891
|
0
|
|
|
|
|
0
|
$oldValue = 'none'; |
892
|
0
|
|
|
|
|
0
|
$oldSize = length $oldValue; |
893
|
|
|
|
|
|
|
} |
894
|
0
|
|
|
|
|
0
|
$valuePtr = 0; |
895
|
|
|
|
|
|
|
} else { |
896
|
226
|
|
|
|
|
600
|
UpdateTiffEnd($et, $base+$valuePtr+$dataPos+$oldSize); |
897
|
|
|
|
|
|
|
} |
898
|
|
|
|
|
|
|
# update pointers for value just read from file |
899
|
226
|
|
|
|
|
385
|
$valueDataPt = \$oldValue; |
900
|
226
|
|
|
|
|
344
|
$valueDataPos = $valuePtr + $dataPos; |
901
|
226
|
|
|
|
|
333
|
$valueDataLen = $oldSize; |
902
|
226
|
|
|
|
|
314
|
$valuePtr = 0; |
903
|
226
|
|
|
|
|
340
|
$readFromFile = 1; |
904
|
|
|
|
|
|
|
} |
905
|
2127
|
100
|
|
|
|
4205
|
if ($suspect) { |
906
|
2
|
50
|
|
|
|
5
|
my $tagStr = $oldInfo ? $$oldInfo{Name} : sprintf('tag 0x%.4x', $oldID); |
907
|
2
|
|
|
|
|
5
|
my $str = "Suspicious $name offset for $tagStr"; |
908
|
2
|
50
|
|
|
|
5
|
if ($inMakerNotes) { |
909
|
2
|
|
|
|
|
6
|
$et->Warn($str, 1); |
910
|
|
|
|
|
|
|
} else { |
911
|
0
|
0
|
|
|
|
0
|
return undef if $et->Error($str, 1); |
912
|
|
|
|
|
|
|
} |
913
|
|
|
|
|
|
|
} |
914
|
|
|
|
|
|
|
} |
915
|
|
|
|
|
|
|
# read value if we haven't already |
916
|
4682
|
100
|
|
|
|
11302
|
$oldValue = substr($$valueDataPt, $valuePtr, $oldSize) unless $readFromFile; |
917
|
|
|
|
|
|
|
# get tagInfo using value if necessary |
918
|
4682
|
100
|
66
|
|
|
13329
|
if (defined $oldInfo and not $oldInfo) { |
919
|
160
|
|
|
|
|
463
|
my $unk = $et->Options(Unknown => 1); |
920
|
160
|
|
|
|
|
471
|
$oldInfo = $et->GetTagInfo($tagTablePtr, $oldID, \$oldValue, $oldFormName, $oldCount); |
921
|
160
|
|
|
|
|
769
|
$et->Options(Unknown => $unk); |
922
|
|
|
|
|
|
|
# now that we have the value, we can resolve the Condition to finally |
923
|
|
|
|
|
|
|
# determine whether we want to delete this tag or not |
924
|
160
|
0
|
33
|
|
|
595
|
if ($mayDelete{$oldID} and $oldInfo and (not @newTags or $newTags[0] != $oldID)) { |
|
|
|
0
|
|
|
|
|
|
|
|
33
|
|
|
|
|
925
|
0
|
|
|
|
|
0
|
my $nvHash = $et->GetNewValueHash($oldInfo, $dirName); |
926
|
0
|
0
|
0
|
|
|
0
|
if (not $nvHash and $wrongDir) { |
927
|
|
|
|
|
|
|
# delete from wrong directory if necessary |
928
|
0
|
|
|
|
|
0
|
$nvHash = $et->GetNewValueHash($oldInfo, $wrongDir); |
929
|
0
|
0
|
|
|
|
0
|
$nvHash and $xDelete{$oldID} = 1; |
930
|
|
|
|
|
|
|
} |
931
|
0
|
0
|
|
|
|
0
|
if ($nvHash) { |
932
|
|
|
|
|
|
|
# we want to delete this tag after all, so insert it into our list |
933
|
0
|
|
|
|
|
0
|
$set{$oldID} = $oldInfo; |
934
|
0
|
|
|
|
|
0
|
unshift @newTags, $oldID; |
935
|
|
|
|
|
|
|
} |
936
|
|
|
|
|
|
|
} |
937
|
|
|
|
|
|
|
} |
938
|
|
|
|
|
|
|
# make sure we are handling the 'ifd' format properly |
939
|
4682
|
50
|
66
|
|
|
13343
|
if (($oldFormat == 13 or $oldFormat == 18) and |
|
|
|
33
|
|
|
|
|
|
|
|
66
|
|
|
|
|
940
|
|
|
|
|
|
|
(not $oldInfo or not $$oldInfo{SubIFD})) |
941
|
|
|
|
|
|
|
{ |
942
|
0
|
|
|
|
|
0
|
my $str = sprintf('%s tag 0x%.4x IFD format not handled', $name, $oldID); |
943
|
0
|
|
|
|
|
0
|
$et->Error($str, $inMakerNotes); |
944
|
|
|
|
|
|
|
} |
945
|
|
|
|
|
|
|
# override format we use to read the value if specified |
946
|
4682
|
50
|
|
|
|
7824
|
if ($oldInfo) { |
947
|
|
|
|
|
|
|
# check for tags which must be integers |
948
|
4682
|
50
|
100
|
|
|
15469
|
if (($$oldInfo{IsOffset} or $$oldInfo{SubIFD}) and |
|
|
|
66
|
|
|
|
|
949
|
|
|
|
|
|
|
not $intFormat{$oldFormName}) |
950
|
|
|
|
|
|
|
{ |
951
|
0
|
|
|
|
|
0
|
$et->Error("Invalid format ($oldFormName) for $name $$oldInfo{Name}", $inMakerNotes); |
952
|
0
|
|
|
|
|
0
|
++$index; $oldID = $newID; next; # drop this tag |
|
0
|
|
|
|
|
0
|
|
|
0
|
|
|
|
|
0
|
|
953
|
|
|
|
|
|
|
} |
954
|
4682
|
50
|
100
|
|
|
8443
|
if ($$oldInfo{Drop} and $$et{DropTags} and |
|
|
|
33
|
|
|
|
|
|
|
|
66
|
|
|
|
|
955
|
|
|
|
|
|
|
($$oldInfo{Drop} == 1 or $$oldInfo{Drop} < $oldSize)) |
956
|
|
|
|
|
|
|
{ |
957
|
4
|
|
|
|
|
7
|
++$index; $oldID = $newID; next; # drop this tag |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
8
|
|
958
|
|
|
|
|
|
|
} |
959
|
4678
|
100
|
|
|
|
8218
|
if ($$oldInfo{Format}) { |
960
|
289
|
|
|
|
|
568
|
$readFormName = $$oldInfo{Format}; |
961
|
289
|
|
|
|
|
638
|
$readFormat = $formatNumber{$readFormName}; |
962
|
289
|
50
|
|
|
|
633
|
unless ($readFormat) { |
963
|
|
|
|
|
|
|
# we aren't reading in a standard EXIF format, so rewrite in old format |
964
|
0
|
|
|
|
|
0
|
$readFormName = $oldFormName; |
965
|
0
|
|
|
|
|
0
|
$readFormat = $oldFormat; |
966
|
|
|
|
|
|
|
} |
967
|
289
|
50
|
|
|
|
714
|
if ($$oldInfo{FixedSize}) { |
968
|
0
|
0
|
|
|
|
0
|
$oldSize = $$oldInfo{FixedSize} if $$oldInfo{FixedSize}; |
969
|
0
|
|
|
|
|
0
|
$oldValue = substr($$valueDataPt, $valuePtr, $oldSize); |
970
|
|
|
|
|
|
|
} |
971
|
|
|
|
|
|
|
# adjust number of items to read if format size changed |
972
|
289
|
|
|
|
|
610
|
$readCount = $oldSize / $formatSize[$readFormat]; |
973
|
|
|
|
|
|
|
} |
974
|
|
|
|
|
|
|
} |
975
|
4678
|
50
|
66
|
|
|
8925
|
if ($oldID <= $lastTagID and not $inMakerNotes) { |
976
|
0
|
0
|
|
|
|
0
|
my $str = $oldInfo ? "$$oldInfo{Name} tag" : sprintf('tag 0x%x',$oldID); |
977
|
0
|
0
|
|
|
|
0
|
if ($oldID == $lastTagID) { |
978
|
0
|
|
|
|
|
0
|
$et->Warn("Duplicate $str in $name"); |
979
|
|
|
|
|
|
|
# put this tag back into the newTags list if necessary |
980
|
0
|
0
|
|
|
|
0
|
unshift @newTags, $oldID if defined $set{$oldID}; |
981
|
|
|
|
|
|
|
} else { |
982
|
0
|
|
|
|
|
0
|
$et->Warn("\u$str out of sequence in $name"); |
983
|
|
|
|
|
|
|
} |
984
|
|
|
|
|
|
|
} |
985
|
4678
|
|
|
|
|
5892
|
$lastTagID = $oldID; |
986
|
4678
|
|
|
|
|
6050
|
++$index; # increment index for next time |
987
|
|
|
|
|
|
|
} else { |
988
|
372
|
|
|
|
|
766
|
undef $oldID; # no more existing entries |
989
|
|
|
|
|
|
|
} |
990
|
|
|
|
|
|
|
} |
991
|
|
|
|
|
|
|
# |
992
|
|
|
|
|
|
|
# write out all new tags, up to and including this one |
993
|
|
|
|
|
|
|
# |
994
|
7034
|
|
|
|
|
9281
|
$newID = $newTags[0]; |
995
|
7034
|
|
|
|
|
7982
|
my $isNew; # -1=tag is old, 0=tag same as existing, 1=tag is new |
996
|
7034
|
100
|
|
|
|
12348
|
if (not defined $oldID) { |
|
|
100
|
|
|
|
|
|
997
|
2197
|
100
|
|
|
|
4176
|
last unless defined $newID; |
998
|
1825
|
|
|
|
|
2196
|
$isNew = 1; |
999
|
|
|
|
|
|
|
} elsif (not defined $newID) { |
1000
|
|
|
|
|
|
|
# maker notes will have no new tags defined |
1001
|
3197
|
100
|
|
|
|
5457
|
if (defined $set{$oldID}) { |
1002
|
35
|
|
|
|
|
64
|
$newID = $oldID; |
1003
|
35
|
|
|
|
|
76
|
$isNew = 0; |
1004
|
|
|
|
|
|
|
} else { |
1005
|
3162
|
|
|
|
|
4384
|
$isNew = -1; |
1006
|
|
|
|
|
|
|
} |
1007
|
|
|
|
|
|
|
} else { |
1008
|
1640
|
|
|
|
|
2415
|
$isNew = $oldID <=> $newID; |
1009
|
|
|
|
|
|
|
} |
1010
|
6662
|
|
|
|
|
8299
|
my $newInfo = $oldInfo; |
1011
|
6662
|
|
|
|
|
8182
|
my $newFormat = $oldFormat; |
1012
|
6662
|
|
|
|
|
8048
|
my $newFormName = $oldFormName; |
1013
|
6662
|
|
|
|
|
7725
|
my $newCount = $oldCount; |
1014
|
6662
|
|
|
|
|
8632
|
my $ifdFormName; |
1015
|
|
|
|
|
|
|
my $newValue; |
1016
|
6662
|
100
|
|
|
|
10811
|
my $newValuePt = $isNew >= 0 ? \$newValue : \$oldValue; |
1017
|
6662
|
|
|
|
|
8069
|
my $isOverwriting; |
1018
|
|
|
|
|
|
|
|
1019
|
6662
|
100
|
|
|
|
10507
|
if ($isNew >= 0) { |
1020
|
|
|
|
|
|
|
# add, edit or delete this tag |
1021
|
2267
|
|
|
|
|
2886
|
shift @newTags; # remove from list |
1022
|
2267
|
|
|
|
|
3548
|
my $curInfo = $set{$newID}; |
1023
|
2267
|
100
|
100
|
|
|
4142
|
unless ($curInfo or $$addDirs{$newID}) { |
1024
|
|
|
|
|
|
|
# we can finally get the specific tagInfo reference for this tag |
1025
|
|
|
|
|
|
|
# (because we can now evaluate the Condition statement since all |
1026
|
|
|
|
|
|
|
# DataMember's have been obtained for tags up to this one) |
1027
|
110
|
|
|
|
|
350
|
$curInfo = $et->GetTagInfo($tagTablePtr, $newID); |
1028
|
110
|
100
|
66
|
|
|
546
|
if (defined $curInfo and not $curInfo) { |
1029
|
|
|
|
|
|
|
# need value to evaluate the condition |
1030
|
|
|
|
|
|
|
# (tricky because we need the tagInfo ref to get the value, |
1031
|
|
|
|
|
|
|
# so we must loop through all new tagInfo's...) |
1032
|
24
|
|
|
|
|
58
|
foreach $tagInfo (@newTagInfo) { |
1033
|
455
|
100
|
|
|
|
802
|
next unless $$tagInfo{TagID} == $newID; |
1034
|
25
|
|
|
|
|
108
|
my $val = $et->GetNewValue($tagInfo); |
1035
|
25
|
50
|
|
|
|
71
|
defined $val or $mayDelete{$newID} = 1, next; |
1036
|
|
|
|
|
|
|
# must convert to binary for evaluating in Condition |
1037
|
25
|
|
100
|
|
|
84
|
my $fmt = $$tagInfo{Format} || $$tagInfo{Writable}; |
1038
|
25
|
100
|
|
|
|
63
|
if ($fmt) { |
1039
|
24
|
|
|
|
|
115
|
$val = WriteValue($val, $fmt, $$tagInfo{Count}); |
1040
|
24
|
50
|
|
|
|
85
|
defined $val or $mayDelete{$newID} = 1, next; |
1041
|
|
|
|
|
|
|
} |
1042
|
25
|
|
|
|
|
87
|
$curInfo = $et->GetTagInfo($tagTablePtr, $newID, \$val, $oldFormName, $oldCount); |
1043
|
25
|
50
|
|
|
|
73
|
if ($curInfo) { |
1044
|
25
|
100
|
|
|
|
96
|
last if $curInfo eq $tagInfo; |
1045
|
4
|
|
|
|
|
12
|
undef $curInfo; |
1046
|
|
|
|
|
|
|
} |
1047
|
|
|
|
|
|
|
} |
1048
|
|
|
|
|
|
|
# may want to delete this, but we need to see the old value first |
1049
|
24
|
100
|
|
|
|
74
|
$mayDelete{$newID} = 1 unless $curInfo; |
1050
|
|
|
|
|
|
|
} |
1051
|
|
|
|
|
|
|
# don't set this tag unless valid for the current condition |
1052
|
110
|
100
|
100
|
|
|
533
|
if ($curInfo and $$et{NEW_VALUE}{$curInfo}) { |
1053
|
83
|
|
|
|
|
192
|
$set{$newID} = $curInfo; |
1054
|
|
|
|
|
|
|
} else { |
1055
|
27
|
100
|
|
|
|
87
|
next if $isNew > 0; |
1056
|
1
|
|
|
|
|
5
|
$isNew = -1; |
1057
|
1
|
|
|
|
|
2
|
undef $curInfo; |
1058
|
|
|
|
|
|
|
} |
1059
|
|
|
|
|
|
|
} |
1060
|
2241
|
100
|
|
|
|
3557
|
if ($curInfo) { |
|
|
100
|
|
|
|
|
|
1061
|
2172
|
100
|
|
|
|
4498
|
if ($$curInfo{WriteCondition}) { |
1062
|
6
|
|
|
|
|
14
|
my $self = $et; # set $self to be used in eval |
1063
|
|
|
|
|
|
|
#### eval WriteCondition ($self) |
1064
|
6
|
50
|
|
|
|
447
|
unless (eval $$curInfo{WriteCondition}) { |
1065
|
0
|
0
|
|
|
|
0
|
$@ and warn $@; |
1066
|
0
|
|
|
|
|
0
|
goto NoWrite; # GOTO ! |
1067
|
|
|
|
|
|
|
} |
1068
|
|
|
|
|
|
|
} |
1069
|
2172
|
|
|
|
|
2616
|
my $nvHash; |
1070
|
2172
|
50
|
|
|
|
6346
|
$nvHash = $et->GetNewValueHash($curInfo, $dirName) if $isNew >= 0; |
1071
|
2172
|
100
|
100
|
|
|
5933
|
unless ($nvHash or defined $$mandatory{$newID}) { |
1072
|
1097
|
100
|
|
|
|
3139
|
goto NoWrite unless $wrongDir; # GOTO ! |
1073
|
|
|
|
|
|
|
# delete stuff from the wrong directory if setting somewhere else |
1074
|
662
|
|
|
|
|
1353
|
$nvHash = $et->GetNewValueHash($curInfo, $wrongDir); |
1075
|
|
|
|
|
|
|
# don't cross delete if not overwriting |
1076
|
662
|
100
|
|
|
|
1412
|
goto NoWrite unless $et->IsOverwriting($nvHash); # GOTO ! |
1077
|
|
|
|
|
|
|
# don't cross delete if specifically deleting from the other directory |
1078
|
|
|
|
|
|
|
# (Note: don't call GetValue() here because it shouldn't be called |
1079
|
|
|
|
|
|
|
# if IsOverwriting returns < 0 -- eg. when shifting) |
1080
|
634
|
100
|
100
|
|
|
1812
|
if (not defined $$nvHash{Value} and $$nvHash{WantGroup} and |
|
|
|
100
|
|
|
|
|
1081
|
|
|
|
|
|
|
lc($$nvHash{WantGroup}) eq lc($wrongDir)) |
1082
|
|
|
|
|
|
|
{ |
1083
|
2
|
|
|
|
|
19
|
goto NoWrite; # GOTO ! |
1084
|
|
|
|
|
|
|
} else { |
1085
|
|
|
|
|
|
|
# remove this tag if found in this IFD |
1086
|
632
|
|
|
|
|
1136
|
$xDelete{$newID} = 1; |
1087
|
|
|
|
|
|
|
} |
1088
|
|
|
|
|
|
|
} |
1089
|
|
|
|
|
|
|
} elsif (not $$addDirs{$newID}) { |
1090
|
466
|
100
|
|
|
|
1011
|
NoWrite: next if $isNew > 0; |
1091
|
3
|
|
|
|
|
8
|
delete $set{$newID}; |
1092
|
3
|
|
|
|
|
9
|
$isNew = -1; |
1093
|
|
|
|
|
|
|
} |
1094
|
1778
|
100
|
66
|
|
|
3500
|
if ($set{$newID}) { |
|
|
100
|
33
|
|
|
|
|
|
|
100
|
66
|
|
|
|
|
|
|
50
|
|
|
|
|
|
1095
|
|
|
|
|
|
|
# |
1096
|
|
|
|
|
|
|
# set the new tag value (or 'next' if deleting tag) |
1097
|
|
|
|
|
|
|
# |
1098
|
1707
|
|
|
|
|
2347
|
$newInfo = $set{$newID}; |
1099
|
1707
|
|
|
|
|
2425
|
$newCount = $$newInfo{Count}; |
1100
|
1707
|
|
|
|
|
2212
|
my ($val, $newVal, $n); |
1101
|
1707
|
|
|
|
|
3278
|
my $nvHash = $et->GetNewValueHash($newInfo, $dirName); |
1102
|
1707
|
100
|
66
|
|
|
3482
|
if ($isNew > 0) { |
|
|
100
|
|
|
|
|
|
1103
|
|
|
|
|
|
|
# don't create new entry unless requested |
1104
|
1457
|
100
|
|
|
|
2283
|
if ($nvHash) { |
1105
|
599
|
100
|
|
|
|
1340
|
next unless $$nvHash{IsCreating}; |
1106
|
516
|
100
|
|
|
|
1007
|
if ($$newInfo{IsOverwriting}) { |
1107
|
1
|
|
|
|
|
4
|
my $proc = $$newInfo{IsOverwriting}; |
1108
|
1
|
|
|
|
|
10
|
$isOverwriting = &$proc($et, $nvHash, $val, \$newVal); |
1109
|
|
|
|
|
|
|
} else { |
1110
|
515
|
|
|
|
|
1232
|
$isOverwriting = $et->IsOverwriting($nvHash); |
1111
|
|
|
|
|
|
|
} |
1112
|
|
|
|
|
|
|
} else { |
1113
|
858
|
100
|
|
|
|
1957
|
next if $xDelete{$newID}; # don't create if cross deleting |
1114
|
229
|
|
|
|
|
402
|
$newVal = $$mandatory{$newID}; # get value for mandatory tag |
1115
|
229
|
|
|
|
|
317
|
$isOverwriting = 1; |
1116
|
|
|
|
|
|
|
} |
1117
|
|
|
|
|
|
|
# convert using new format |
1118
|
745
|
100
|
|
|
|
1556
|
if ($$newInfo{Format}) { |
1119
|
68
|
|
|
|
|
155
|
$newFormName = $$newInfo{Format}; |
1120
|
|
|
|
|
|
|
# use Writable flag to specify IFD format code |
1121
|
68
|
|
|
|
|
149
|
$ifdFormName = $$newInfo{Writable}; |
1122
|
|
|
|
|
|
|
} else { |
1123
|
677
|
|
|
|
|
1217
|
$newFormName = $$newInfo{Writable}; |
1124
|
677
|
50
|
|
|
|
1185
|
unless ($newFormName) { |
1125
|
0
|
|
|
|
|
0
|
warn("No format for $name $$newInfo{Name}\n"); |
1126
|
0
|
|
|
|
|
0
|
next; |
1127
|
|
|
|
|
|
|
} |
1128
|
|
|
|
|
|
|
} |
1129
|
745
|
|
|
|
|
1327
|
$newFormat = $formatNumber{$newFormName}; |
1130
|
|
|
|
|
|
|
} elsif ($nvHash or $xDelete{$newID}) { |
1131
|
241
|
100
|
|
|
|
490
|
unless ($nvHash) { |
1132
|
3
|
|
|
|
|
18
|
$nvHash = $et->GetNewValueHash($newInfo, $wrongDir); |
1133
|
|
|
|
|
|
|
} |
1134
|
|
|
|
|
|
|
# read value |
1135
|
241
|
50
|
|
|
|
506
|
if (length $oldValue >= $oldSize) { |
1136
|
241
|
|
|
|
|
665
|
$val = ReadValue(\$oldValue, 0, $readFormName, $readCount, $oldSize); |
1137
|
|
|
|
|
|
|
} else { |
1138
|
0
|
|
|
|
|
0
|
$val = ''; |
1139
|
|
|
|
|
|
|
} |
1140
|
|
|
|
|
|
|
# determine write format (by default, use 'Writable' format) |
1141
|
241
|
|
|
|
|
531
|
my $writable = $$newInfo{Writable}; |
1142
|
|
|
|
|
|
|
# (or use existing format if 'Writable' not specified) |
1143
|
241
|
100
|
66
|
|
|
887
|
$writable = $oldFormName unless $writable and $writable ne '1'; |
1144
|
|
|
|
|
|
|
# (and override write format with 'Format' if specified) |
1145
|
241
|
|
66
|
|
|
694
|
my $writeForm = $$newInfo{Format} || $writable; |
1146
|
241
|
100
|
|
|
|
531
|
if ($writeForm ne $newFormName) { |
1147
|
|
|
|
|
|
|
# write in specified format |
1148
|
8
|
|
|
|
|
20
|
$newFormName = $writeForm; |
1149
|
8
|
|
|
|
|
21
|
$newFormat = $formatNumber{$newFormName}; |
1150
|
|
|
|
|
|
|
# use different IFD format code if necessary |
1151
|
8
|
100
|
|
|
|
33
|
if ($inMakerNotes) { |
|
|
100
|
|
|
|
|
|
1152
|
|
|
|
|
|
|
# always preserve IFD format in maker notes |
1153
|
2
|
|
|
|
|
5
|
$ifdFormName = $oldFormName; |
1154
|
|
|
|
|
|
|
} elsif ($writable ne $newFormName) { |
1155
|
|
|
|
|
|
|
# use specified IFD format |
1156
|
2
|
|
|
|
|
4
|
$ifdFormName = $writable; |
1157
|
|
|
|
|
|
|
} |
1158
|
|
|
|
|
|
|
} |
1159
|
241
|
100
|
100
|
|
|
667
|
if ($inMakerNotes and $readFormName ne 'string' and $readFormName ne 'undef') { |
|
|
|
66
|
|
|
|
|
1160
|
|
|
|
|
|
|
# keep same size in maker notes unless string or binary |
1161
|
26
|
|
|
|
|
71
|
$newCount = $oldCount * $formatSize[$oldFormat] / $formatSize[$newFormat]; |
1162
|
|
|
|
|
|
|
} |
1163
|
241
|
100
|
|
|
|
467
|
if ($$newInfo{IsOverwriting}) { |
1164
|
1
|
|
|
|
|
3
|
my $proc = $$newInfo{IsOverwriting}; |
1165
|
1
|
|
|
|
|
16
|
$isOverwriting = &$proc($et, $nvHash, $val, \$newVal); |
1166
|
|
|
|
|
|
|
} else { |
1167
|
240
|
|
|
|
|
707
|
$isOverwriting = $et->IsOverwriting($nvHash, $val); |
1168
|
|
|
|
|
|
|
} |
1169
|
|
|
|
|
|
|
} |
1170
|
995
|
100
|
|
|
|
1660
|
if ($isOverwriting) { |
1171
|
980
|
100
|
|
|
|
2704
|
$newVal = $et->GetNewValue($nvHash) unless defined $newVal; |
1172
|
|
|
|
|
|
|
# value undefined if deleting this tag |
1173
|
|
|
|
|
|
|
# (also delete tag if cross-deleting and this isn't a date/time shift) |
1174
|
980
|
100
|
66
|
|
|
3191
|
if (not defined $newVal or ($xDelete{$newID} and not defined $$nvHash{Shift})) { |
|
|
|
100
|
|
|
|
|
1175
|
22
|
50
|
66
|
|
|
103
|
if (not defined $newVal and $$newInfo{RawConvInv} and defined $$nvHash{Value}) { |
|
|
|
33
|
|
|
|
|
1176
|
|
|
|
|
|
|
# error in RawConvInv, so rewrite existing tag |
1177
|
0
|
|
|
|
|
0
|
goto NoOverwrite; # GOTO! |
1178
|
|
|
|
|
|
|
} |
1179
|
22
|
50
|
|
|
|
52
|
unless ($isNew) { |
1180
|
22
|
|
|
|
|
40
|
++$$et{CHANGED}; |
1181
|
22
|
|
|
|
|
101
|
$et->VerboseValue("- $dirName:$$newInfo{Name}", $val); |
1182
|
|
|
|
|
|
|
} |
1183
|
22
|
|
|
|
|
53
|
next; |
1184
|
|
|
|
|
|
|
} |
1185
|
958
|
100
|
100
|
|
|
2069
|
if ($newCount and $newCount < 0) { |
1186
|
|
|
|
|
|
|
# set count to number of values if variable |
1187
|
19
|
|
|
|
|
80
|
my @vals = split ' ',$newVal; |
1188
|
19
|
|
|
|
|
55
|
$newCount = @vals; |
1189
|
|
|
|
|
|
|
} |
1190
|
|
|
|
|
|
|
# convert to binary format |
1191
|
958
|
|
|
|
|
2140
|
$newValue = WriteValue($newVal, $newFormName, $newCount); |
1192
|
958
|
50
|
|
|
|
1878
|
unless (defined $newValue) { |
1193
|
0
|
|
|
|
|
0
|
$et->Warn("Invalid value for $dirName:$$newInfo{Name}"); |
1194
|
0
|
|
|
|
|
0
|
goto NoOverwrite; # GOTO! |
1195
|
|
|
|
|
|
|
} |
1196
|
958
|
50
|
|
|
|
2043
|
if (length $newValue) { |
1197
|
|
|
|
|
|
|
# limit maximum value length in JPEG images |
1198
|
|
|
|
|
|
|
# (max segment size is 65533 bytes and the min EXIF size is 96 incl an additional IFD entry) |
1199
|
958
|
50
|
66
|
|
|
3484
|
if ($$et{FILE_TYPE} eq 'JPEG' and length($newValue) > 65436 and |
|
|
|
33
|
|
|
|
|
1200
|
|
|
|
|
|
|
$$newInfo{Name} ne 'PreviewImage') |
1201
|
|
|
|
|
|
|
{ |
1202
|
0
|
0
|
|
|
|
0
|
my $name = $$newInfo{MakerNotes} ? 'MakerNotes' : $$newInfo{Name}; |
1203
|
0
|
|
|
|
|
0
|
$et->Warn("Writing large value for $name",1); |
1204
|
|
|
|
|
|
|
} |
1205
|
|
|
|
|
|
|
# re-code if necessary |
1206
|
958
|
100
|
100
|
|
|
1952
|
if ($strEnc and $newFormName eq 'string') { |
1207
|
1
|
|
|
|
|
7
|
$newValue = $et->Encode($newValue, $strEnc); |
1208
|
|
|
|
|
|
|
} |
1209
|
|
|
|
|
|
|
} else { |
1210
|
0
|
|
|
|
|
0
|
$et->Warn("Can't write zero length $$newInfo{Name} in $$tagTablePtr{GROUPS}{1}"); |
1211
|
0
|
|
|
|
|
0
|
goto NoOverwrite; # GOTO! |
1212
|
|
|
|
|
|
|
} |
1213
|
958
|
50
|
|
|
|
1780
|
if ($isNew >= 0) { |
1214
|
958
|
|
|
|
|
1883
|
$newCount = length($newValue) / $formatSize[$newFormat]; |
1215
|
958
|
|
|
|
|
1471
|
++$$et{CHANGED}; |
1216
|
958
|
100
|
|
|
|
1701
|
if (defined $allMandatory) { |
1217
|
|
|
|
|
|
|
# not all mandatory if we are writing any tag specifically |
1218
|
217
|
100
|
|
|
|
461
|
if ($nvHash) { |
1219
|
78
|
|
|
|
|
160
|
undef $allMandatory; |
1220
|
78
|
|
|
|
|
130
|
undef $deleteAll; |
1221
|
|
|
|
|
|
|
} else { |
1222
|
139
|
|
|
|
|
209
|
++$addMandatory; # count mandatory tags that we added |
1223
|
|
|
|
|
|
|
} |
1224
|
|
|
|
|
|
|
} |
1225
|
958
|
100
|
|
|
|
1850
|
if ($verbose > 1) { |
1226
|
13
|
50
|
|
|
|
27
|
$et->VerboseValue("- $dirName:$$newInfo{Name}", $val) unless $isNew; |
1227
|
13
|
50
|
33
|
|
|
29
|
if ($$newInfo{OffsetPair} and $newVal eq '4277010157') { # (0xfeedfeed) |
1228
|
0
|
|
|
|
|
0
|
print { $$et{OPTIONS}{TextOut} } " + $dirName:$$newInfo{Name} = \n"; |
|
0
|
|
|
|
|
0
|
|
1229
|
|
|
|
|
|
|
} else { |
1230
|
13
|
100
|
|
|
|
26
|
my $str = $nvHash ? '' : ' (mandatory)'; |
1231
|
13
|
|
|
|
|
52
|
$et->VerboseValue("+ $dirName:$$newInfo{Name}", $newVal, $str); |
1232
|
|
|
|
|
|
|
} |
1233
|
|
|
|
|
|
|
} |
1234
|
|
|
|
|
|
|
} |
1235
|
|
|
|
|
|
|
} else { |
1236
|
15
|
50
|
|
|
|
46
|
NoOverwrite: next if $isNew > 0; |
1237
|
15
|
|
|
|
|
28
|
$isNew = -1; # rewrite existing tag |
1238
|
|
|
|
|
|
|
} |
1239
|
|
|
|
|
|
|
# set format for EXIF IFD if different than conversion format |
1240
|
973
|
100
|
|
|
|
1903
|
if ($ifdFormName) { |
1241
|
71
|
|
|
|
|
149
|
$newFormName = $ifdFormName; |
1242
|
71
|
|
|
|
|
163
|
$newFormat = $formatNumber{$newFormName}; |
1243
|
|
|
|
|
|
|
} |
1244
|
|
|
|
|
|
|
|
1245
|
|
|
|
|
|
|
} elsif ($isNew > 0) { |
1246
|
|
|
|
|
|
|
# |
1247
|
|
|
|
|
|
|
# create new subdirectory |
1248
|
|
|
|
|
|
|
# |
1249
|
|
|
|
|
|
|
# newInfo may not be defined if we try to add a mandatory tag |
1250
|
|
|
|
|
|
|
# to a directory that doesn't support it (eg. IFD1 in RW2 images) |
1251
|
38
|
50
|
|
|
|
139
|
$newInfo = $$addDirs{$newID} or next; |
1252
|
|
|
|
|
|
|
# make sure we don't try to generate a new MakerNotes directory |
1253
|
|
|
|
|
|
|
# or a SubIFD |
1254
|
38
|
50
|
33
|
|
|
243
|
next if $$newInfo{MakerNotes} or $$newInfo{Name} eq 'SubIFD'; |
1255
|
38
|
|
|
|
|
77
|
my $subTable; |
1256
|
38
|
100
|
|
|
|
120
|
if ($$newInfo{SubDirectory}{TagTable}) { |
1257
|
13
|
|
|
|
|
55
|
$subTable = Image::ExifTool::GetTagTable($$newInfo{SubDirectory}{TagTable}); |
1258
|
|
|
|
|
|
|
} else { |
1259
|
25
|
|
|
|
|
60
|
$subTable = $tagTablePtr; |
1260
|
|
|
|
|
|
|
} |
1261
|
|
|
|
|
|
|
# create empty source directory |
1262
|
38
|
|
|
|
|
192
|
my %sourceDir = ( |
1263
|
|
|
|
|
|
|
Parent => $dirName, |
1264
|
|
|
|
|
|
|
Fixup => new Image::ExifTool::Fixup, |
1265
|
|
|
|
|
|
|
); |
1266
|
38
|
100
|
|
|
|
208
|
$sourceDir{DirName} = $$newInfo{Groups}{1} if $$newInfo{SubIFD}; |
1267
|
38
|
|
|
|
|
247
|
$newValue = $et->WriteDirectory(\%sourceDir, $subTable); |
1268
|
|
|
|
|
|
|
# only add new directory if it isn't empty |
1269
|
38
|
100
|
66
|
|
|
231
|
next unless defined $newValue and length($newValue); |
1270
|
|
|
|
|
|
|
# set the fixup start location |
1271
|
36
|
100
|
|
|
|
129
|
if ($$newInfo{SubIFD}) { |
1272
|
|
|
|
|
|
|
# subdirectory is referenced by an offset in value buffer |
1273
|
32
|
|
|
|
|
84
|
my $subdir = $newValue; |
1274
|
32
|
|
|
|
|
120
|
$newValue = Set32u(0xfeedf00d); |
1275
|
|
|
|
|
|
|
push @subdirs, { |
1276
|
|
|
|
|
|
|
DataPt => \$subdir, |
1277
|
|
|
|
|
|
|
Table => $subTable, |
1278
|
|
|
|
|
|
|
Fixup => $sourceDir{Fixup}, |
1279
|
32
|
|
|
|
|
279
|
Offset => length($dirBuff) + 8, |
1280
|
|
|
|
|
|
|
Where => 'dirBuff', |
1281
|
|
|
|
|
|
|
}; |
1282
|
32
|
|
|
|
|
81
|
$newFormName = 'int32u'; |
1283
|
32
|
|
|
|
|
124
|
$newFormat = $formatNumber{$newFormName}; |
1284
|
|
|
|
|
|
|
} else { |
1285
|
|
|
|
|
|
|
# subdirectory goes directly into value buffer |
1286
|
4
|
|
|
|
|
13
|
$sourceDir{Fixup}{Start} += length($valBuff); |
1287
|
|
|
|
|
|
|
# use Writable to set format, otherwise 'undef' |
1288
|
4
|
|
|
|
|
9
|
$newFormName = $$newInfo{Writable}; |
1289
|
4
|
50
|
33
|
|
|
25
|
unless ($newFormName and $formatNumber{$newFormName}) { |
1290
|
0
|
|
|
|
|
0
|
$newFormName = 'undef'; |
1291
|
|
|
|
|
|
|
} |
1292
|
4
|
|
|
|
|
7
|
$newFormat = $formatNumber{$newFormName}; |
1293
|
4
|
|
|
|
|
15
|
push @valFixups, $sourceDir{Fixup}; |
1294
|
|
|
|
|
|
|
} |
1295
|
|
|
|
|
|
|
} elsif ($$newInfo{Format} and $$newInfo{Writable} and $$newInfo{Writable} ne '1') { |
1296
|
|
|
|
|
|
|
# use specified write format |
1297
|
4
|
|
|
|
|
11
|
$newFormName = $$newInfo{Writable}; |
1298
|
4
|
|
|
|
|
6
|
$newFormat = $formatNumber{$newFormName}; |
1299
|
|
|
|
|
|
|
} elsif ($$addDirs{$newID} and $newInfo ne $$addDirs{$newID}) { |
1300
|
|
|
|
|
|
|
# this can happen if we are trying to add a directory that doesn't exist |
1301
|
|
|
|
|
|
|
# in this type of file (eg. try adding a SubIFD tag to an A100 image) |
1302
|
0
|
|
|
|
|
0
|
$isNew = -1; |
1303
|
|
|
|
|
|
|
} |
1304
|
|
|
|
|
|
|
} |
1305
|
5437
|
100
|
|
|
|
9324
|
if ($isNew < 0) { |
1306
|
|
|
|
|
|
|
# just rewrite existing tag |
1307
|
4413
|
|
|
|
|
5938
|
$newID = $oldID; |
1308
|
4413
|
|
|
|
|
5844
|
$newValue = $oldValue; |
1309
|
4413
|
|
|
|
|
5112
|
$newFormat = $oldFormat; # (just in case it changed) |
1310
|
4413
|
|
|
|
|
5330
|
$newFormName = $oldFormName; |
1311
|
|
|
|
|
|
|
# set offset of this entry in the directory so we can update the pointer |
1312
|
|
|
|
|
|
|
# and save block information to copy this large block later |
1313
|
4413
|
50
|
|
|
|
6906
|
if ($oldImageData) { |
1314
|
0
|
|
|
|
|
0
|
$$oldImageData[3] = $newStart + length($dirBuff) + 2; |
1315
|
0
|
|
|
|
|
0
|
push @imageData, $oldImageData; |
1316
|
0
|
|
|
|
|
0
|
$$origDirInfo{ImageData} = \@imageData; |
1317
|
|
|
|
|
|
|
} |
1318
|
|
|
|
|
|
|
} |
1319
|
5437
|
50
|
|
|
|
8621
|
if ($newInfo) { |
1320
|
|
|
|
|
|
|
# |
1321
|
|
|
|
|
|
|
# load necessary data for this tag (thumbnail image, etc) |
1322
|
|
|
|
|
|
|
# |
1323
|
5437
|
100
|
100
|
|
|
11512
|
if ($$newInfo{DataTag} and $isNew >= 0) { |
1324
|
8
|
|
|
|
|
22
|
my $dataTag = $$newInfo{DataTag}; |
1325
|
|
|
|
|
|
|
# load data for this tag |
1326
|
8
|
100
|
66
|
|
|
55
|
unless (defined $offsetData{$dataTag} or $dataTag eq 'LeicaTrailer') { |
1327
|
|
|
|
|
|
|
# prefer tag from Composite table if it exists (otherwise |
1328
|
|
|
|
|
|
|
# PreviewImage data would be taken from Extra tag) |
1329
|
4
|
|
|
|
|
35
|
my $compInfo = Image::ExifTool::GetCompositeTagInfo($dataTag); |
1330
|
4
|
|
33
|
|
|
26
|
$offsetData{$dataTag} = $et->GetNewValue($compInfo || $dataTag); |
1331
|
4
|
|
|
|
|
9
|
my $err; |
1332
|
4
|
50
|
|
|
|
19
|
if (defined $offsetData{$dataTag}) { |
1333
|
4
|
|
|
|
|
12
|
my $len = length $offsetData{$dataTag}; |
1334
|
4
|
100
|
|
|
|
16
|
if ($dataTag eq 'PreviewImage') { |
1335
|
|
|
|
|
|
|
# must set DEL_PREVIEW flag now if preview fit into IFD |
1336
|
2
|
50
|
|
|
|
9
|
$$et{DEL_PREVIEW} = 1 if $len <= 4; |
1337
|
|
|
|
|
|
|
} |
1338
|
|
|
|
|
|
|
} else { |
1339
|
0
|
|
|
|
|
0
|
$err = "$dataTag not found"; |
1340
|
|
|
|
|
|
|
} |
1341
|
4
|
50
|
|
|
|
16
|
if ($err) { |
1342
|
0
|
0
|
|
|
|
0
|
$et->Warn($err) if $$newInfo{IsOffset}; |
1343
|
0
|
|
|
|
|
0
|
delete $set{$newID}; # remove from list of tags we are setting |
1344
|
0
|
|
|
|
|
0
|
next; |
1345
|
|
|
|
|
|
|
} |
1346
|
|
|
|
|
|
|
} |
1347
|
|
|
|
|
|
|
} |
1348
|
|
|
|
|
|
|
# |
1349
|
|
|
|
|
|
|
# write maker notes |
1350
|
|
|
|
|
|
|
# |
1351
|
5437
|
100
|
100
|
|
|
23012
|
if ($$newInfo{MakerNotes}) { |
|
|
100
|
66
|
|
|
|
|
|
|
100
|
100
|
|
|
|
|
|
|
100
|
100
|
|
|
|
|
|
|
|
66
|
|
|
|
|
1352
|
|
|
|
|
|
|
# don't write new makernotes if we are deleting this group |
1353
|
43
|
50
|
33
|
|
|
201
|
if ($$et{DEL_GROUP}{MakerNotes} and |
|
|
|
66
|
|
|
|
|
1354
|
|
|
|
|
|
|
($$et{DEL_GROUP}{MakerNotes} != 2 or $isNew <= 0)) |
1355
|
|
|
|
|
|
|
{ |
1356
|
1
|
50
|
|
|
|
8
|
if ($et->IsRawType()) { |
1357
|
0
|
|
|
|
|
0
|
$et->WarnOnce("Can't delete MakerNotes from $$et{FileType}",1); |
1358
|
|
|
|
|
|
|
} else { |
1359
|
1
|
50
|
|
|
|
4
|
if ($isNew <= 0) { |
1360
|
1
|
|
|
|
|
2
|
++$$et{CHANGED}; |
1361
|
1
|
50
|
|
|
|
4
|
$verbose and print $out " Deleting MakerNotes\n"; |
1362
|
|
|
|
|
|
|
} |
1363
|
1
|
|
|
|
|
2
|
next; |
1364
|
|
|
|
|
|
|
} |
1365
|
|
|
|
|
|
|
} |
1366
|
42
|
|
|
|
|
226
|
my $saveOrder = GetByteOrder(); |
1367
|
42
|
100
|
66
|
|
|
206
|
if ($isNew >= 0 and defined $set{$newID}) { |
1368
|
|
|
|
|
|
|
# we are writing a whole new maker note block |
1369
|
|
|
|
|
|
|
# --> add fixup information if necessary |
1370
|
7
|
|
|
|
|
32
|
my $nvHash = $et->GetNewValueHash($newInfo, $dirName); |
1371
|
7
|
100
|
66
|
|
|
54
|
if ($nvHash and $$nvHash{MAKER_NOTE_FIXUP}) { |
1372
|
|
|
|
|
|
|
# must clone fixup because we will be shifting it |
1373
|
6
|
|
|
|
|
34
|
my $makerFixup = $$nvHash{MAKER_NOTE_FIXUP}->Clone(); |
1374
|
6
|
|
|
|
|
18
|
my $valLen = length($valBuff); |
1375
|
6
|
|
|
|
|
16
|
$$makerFixup{Start} += $valLen; |
1376
|
6
|
|
|
|
|
15
|
push @valFixups, $makerFixup; |
1377
|
|
|
|
|
|
|
} |
1378
|
|
|
|
|
|
|
} else { |
1379
|
|
|
|
|
|
|
# update maker notes if possible |
1380
|
|
|
|
|
|
|
my %subdirInfo = ( |
1381
|
|
|
|
|
|
|
Base => $base, |
1382
|
|
|
|
|
|
|
DataPt => $valueDataPt, |
1383
|
|
|
|
|
|
|
DataPos => $valueDataPos, |
1384
|
|
|
|
|
|
|
DataLen => $valueDataLen, |
1385
|
|
|
|
|
|
|
DirStart => $valuePtr, |
1386
|
|
|
|
|
|
|
DirLen => $oldSize, |
1387
|
|
|
|
|
|
|
DirName => 'MakerNotes', |
1388
|
|
|
|
|
|
|
Name => $$newInfo{Name}, |
1389
|
35
|
|
|
|
|
399
|
Parent => $dirName, |
1390
|
|
|
|
|
|
|
TagInfo => $newInfo, |
1391
|
|
|
|
|
|
|
RAF => $raf, |
1392
|
|
|
|
|
|
|
); |
1393
|
35
|
|
|
|
|
92
|
my ($subTable, $subdir, $loc, $writeProc, $notIFD); |
1394
|
35
|
50
|
|
|
|
117
|
if ($$newInfo{SubDirectory}) { |
1395
|
35
|
|
|
|
|
84
|
my $sub = $$newInfo{SubDirectory}; |
1396
|
35
|
100
|
|
|
|
115
|
$subdirInfo{FixBase} = 1 if $$sub{FixBase}; |
1397
|
35
|
|
|
|
|
93
|
$subdirInfo{FixOffsets} = $$sub{FixOffsets}; |
1398
|
35
|
|
|
|
|
85
|
$subdirInfo{EntryBased} = $$sub{EntryBased}; |
1399
|
35
|
100
|
|
|
|
113
|
$subdirInfo{NoFixBase} = 1 if defined $$sub{Base}; |
1400
|
35
|
|
|
|
|
85
|
$subdirInfo{AutoFix} = $$sub{AutoFix}; |
1401
|
35
|
100
|
|
|
|
184
|
SetByteOrder($$sub{ByteOrder}) if $$sub{ByteOrder}; |
1402
|
|
|
|
|
|
|
} |
1403
|
|
|
|
|
|
|
# get the proper tag table for these maker notes |
1404
|
35
|
50
|
33
|
|
|
204
|
if ($oldInfo and $$oldInfo{SubDirectory}) { |
1405
|
35
|
|
|
|
|
91
|
$subTable = $$oldInfo{SubDirectory}{TagTable}; |
1406
|
35
|
50
|
|
|
|
152
|
$subTable and $subTable = Image::ExifTool::GetTagTable($subTable); |
1407
|
35
|
|
|
|
|
86
|
$writeProc = $$oldInfo{SubDirectory}{WriteProc}; |
1408
|
35
|
|
|
|
|
78
|
$notIFD = $$oldInfo{NotIFD}; |
1409
|
|
|
|
|
|
|
} else { |
1410
|
0
|
|
|
|
|
0
|
$et->Warn('Internal problem getting maker notes tag table'); |
1411
|
|
|
|
|
|
|
} |
1412
|
35
|
50
|
66
|
|
|
181
|
$writeProc or $writeProc = $$subTable{WRITE_PROC} if $subTable; |
1413
|
35
|
50
|
|
|
|
137
|
$subTable or $subTable = $tagTablePtr; |
1414
|
35
|
50
|
66
|
|
|
364
|
if ($writeProc and |
|
|
100
|
66
|
|
|
|
|
1415
|
|
|
|
|
|
|
$writeProc eq \&Image::ExifTool::MakerNotes::WriteUnknownOrPreview and |
1416
|
|
|
|
|
|
|
$oldValue =~ /^\xff\xd8\xff/) |
1417
|
|
|
|
|
|
|
{ |
1418
|
0
|
|
|
|
|
0
|
$loc = 0; |
1419
|
|
|
|
|
|
|
} elsif (not $notIFD) { |
1420
|
|
|
|
|
|
|
# look for IFD-style maker notes |
1421
|
33
|
|
|
|
|
271
|
$loc = Image::ExifTool::MakerNotes::LocateIFD($et,\%subdirInfo); |
1422
|
|
|
|
|
|
|
} |
1423
|
35
|
100
|
66
|
|
|
133
|
if (defined $loc) { |
|
|
100
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
1424
|
|
|
|
|
|
|
# we need fixup data for this subdirectory |
1425
|
33
|
|
|
|
|
182
|
$subdirInfo{Fixup} = new Image::ExifTool::Fixup; |
1426
|
|
|
|
|
|
|
# rewrite maker notes |
1427
|
33
|
|
|
|
|
108
|
my $changed = $$et{CHANGED}; |
1428
|
33
|
|
|
|
|
313
|
$subdir = $et->WriteDirectory(\%subdirInfo, $subTable, $writeProc); |
1429
|
33
|
100
|
100
|
|
|
236
|
if ($changed == $$et{CHANGED} and $subdirInfo{Fixup}->IsEmpty()) { |
1430
|
|
|
|
|
|
|
# return original data if nothing changed and no fixups |
1431
|
1
|
|
|
|
|
4
|
undef $subdir; |
1432
|
|
|
|
|
|
|
} |
1433
|
|
|
|
|
|
|
} elsif ($$subTable{PROCESS_PROC} and |
1434
|
|
|
|
|
|
|
$$subTable{PROCESS_PROC} eq \&Image::ExifTool::ProcessBinaryData) |
1435
|
|
|
|
|
|
|
{ |
1436
|
1
|
|
|
|
|
3
|
my $sub = $$oldInfo{SubDirectory}; |
1437
|
1
|
50
|
|
|
|
4
|
if (defined $$sub{Start}) { |
1438
|
|
|
|
|
|
|
#### eval Start ($valuePtr) |
1439
|
1
|
|
|
|
|
64
|
my $start = eval $$sub{Start}; |
1440
|
1
|
|
|
|
|
5
|
$loc = $start - $valuePtr; |
1441
|
1
|
|
|
|
|
3
|
$subdirInfo{DirStart} = $start; |
1442
|
1
|
|
|
|
|
2
|
$subdirInfo{DirLen} -= $loc; |
1443
|
|
|
|
|
|
|
} else { |
1444
|
0
|
|
|
|
|
0
|
$loc = 0; |
1445
|
|
|
|
|
|
|
} |
1446
|
|
|
|
|
|
|
# rewrite maker notes |
1447
|
1
|
|
|
|
|
18
|
$subdir = $et->WriteDirectory(\%subdirInfo, $subTable); |
1448
|
|
|
|
|
|
|
} elsif ($notIFD) { |
1449
|
1
|
50
|
|
|
|
3
|
if ($writeProc) { |
1450
|
1
|
|
|
|
|
4
|
$loc = 0; |
1451
|
1
|
|
|
|
|
15
|
$subdir = $et->WriteDirectory(\%subdirInfo, $subTable); |
1452
|
|
|
|
|
|
|
} |
1453
|
|
|
|
|
|
|
} else { |
1454
|
0
|
|
|
|
|
0
|
my $msg = 'Maker notes could not be parsed'; |
1455
|
0
|
0
|
|
|
|
0
|
if ($$et{FILE_TYPE} eq 'JPEG') { |
1456
|
0
|
|
|
|
|
0
|
$et->Warn($msg, 1); |
1457
|
|
|
|
|
|
|
} else { |
1458
|
0
|
|
|
|
|
0
|
$et->Error($msg, 1); |
1459
|
|
|
|
|
|
|
} |
1460
|
|
|
|
|
|
|
} |
1461
|
35
|
100
|
|
|
|
139
|
if (defined $subdir) { |
1462
|
34
|
50
|
|
|
|
120
|
length $subdir or SetByteOrder($saveOrder), next; |
1463
|
34
|
|
|
|
|
69
|
my $valLen = length($valBuff); |
1464
|
|
|
|
|
|
|
# restore existing header and substitute the new |
1465
|
|
|
|
|
|
|
# maker notes for the old value |
1466
|
34
|
|
|
|
|
248
|
$newValue = substr($oldValue, 0, $loc) . $subdir; |
1467
|
34
|
|
|
|
|
88
|
my $makerFixup = $subdirInfo{Fixup}; |
1468
|
34
|
|
|
|
|
87
|
my $previewInfo = $$et{PREVIEW_INFO}; |
1469
|
34
|
100
|
|
|
|
162
|
if ($subdirInfo{Relative}) { |
|
|
50
|
|
|
|
|
|
1470
|
|
|
|
|
|
|
# apply a one-time fixup to $loc since offsets are relative |
1471
|
5
|
|
|
|
|
14
|
$$makerFixup{Start} += $loc; |
1472
|
|
|
|
|
|
|
# shift all offsets to be relative to new base |
1473
|
5
|
|
|
|
|
17
|
my $baseShift = $valueDataPos + $valuePtr + $base - $subdirInfo{Base}; |
1474
|
5
|
|
|
|
|
14
|
$$makerFixup{Shift} += $baseShift; |
1475
|
5
|
|
|
|
|
30
|
$makerFixup->ApplyFixup(\$newValue); |
1476
|
5
|
100
|
|
|
|
24
|
if ($previewInfo) { |
1477
|
|
|
|
|
|
|
# remove all but PreviewImage fixup (since others shouldn't change) |
1478
|
1
|
|
|
|
|
3
|
foreach (keys %{$$makerFixup{Pointers}}) { |
|
1
|
|
|
|
|
4
|
|
1479
|
2
|
100
|
|
|
|
12
|
/_PreviewImage$/ or delete $$makerFixup{Pointers}{$_}; |
1480
|
|
|
|
|
|
|
} |
1481
|
|
|
|
|
|
|
# zero pointer so we can see how it gets shifted later |
1482
|
1
|
|
|
|
|
8
|
$makerFixup->SetMarkerPointers(\$newValue, 'PreviewImage', 0); |
1483
|
|
|
|
|
|
|
# set the pointer to the start of the EXIF information |
1484
|
|
|
|
|
|
|
# add preview image fixup to list of value fixups |
1485
|
1
|
|
|
|
|
2
|
$$makerFixup{Start} += $valLen; |
1486
|
1
|
|
|
|
|
2
|
push @valFixups, $makerFixup; |
1487
|
1
|
|
|
|
|
4
|
$$previewInfo{BaseShift} = $baseShift; |
1488
|
1
|
|
|
|
|
2
|
$$previewInfo{Relative} = 1; |
1489
|
|
|
|
|
|
|
} |
1490
|
|
|
|
|
|
|
# don't shift anything if relative flag set to zero (Pentax patch) |
1491
|
|
|
|
|
|
|
} elsif (not defined $subdirInfo{Relative}) { |
1492
|
|
|
|
|
|
|
# shift offset base if shifted in the original image or if FixBase |
1493
|
|
|
|
|
|
|
# was used, but be careful of automatic FixBase with negative shifts |
1494
|
|
|
|
|
|
|
# since they may lead to negative (invalid) offsets (casio_edit_problem.jpg) |
1495
|
29
|
|
|
|
|
77
|
my $baseShift = $base - $subdirInfo{Base}; |
1496
|
29
|
100
|
66
|
|
|
232
|
if ($subdirInfo{AutoFix}) { |
|
|
50
|
0
|
|
|
|
|
|
|
|
33
|
|
|
|
|
1497
|
1
|
|
|
|
|
1
|
$baseShift = 0; |
1498
|
|
|
|
|
|
|
} elsif ($subdirInfo{FixBase} and $baseShift < 0 and |
1499
|
|
|
|
|
|
|
# allow negative base shift if offsets are bigger (PentaxOptioWP.jpg) |
1500
|
|
|
|
|
|
|
(not $subdirInfo{MinOffset} or $subdirInfo{MinOffset} + $baseShift < 0)) |
1501
|
|
|
|
|
|
|
{ |
1502
|
0
|
|
|
|
|
0
|
my $fixBase = $et->Options('FixBase'); |
1503
|
0
|
0
|
|
|
|
0
|
if (not defined $fixBase) { |
|
|
0
|
|
|
|
|
|
1504
|
0
|
0
|
|
|
|
0
|
my $str = $et->Options('IgnoreMinorErrors') ? 'ignored' : 'fix or ignore?'; |
1505
|
0
|
|
|
|
|
0
|
$et->Error("MakerNotes offsets may be incorrect ($str)", 1); |
1506
|
|
|
|
|
|
|
} elsif ($fixBase eq '') { |
1507
|
0
|
|
|
|
|
0
|
$et->Warn('Fixed incorrect MakerNotes offsets'); |
1508
|
0
|
|
|
|
|
0
|
$baseShift = 0; |
1509
|
|
|
|
|
|
|
} |
1510
|
|
|
|
|
|
|
} |
1511
|
29
|
|
|
|
|
80
|
$$makerFixup{Start} += $valLen + $loc; |
1512
|
29
|
|
|
|
|
58
|
$$makerFixup{Shift} += $baseShift; |
1513
|
|
|
|
|
|
|
# permanently fix makernote offset errors |
1514
|
29
|
|
50
|
|
|
165
|
$$makerFixup{Shift} += $subdirInfo{FixedBy} || 0; |
1515
|
29
|
|
|
|
|
73
|
push @valFixups, $makerFixup; |
1516
|
29
|
100
|
100
|
|
|
135
|
if ($previewInfo and not $$previewInfo{NoBaseShift}) { |
1517
|
4
|
|
|
|
|
15
|
$$previewInfo{BaseShift} = $baseShift; |
1518
|
|
|
|
|
|
|
} |
1519
|
|
|
|
|
|
|
} |
1520
|
34
|
|
|
|
|
186
|
$newValuePt = \$newValue; # write new value |
1521
|
|
|
|
|
|
|
} |
1522
|
|
|
|
|
|
|
} |
1523
|
42
|
|
|
|
|
159
|
SetByteOrder($saveOrder); |
1524
|
|
|
|
|
|
|
|
1525
|
|
|
|
|
|
|
# process existing subdirectory unless we are overwriting it entirely |
1526
|
|
|
|
|
|
|
} elsif ($$newInfo{SubDirectory} and $isNew <= 0 and not $isOverwriting |
1527
|
|
|
|
|
|
|
# don't edit directory if Writable is set to 0 |
1528
|
|
|
|
|
|
|
and (not defined $$newInfo{Writable} or $$newInfo{Writable}) and |
1529
|
|
|
|
|
|
|
not $$newInfo{ReadFromRAF}) |
1530
|
|
|
|
|
|
|
{ |
1531
|
|
|
|
|
|
|
|
1532
|
433
|
|
|
|
|
784
|
my $subdir = $$newInfo{SubDirectory}; |
1533
|
433
|
100
|
66
|
|
|
2002
|
if ($$newInfo{SubIFD}) { |
|
|
50
|
33
|
|
|
|
|
1534
|
|
|
|
|
|
|
# |
1535
|
|
|
|
|
|
|
# rewrite existing sub IFD's |
1536
|
|
|
|
|
|
|
# |
1537
|
106
|
|
|
|
|
188
|
my $subTable = $tagTablePtr; |
1538
|
106
|
100
|
|
|
|
332
|
if ($$subdir{TagTable}) { |
1539
|
15
|
|
|
|
|
73
|
$subTable = Image::ExifTool::GetTagTable($$subdir{TagTable}); |
1540
|
|
|
|
|
|
|
} |
1541
|
|
|
|
|
|
|
# determine directory name for this IFD |
1542
|
106
|
|
33
|
|
|
395
|
my $subdirName = $$newInfo{Groups}{1} || $$newInfo{Name}; |
1543
|
|
|
|
|
|
|
# all makernotes directory names must be 'MakerNotes' |
1544
|
106
|
100
|
|
|
|
407
|
$subdirName = 'MakerNotes' if $$subTable{GROUPS}{0} eq 'MakerNotes'; |
1545
|
|
|
|
|
|
|
# must handle sub-IFD's specially since the values |
1546
|
|
|
|
|
|
|
# are actually offsets to subdirectories |
1547
|
106
|
50
|
|
|
|
310
|
unless ($readCount) { # can't have zero count |
1548
|
0
|
0
|
|
|
|
0
|
return undef if $et->Error("$name entry $index has zero count", 2); |
1549
|
0
|
|
|
|
|
0
|
next; |
1550
|
|
|
|
|
|
|
} |
1551
|
106
|
|
|
|
|
213
|
my $writeCount = 0; |
1552
|
106
|
|
|
|
|
168
|
my $i; |
1553
|
106
|
|
|
|
|
189
|
$newValue = ''; # reset value because we regenerate it below |
1554
|
106
|
|
|
|
|
334
|
for ($i=0; $i<$readCount; ++$i) { |
1555
|
109
|
|
|
|
|
267
|
my $off = $i * $formatSize[$readFormat]; |
1556
|
109
|
|
|
|
|
445
|
my $val = ReadValue($valueDataPt, $valuePtr + $off, |
1557
|
|
|
|
|
|
|
$readFormName, 1, $oldSize - $off); |
1558
|
109
|
|
|
|
|
281
|
my $subdirStart = $val - $dataPos; |
1559
|
109
|
|
|
|
|
207
|
my $subdirBase = $base; |
1560
|
109
|
|
|
|
|
179
|
my $hdrLen; |
1561
|
109
|
50
|
|
|
|
341
|
if (defined $$subdir{Start}) { |
1562
|
|
|
|
|
|
|
#### eval Start ($val) |
1563
|
109
|
|
|
|
|
6260
|
my $newStart = eval $$subdir{Start}; |
1564
|
109
|
50
|
|
|
|
597
|
unless (Image::ExifTool::IsInt($newStart)) { |
1565
|
0
|
|
|
|
|
0
|
$et->Error("Bad subdirectory start for $$newInfo{Name}"); |
1566
|
0
|
|
|
|
|
0
|
next; |
1567
|
|
|
|
|
|
|
} |
1568
|
109
|
|
|
|
|
274
|
$newStart -= $dataPos; |
1569
|
109
|
|
|
|
|
195
|
$hdrLen = $newStart - $subdirStart; |
1570
|
109
|
|
|
|
|
198
|
$subdirStart = $newStart; |
1571
|
|
|
|
|
|
|
} |
1572
|
109
|
50
|
|
|
|
335
|
if ($$subdir{Base}) { |
1573
|
0
|
|
|
|
|
0
|
my $start = $subdirStart + $dataPos; |
1574
|
|
|
|
|
|
|
#### eval Base ($start,$base) |
1575
|
0
|
|
|
|
|
0
|
$subdirBase += eval $$subdir{Base}; |
1576
|
|
|
|
|
|
|
} |
1577
|
|
|
|
|
|
|
# add IFD number if more than one |
1578
|
109
|
100
|
|
|
|
307
|
$subdirName =~ s/\d*$/$i/ if $i; |
1579
|
|
|
|
|
|
|
my %subdirInfo = ( |
1580
|
|
|
|
|
|
|
Base => $subdirBase, |
1581
|
|
|
|
|
|
|
DataPt => $dataPt, |
1582
|
|
|
|
|
|
|
DataPos => $dataPos - $subdirBase + $base, |
1583
|
|
|
|
|
|
|
DataLen => $dataLen, |
1584
|
|
|
|
|
|
|
DirStart => $subdirStart, |
1585
|
|
|
|
|
|
|
DirName => $subdirName, |
1586
|
|
|
|
|
|
|
Name => $$newInfo{Name}, |
1587
|
109
|
100
|
|
|
|
685
|
TagInfo => $newInfo, |
1588
|
|
|
|
|
|
|
Parent => $dirName, |
1589
|
|
|
|
|
|
|
Fixup => new Image::ExifTool::Fixup, |
1590
|
|
|
|
|
|
|
RAF => $raf, |
1591
|
|
|
|
|
|
|
Subdir => $subdir, |
1592
|
|
|
|
|
|
|
# set ImageData only for 1st level SubIFD's |
1593
|
|
|
|
|
|
|
ImageData=> $imageDataFlag eq 'Main' ? 'SubIFD' : undef, |
1594
|
|
|
|
|
|
|
); |
1595
|
|
|
|
|
|
|
# pass on header pointer only for certain sub IFD's |
1596
|
109
|
100
|
|
|
|
438
|
$subdirInfo{HeaderPtr} = $$dirInfo{HeaderPtr} if $$newInfo{SubIFD} == 2; |
1597
|
109
|
50
|
|
|
|
321
|
if ($$subdir{RelativeBase}) { |
1598
|
|
|
|
|
|
|
# apply one-time fixup if offsets are relative (Sony IDC hack) |
1599
|
0
|
|
|
|
|
0
|
delete $subdirInfo{Fixup}; |
1600
|
0
|
|
|
|
|
0
|
delete $subdirInfo{ImageData}; |
1601
|
|
|
|
|
|
|
} |
1602
|
|
|
|
|
|
|
# is the subdirectory outside our current data? |
1603
|
109
|
100
|
66
|
|
|
581
|
if ($subdirStart < 0 or $subdirStart + 2 > $dataLen) { |
1604
|
15
|
50
|
|
|
|
53
|
if ($raf) { |
1605
|
|
|
|
|
|
|
# reset SubDirectory buffer (we will load it later) |
1606
|
15
|
|
|
|
|
33
|
my $buff = ''; |
1607
|
15
|
|
|
|
|
39
|
$subdirInfo{DataPt} = \$buff; |
1608
|
15
|
|
|
|
|
36
|
$subdirInfo{DataLen} = 0; |
1609
|
|
|
|
|
|
|
} else { |
1610
|
0
|
|
|
|
|
0
|
my @err = ("Can't read $subdirName data", $inMakerNotes); |
1611
|
0
|
0
|
0
|
|
|
0
|
if ($$subTable{VARS} and $$subTable{VARS}{MINOR_ERRORS}) { |
|
|
0
|
|
|
|
|
|
1612
|
0
|
|
|
|
|
0
|
$et->Warn($err[0] . '. Ignored.'); |
1613
|
|
|
|
|
|
|
} elsif ($et->Error(@err)) { |
1614
|
0
|
|
|
|
|
0
|
return undef; |
1615
|
|
|
|
|
|
|
} |
1616
|
0
|
|
|
|
|
0
|
next Entry; # don't write this directory |
1617
|
|
|
|
|
|
|
} |
1618
|
|
|
|
|
|
|
} |
1619
|
109
|
|
|
|
|
819
|
my $subdirData = $et->WriteDirectory(\%subdirInfo, $subTable, $$subdir{WriteProc}); |
1620
|
109
|
50
|
|
|
|
455
|
unless (defined $subdirData) { |
1621
|
|
|
|
|
|
|
# WriteDirectory should have issued an error, but check just in case |
1622
|
0
|
0
|
|
|
|
0
|
$et->Error("Error writing $subdirName") unless $$et{VALUE}{Error}; |
1623
|
0
|
|
|
|
|
0
|
return undef; |
1624
|
|
|
|
|
|
|
} |
1625
|
|
|
|
|
|
|
# add back original header if necessary (eg. Ricoh GR) |
1626
|
109
|
0
|
33
|
|
|
367
|
if ($hdrLen and $hdrLen > 0 and $subdirStart <= $dataLen) { |
|
|
|
33
|
|
|
|
|
1627
|
0
|
|
|
|
|
0
|
$subdirData = substr($$dataPt, $subdirStart - $hdrLen, $hdrLen) . $subdirData; |
1628
|
0
|
|
|
|
|
0
|
$subdirInfo{Fixup}{Start} += $hdrLen; |
1629
|
|
|
|
|
|
|
} |
1630
|
109
|
100
|
|
|
|
313
|
unless (length $subdirData) { |
1631
|
6
|
50
|
|
|
|
51
|
next unless $inMakerNotes; |
1632
|
|
|
|
|
|
|
# don't delete MakerNote Sub-IFD's, write empty IFD instead |
1633
|
0
|
|
|
|
|
0
|
$subdirData = "\0" x 6; |
1634
|
|
|
|
|
|
|
# reset SubIFD ImageData and Fixup just to be safe |
1635
|
0
|
|
|
|
|
0
|
delete $subdirInfo{ImageData}; |
1636
|
0
|
|
|
|
|
0
|
delete $subdirInfo{Fixup}; |
1637
|
|
|
|
|
|
|
} |
1638
|
|
|
|
|
|
|
# handle data blocks that we will transfer later |
1639
|
103
|
100
|
|
|
|
4120
|
if (ref $subdirInfo{ImageData}) { |
1640
|
4
|
|
|
|
|
27
|
push @imageData, @{$subdirInfo{ImageData}}; |
|
4
|
|
|
|
|
14
|
|
1641
|
4
|
|
|
|
|
20
|
$$origDirInfo{ImageData} = \@imageData; |
1642
|
|
|
|
|
|
|
} |
1643
|
|
|
|
|
|
|
# temporarily set value to subdirectory index |
1644
|
|
|
|
|
|
|
# (will set to actual offset later when we know what it is) |
1645
|
103
|
|
|
|
|
303
|
$newValue .= Set32u(0xfeedf00d); |
1646
|
103
|
|
|
|
|
267
|
my ($offset, $where); |
1647
|
103
|
100
|
|
|
|
278
|
if ($readCount > 1) { |
1648
|
5
|
|
|
|
|
12
|
$offset = length($valBuff) + $i * 4; |
1649
|
5
|
|
|
|
|
13
|
$where = 'valBuff'; |
1650
|
|
|
|
|
|
|
} else { |
1651
|
98
|
|
|
|
|
180
|
$offset = length($dirBuff) + 8; |
1652
|
98
|
|
|
|
|
181
|
$where = 'dirBuff'; |
1653
|
|
|
|
|
|
|
} |
1654
|
|
|
|
|
|
|
# add to list of subdirectories we will append later |
1655
|
|
|
|
|
|
|
push @subdirs, { |
1656
|
|
|
|
|
|
|
DataPt => \$subdirData, |
1657
|
|
|
|
|
|
|
Table => $subTable, |
1658
|
|
|
|
|
|
|
Fixup => $subdirInfo{Fixup}, |
1659
|
|
|
|
|
|
|
Offset => $offset, |
1660
|
|
|
|
|
|
|
Where => $where, |
1661
|
|
|
|
|
|
|
ImageData => $subdirInfo{ImageData}, |
1662
|
103
|
|
|
|
|
699
|
}; |
1663
|
103
|
|
|
|
|
573
|
++$writeCount; # count number of subdirs written |
1664
|
|
|
|
|
|
|
} |
1665
|
106
|
100
|
|
|
|
314
|
next unless length $newValue; |
1666
|
|
|
|
|
|
|
# must change location of subdir offset if we deleted |
1667
|
|
|
|
|
|
|
# a directory and only one remains |
1668
|
100
|
50
|
33
|
|
|
335
|
if ($writeCount < $readCount and $writeCount == 1) { |
1669
|
0
|
|
|
|
|
0
|
$subdirs[-1]{Where} = 'dirBuff'; |
1670
|
0
|
|
|
|
|
0
|
$subdirs[-1]{Offset} = length($dirBuff) + 8; |
1671
|
|
|
|
|
|
|
} |
1672
|
|
|
|
|
|
|
# set new format to int32u for IFD |
1673
|
100
|
|
100
|
|
|
449
|
$newFormName = $$newInfo{FixFormat} || 'int32u'; |
1674
|
100
|
|
|
|
|
237
|
$newFormat = $formatNumber{$newFormName}; |
1675
|
100
|
|
|
|
|
237
|
$newValuePt = \$newValue; |
1676
|
|
|
|
|
|
|
|
1677
|
|
|
|
|
|
|
} elsif ((not defined $$subdir{Start} or |
1678
|
|
|
|
|
|
|
$$subdir{Start} =~ /\$valuePtr/) and |
1679
|
|
|
|
|
|
|
$$subdir{TagTable}) |
1680
|
|
|
|
|
|
|
{ |
1681
|
|
|
|
|
|
|
# |
1682
|
|
|
|
|
|
|
# rewrite other existing subdirectories ('$valuePtr' type only) |
1683
|
|
|
|
|
|
|
# |
1684
|
|
|
|
|
|
|
# set subdirectory Start and Base |
1685
|
327
|
|
|
|
|
530
|
my $subdirStart = $valuePtr; |
1686
|
327
|
100
|
|
|
|
652
|
if ($$subdir{Start}) { |
1687
|
|
|
|
|
|
|
#### eval Start ($valuePtr) |
1688
|
4
|
|
|
|
|
195
|
$subdirStart = eval $$subdir{Start}; |
1689
|
|
|
|
|
|
|
# must adjust directory size if start changed |
1690
|
4
|
|
|
|
|
16
|
$oldSize -= $subdirStart - $valuePtr; |
1691
|
|
|
|
|
|
|
} |
1692
|
327
|
|
|
|
|
471
|
my $subdirBase = $base; |
1693
|
327
|
100
|
|
|
|
740
|
if ($$subdir{Base}) { |
1694
|
1
|
|
|
|
|
1
|
my $start = $subdirStart + $valueDataPos; |
1695
|
|
|
|
|
|
|
#### eval Base ($start,$base) |
1696
|
1
|
|
|
|
|
34
|
$subdirBase += eval $$subdir{Base}; |
1697
|
|
|
|
|
|
|
} |
1698
|
327
|
|
|
|
|
1168
|
my $subFixup = new Image::ExifTool::Fixup; |
1699
|
|
|
|
|
|
|
my %subdirInfo = ( |
1700
|
|
|
|
|
|
|
Base => $subdirBase, |
1701
|
|
|
|
|
|
|
DataPt => $valueDataPt, |
1702
|
|
|
|
|
|
|
DataPos => $valueDataPos - $subdirBase + $base, |
1703
|
|
|
|
|
|
|
DataLen => $valueDataLen, |
1704
|
|
|
|
|
|
|
DirStart => $subdirStart, |
1705
|
|
|
|
|
|
|
DirName => $$subdir{DirName}, |
1706
|
327
|
|
|
|
|
2298
|
DirLen => $oldSize, |
1707
|
|
|
|
|
|
|
Parent => $dirName, |
1708
|
|
|
|
|
|
|
Fixup => $subFixup, |
1709
|
|
|
|
|
|
|
RAF => $raf, |
1710
|
|
|
|
|
|
|
TagInfo => $newInfo, |
1711
|
|
|
|
|
|
|
); |
1712
|
327
|
50
|
|
|
|
766
|
unless ($oldSize) { |
1713
|
|
|
|
|
|
|
# replace with dummy data if empty to prevent WriteDirectory |
1714
|
|
|
|
|
|
|
# routines from accessing data they shouldn't |
1715
|
0
|
|
|
|
|
0
|
my $tmp = ''; |
1716
|
0
|
|
|
|
|
0
|
$subdirInfo{DataPt} = \$tmp; |
1717
|
0
|
|
|
|
|
0
|
$subdirInfo{DataLen} = 0; |
1718
|
0
|
|
|
|
|
0
|
$subdirInfo{DirStart} = 0; |
1719
|
0
|
|
|
|
|
0
|
$subdirInfo{DataPos} += $subdirStart; |
1720
|
|
|
|
|
|
|
} |
1721
|
327
|
|
|
|
|
927
|
my $subTable = Image::ExifTool::GetTagTable($$subdir{TagTable}); |
1722
|
327
|
|
|
|
|
3131
|
my $oldOrder = GetByteOrder(); |
1723
|
327
|
100
|
|
|
|
790
|
SetByteOrder($$subdir{ByteOrder}) if $$subdir{ByteOrder}; |
1724
|
327
|
|
|
|
|
1597
|
$newValue = $et->WriteDirectory(\%subdirInfo, $subTable, $$subdir{WriteProc}); |
1725
|
327
|
|
|
|
|
1125
|
SetByteOrder($oldOrder); |
1726
|
327
|
100
|
|
|
|
727
|
if (defined $newValue) { |
1727
|
266
|
|
|
|
|
477
|
my $hdrLen = $subdirStart - $valuePtr; |
1728
|
266
|
100
|
|
|
|
556
|
if ($hdrLen) { |
1729
|
3
|
|
|
|
|
20
|
$newValue = substr($$valueDataPt, $valuePtr, $hdrLen) . $newValue; |
1730
|
3
|
|
|
|
|
9
|
$$subFixup{Start} += $hdrLen; |
1731
|
|
|
|
|
|
|
} |
1732
|
266
|
|
|
|
|
450
|
$newValuePt = \$newValue; |
1733
|
|
|
|
|
|
|
} else { |
1734
|
61
|
|
|
|
|
150
|
$newValuePt = \$oldValue; |
1735
|
|
|
|
|
|
|
} |
1736
|
327
|
100
|
|
|
|
770
|
unless (length $$newValuePt) { |
1737
|
|
|
|
|
|
|
# don't delete a previously empty makernote directory |
1738
|
1
|
50
|
33
|
|
|
7
|
next if $oldSize or not $inMakerNotes; |
1739
|
|
|
|
|
|
|
} |
1740
|
326
|
100
|
100
|
|
|
981
|
if ($$subFixup{Pointers} and $subdirInfo{Base} == $base) { |
1741
|
5
|
|
|
|
|
10
|
$$subFixup{Start} += length $valBuff; |
1742
|
5
|
|
|
|
|
14
|
push @valFixups, $subFixup; |
1743
|
|
|
|
|
|
|
} else { |
1744
|
|
|
|
|
|
|
# apply fixup in case we added a header ($hdrLen above) |
1745
|
321
|
|
|
|
|
1090
|
$subFixup->ApplyFixup(\$newValue); |
1746
|
|
|
|
|
|
|
} |
1747
|
|
|
|
|
|
|
} |
1748
|
|
|
|
|
|
|
|
1749
|
|
|
|
|
|
|
} elsif ($$newInfo{OffsetPair}) { |
1750
|
|
|
|
|
|
|
# |
1751
|
|
|
|
|
|
|
# keep track of offsets |
1752
|
|
|
|
|
|
|
# |
1753
|
158
|
|
100
|
|
|
526
|
my $dataTag = $$newInfo{DataTag} || ''; |
1754
|
158
|
100
|
|
|
|
489
|
if ($dataTag eq 'CanonVRD') { |
|
|
100
|
|
|
|
|
|
1755
|
|
|
|
|
|
|
# must decide now if we will write CanonVRD information |
1756
|
10
|
|
|
|
|
24
|
my $hasVRD; |
1757
|
10
|
100
|
33
|
|
|
86
|
if ($$et{NEW_VALUE}{$Image::ExifTool::Extra{CanonVRD}}) { |
|
|
50
|
|
|
|
|
|
1758
|
|
|
|
|
|
|
# adding or deleting as a block |
1759
|
1
|
50
|
|
|
|
5
|
$hasVRD = $et->GetNewValue('CanonVRD') ? 1 : 0; |
1760
|
|
|
|
|
|
|
} elsif ($$et{DEL_GROUP}{CanonVRD} or |
1761
|
|
|
|
|
|
|
$$et{DEL_GROUP}{Trailer}) |
1762
|
|
|
|
|
|
|
{ |
1763
|
0
|
|
|
|
|
0
|
$hasVRD = 0; # deleting as a group |
1764
|
|
|
|
|
|
|
} else { |
1765
|
9
|
|
|
|
|
26
|
$hasVRD = ($$newValuePt ne "\0\0\0\0"); |
1766
|
|
|
|
|
|
|
} |
1767
|
10
|
100
|
|
|
|
33
|
if ($hasVRD) { |
1768
|
|
|
|
|
|
|
# add a fixup, and set this offset later |
1769
|
1
|
|
|
|
|
4
|
$dirFixup->AddFixup(length($dirBuff) + 8, $dataTag); |
1770
|
|
|
|
|
|
|
} else { |
1771
|
|
|
|
|
|
|
# there is (or will soon be) no VRD information, so set pointer to zero |
1772
|
9
|
|
|
|
|
27
|
$newValue = "\0" x length($$newValuePt); |
1773
|
9
|
|
|
|
|
26
|
$newValuePt = \$newValue; |
1774
|
|
|
|
|
|
|
} |
1775
|
|
|
|
|
|
|
} elsif ($dataTag eq 'OriginalDecisionData') { |
1776
|
|
|
|
|
|
|
# handle Canon OriginalDecisionData (no associated length tag) |
1777
|
|
|
|
|
|
|
# - I'm going out of my way here to preserve data which is |
1778
|
|
|
|
|
|
|
# invalidated anyway by our edits |
1779
|
7
|
|
|
|
|
20
|
my $odd; |
1780
|
7
|
|
|
|
|
27
|
my $oddInfo = Image::ExifTool::GetCompositeTagInfo('OriginalDecisionData'); |
1781
|
7
|
100
|
66
|
|
|
59
|
if ($oddInfo and $$et{NEW_VALUE}{$oddInfo}) { |
|
|
100
|
|
|
|
|
|
1782
|
1
|
|
|
|
|
7
|
$odd = $et->GetNewValue($dataTag); |
1783
|
1
|
50
|
|
|
|
4
|
if ($verbose > 1) { |
1784
|
0
|
0
|
|
|
|
0
|
print $out " - $dirName:$dataTag\n" if $$newValuePt ne "\0\0\0\0"; |
1785
|
0
|
0
|
|
|
|
0
|
print $out " + $dirName:$dataTag\n" if $odd; |
1786
|
|
|
|
|
|
|
} |
1787
|
1
|
|
|
|
|
3
|
++$$et{CHANGED}; |
1788
|
|
|
|
|
|
|
} elsif ($$newValuePt ne "\0\0\0\0") { |
1789
|
1
|
50
|
|
|
|
2
|
if (length($$newValuePt) == 4) { |
1790
|
1
|
|
|
|
|
8
|
require Image::ExifTool::Canon; |
1791
|
1
|
|
|
|
|
3
|
my $offset = Get32u($newValuePt,0); |
1792
|
|
|
|
|
|
|
# absolute offset in JPEG images only |
1793
|
1
|
50
|
|
|
|
3
|
$offset += $base unless $$et{FILE_TYPE} eq 'JPEG'; |
1794
|
1
|
|
|
|
|
4
|
$odd = Image::ExifTool::Canon::ReadODD($et, $offset); |
1795
|
1
|
50
|
|
|
|
5
|
$odd = $$odd if ref $odd; |
1796
|
|
|
|
|
|
|
} else { |
1797
|
0
|
|
|
|
|
0
|
$et->Error("Invalid $$newInfo{Name}",1); |
1798
|
|
|
|
|
|
|
} |
1799
|
|
|
|
|
|
|
} |
1800
|
7
|
100
|
|
|
|
23
|
if ($odd) { |
1801
|
2
|
|
|
|
|
6
|
my $newOffset = length($valBuff); |
1802
|
|
|
|
|
|
|
# (ODD offset is absolute in JPEG, so add base offset!) |
1803
|
2
|
100
|
|
|
|
9
|
$newOffset += $base if $$et{FILE_TYPE} eq 'JPEG'; |
1804
|
2
|
|
|
|
|
8
|
$newValue = Set32u($newOffset); |
1805
|
2
|
|
|
|
|
13
|
$dirFixup->AddFixup(length($dirBuff) + 8, $dataTag); |
1806
|
2
|
|
|
|
|
6
|
$valBuff .= $odd; # add original decision data |
1807
|
|
|
|
|
|
|
} else { |
1808
|
5
|
|
|
|
|
11
|
$newValue = "\0\0\0\0"; |
1809
|
|
|
|
|
|
|
} |
1810
|
7
|
|
|
|
|
16
|
$newValuePt = \$newValue; |
1811
|
|
|
|
|
|
|
} else { |
1812
|
141
|
|
|
|
|
251
|
my $offsetInfo = $offsetInfo[$ifd]; |
1813
|
|
|
|
|
|
|
# save original values (for updating TIFF_END later) |
1814
|
141
|
|
|
|
|
214
|
my @vals; |
1815
|
141
|
100
|
|
|
|
398
|
if ($isNew <= 0) { |
1816
|
137
|
|
|
|
|
364
|
my $oldOrder = GetByteOrder(); |
1817
|
|
|
|
|
|
|
# Minolta A200 stores these in the wrong byte order! |
1818
|
137
|
50
|
|
|
|
466
|
SetByteOrder($$newInfo{ByteOrder}) if $$newInfo{ByteOrder}; |
1819
|
137
|
|
|
|
|
377
|
@vals = ReadValue(\$oldValue, 0, $readFormName, $readCount, $oldSize); |
1820
|
137
|
|
|
|
|
451
|
SetByteOrder($oldOrder); |
1821
|
137
|
100
|
|
|
|
871
|
$validateInfo{$newID} = [$newInfo, join(' ',@vals)] unless $$newInfo{IsOffset}; |
1822
|
|
|
|
|
|
|
} |
1823
|
|
|
|
|
|
|
# only support int32 pointers (for now) |
1824
|
141
|
0
|
33
|
|
|
446
|
if ($formatSize[$newFormat] != 4 and $$newInfo{IsOffset}) { |
1825
|
0
|
0
|
|
|
|
0
|
$isNew > 0 and warn("Internal error (Offset not int32)"), return undef; |
1826
|
0
|
0
|
|
|
|
0
|
$newCount != $readCount and warn("Wrong count!"), return undef; |
1827
|
|
|
|
|
|
|
# change to int32 |
1828
|
0
|
|
|
|
|
0
|
$newFormName = 'int32u'; |
1829
|
0
|
|
|
|
|
0
|
$newFormat = $formatNumber{$newFormName}; |
1830
|
0
|
|
|
|
|
0
|
$newValue = WriteValue(join(' ',@vals), $newFormName, $newCount); |
1831
|
0
|
0
|
|
|
|
0
|
unless (defined $newValue) { |
1832
|
0
|
|
|
|
|
0
|
warn "Internal error writing offsets for $$newInfo{Name}\n"; |
1833
|
0
|
|
|
|
|
0
|
return undef; |
1834
|
|
|
|
|
|
|
} |
1835
|
0
|
|
|
|
|
0
|
$newValuePt = \$newValue; |
1836
|
|
|
|
|
|
|
} |
1837
|
141
|
100
|
|
|
|
415
|
$offsetInfo or $offsetInfo = $offsetInfo[$ifd] = { }; |
1838
|
|
|
|
|
|
|
# save location of valuePtr in new directory |
1839
|
|
|
|
|
|
|
# (notice we add 10 instead of 8 for valuePtr because |
1840
|
|
|
|
|
|
|
# we will put a 2-byte count at start of directory later) |
1841
|
141
|
|
|
|
|
304
|
my $ptr = $newStart + length($dirBuff) + 10; |
1842
|
141
|
50
|
|
|
|
285
|
$newCount or $newCount = 1; # make sure count is set for offsetInfo |
1843
|
|
|
|
|
|
|
# save value pointer and value count for each tag |
1844
|
141
|
|
|
|
|
487
|
$$offsetInfo{$newID} = [$newInfo, $ptr, $newCount, \@vals, $newFormat]; |
1845
|
|
|
|
|
|
|
} |
1846
|
|
|
|
|
|
|
|
1847
|
|
|
|
|
|
|
} elsif ($$newInfo{DataMember}) { |
1848
|
|
|
|
|
|
|
|
1849
|
|
|
|
|
|
|
# save any necessary data members (Make, Model, etc) |
1850
|
279
|
|
|
|
|
474
|
my $formatStr = $newFormName; |
1851
|
279
|
|
|
|
|
412
|
my $count = $newCount; |
1852
|
|
|
|
|
|
|
# change to specified format if necessary |
1853
|
279
|
50
|
33
|
|
|
758
|
if ($$newInfo{Format} and $$newInfo{Format} ne $formatStr) { |
1854
|
0
|
|
|
|
|
0
|
$formatStr = $$newInfo{Format}; |
1855
|
0
|
|
|
|
|
0
|
my $format = $formatNumber{$formatStr}; |
1856
|
|
|
|
|
|
|
# adjust number of items for new format size |
1857
|
0
|
0
|
|
|
|
0
|
$count = int(length($$newValuePt) / $formatSize[$format]) if $format; |
1858
|
|
|
|
|
|
|
} |
1859
|
279
|
|
|
|
|
941
|
my $val = ReadValue($newValuePt,0,$formatStr,$count,length($$newValuePt)); |
1860
|
279
|
|
|
|
|
661
|
my $conv = $$newInfo{RawConv}; |
1861
|
279
|
50
|
|
|
|
575
|
if ($conv) { |
1862
|
|
|
|
|
|
|
# let the RawConv store the (possibly converted) data member |
1863
|
279
|
50
|
|
|
|
662
|
if (ref $conv eq 'CODE') { |
1864
|
0
|
|
|
|
|
0
|
&$conv($val, $et); |
1865
|
|
|
|
|
|
|
} else { |
1866
|
279
|
|
|
|
|
433
|
my ($priority, @grps); |
1867
|
279
|
|
|
|
|
745
|
my ($self, $tag, $tagInfo) = ($et, $$newInfo{Name}, $newInfo); |
1868
|
|
|
|
|
|
|
#### eval RawConv ($self, $val, $tag, $tagInfo, $priority, @grps) |
1869
|
279
|
|
|
|
|
26489
|
eval $conv; |
1870
|
|
|
|
|
|
|
} |
1871
|
|
|
|
|
|
|
} else { |
1872
|
0
|
|
|
|
|
0
|
$$et{$$newInfo{DataMember}} = $val; |
1873
|
|
|
|
|
|
|
} |
1874
|
|
|
|
|
|
|
} |
1875
|
|
|
|
|
|
|
} |
1876
|
|
|
|
|
|
|
# |
1877
|
|
|
|
|
|
|
# write out the directory entry |
1878
|
|
|
|
|
|
|
# |
1879
|
5429
|
|
|
|
|
8329
|
my $newSize = length($$newValuePt); |
1880
|
5429
|
|
|
|
|
7991
|
my $fsize = $formatSize[$newFormat]; |
1881
|
5429
|
|
|
|
|
6587
|
my $offsetVal; |
1882
|
|
|
|
|
|
|
# set proper count |
1883
|
5429
|
50
|
66
|
|
|
18969
|
$newCount = int(($newSize + $fsize - 1) / $fsize) unless $oldInfo and $$oldInfo{FixedSize}; |
1884
|
5429
|
100
|
100
|
|
|
12226
|
if ($saveForValidate{$newID} and $tagTablePtr eq \%Image::ExifTool::Exif::Main) { |
1885
|
153
|
|
|
|
|
543
|
my @vals = ReadValue(\$newValue, 0, $newFormName, $newCount, $newSize); |
1886
|
153
|
|
|
|
|
676
|
$validateInfo{$newID} = join ' ',@vals; |
1887
|
|
|
|
|
|
|
} |
1888
|
5429
|
100
|
|
|
|
8814
|
if ($newSize > 4) { |
1889
|
|
|
|
|
|
|
# zero-pad to an even number of bytes (required by EXIF standard) |
1890
|
|
|
|
|
|
|
# and make sure we are a multiple of the format size |
1891
|
2469
|
|
100
|
|
|
7956
|
while ($newSize & 0x01 or $newSize < $newCount * $fsize) { |
1892
|
234
|
|
|
|
|
460
|
$$newValuePt .= "\0"; |
1893
|
234
|
|
|
|
|
722
|
++$newSize; |
1894
|
|
|
|
|
|
|
} |
1895
|
2469
|
|
|
|
|
3263
|
my $entryBased; |
1896
|
2469
|
100
|
33
|
|
|
9895
|
if ($$dirInfo{EntryBased} or ($newInfo and $$newInfo{EntryBased})) { |
|
|
|
66
|
|
|
|
|
1897
|
5
|
|
|
|
|
8
|
$entryBased = 1; |
1898
|
5
|
|
|
|
|
13
|
$offsetVal = Set32u(length($valBuff) - length($dirBuff)); |
1899
|
|
|
|
|
|
|
} else { |
1900
|
2464
|
|
|
|
|
5995
|
$offsetVal = Set32u(length $valBuff); |
1901
|
|
|
|
|
|
|
} |
1902
|
2469
|
|
|
|
|
3774
|
my ($dataTag, $putFirst); |
1903
|
2469
|
50
|
|
|
|
6708
|
($dataTag, $putFirst) = @$newInfo{'DataTag','PutFirst'} if $newInfo; |
1904
|
2469
|
100
|
|
|
|
4306
|
if ($dataTag) { |
1905
|
2
|
100
|
33
|
|
|
22
|
if ($dataTag eq 'PreviewImage' and ($$et{FILE_TYPE} eq 'JPEG' or |
|
|
50
|
66
|
|
|
|
|
|
|
|
33
|
|
|
|
|
1906
|
|
|
|
|
|
|
$$et{GENERATE_PREVIEW_INFO})) |
1907
|
|
|
|
|
|
|
{ |
1908
|
|
|
|
|
|
|
# hold onto the PreviewImage until we can determine if it fits |
1909
|
|
|
|
|
|
|
$$et{PREVIEW_INFO} or $$et{PREVIEW_INFO} = { |
1910
|
1
|
50
|
|
|
|
8
|
Data => $$newValuePt, |
1911
|
|
|
|
|
|
|
Fixup => new Image::ExifTool::Fixup, |
1912
|
|
|
|
|
|
|
}; |
1913
|
1
|
50
|
|
|
|
4
|
$$et{PREVIEW_INFO}{ChangeBase} = 1 if $$newInfo{ChangeBase}; |
1914
|
1
|
50
|
33
|
|
|
4
|
if ($$newInfo{IsOffset} and $$newInfo{IsOffset} eq '2') { |
1915
|
0
|
|
|
|
|
0
|
$$et{PREVIEW_INFO}{NoBaseShift} = 1; |
1916
|
|
|
|
|
|
|
} |
1917
|
|
|
|
|
|
|
# use original preview size if we will attempt to load it later |
1918
|
1
|
50
|
|
|
|
6
|
$newCount = $oldCount if $$newValuePt eq 'LOAD_PREVIEW'; |
1919
|
1
|
|
|
|
|
2
|
$$newValuePt = ''; |
1920
|
|
|
|
|
|
|
} elsif ($dataTag eq 'LeicaTrailer' and $$et{LeicaTrailer}) { |
1921
|
0
|
|
|
|
|
0
|
$$newValuePt = ''; |
1922
|
|
|
|
|
|
|
} |
1923
|
|
|
|
|
|
|
} |
1924
|
2469
|
100
|
66
|
|
|
5036
|
if ($putFirst and $$dirInfo{HeaderPtr}) { |
1925
|
1
|
|
|
|
|
3
|
my $hdrPtr = $$dirInfo{HeaderPtr}; |
1926
|
|
|
|
|
|
|
# place this value immediately after the TIFF header (eg. IIQ maker notes) |
1927
|
1
|
|
|
|
|
3
|
$offsetVal = Set32u(length $$hdrPtr); |
1928
|
1
|
|
|
|
|
4
|
$$hdrPtr .= $$newValuePt; |
1929
|
|
|
|
|
|
|
} else { |
1930
|
2468
|
|
|
|
|
4904
|
$valBuff .= $$newValuePt; # add value data to buffer |
1931
|
|
|
|
|
|
|
# must save a fixup pointer for every pointer in the directory |
1932
|
2468
|
100
|
|
|
|
3853
|
if ($entryBased) { |
1933
|
5
|
100
|
|
|
|
12
|
$entryBasedFixup or $entryBasedFixup = new Image::ExifTool::Fixup; |
1934
|
5
|
|
|
|
|
18
|
$entryBasedFixup->AddFixup(length($dirBuff) + 8, $dataTag); |
1935
|
|
|
|
|
|
|
} else { |
1936
|
2463
|
|
|
|
|
7754
|
$dirFixup->AddFixup(length($dirBuff) + 8, $dataTag); |
1937
|
|
|
|
|
|
|
} |
1938
|
|
|
|
|
|
|
} |
1939
|
|
|
|
|
|
|
} else { |
1940
|
2960
|
|
|
|
|
4068
|
$offsetVal = $$newValuePt; # save value in offset if 4 bytes or less |
1941
|
|
|
|
|
|
|
# must pad value with zeros if less than 4 bytes |
1942
|
2960
|
100
|
|
|
|
6732
|
$newSize < 4 and $offsetVal .= "\0" x (4 - $newSize); |
1943
|
|
|
|
|
|
|
} |
1944
|
|
|
|
|
|
|
# write the directory entry |
1945
|
5429
|
|
|
|
|
11665
|
$dirBuff .= Set16u($newID) . Set16u($newFormat) . |
1946
|
|
|
|
|
|
|
Set32u($newCount) . $offsetVal; |
1947
|
|
|
|
|
|
|
# update flag to keep track of mandatory tags |
1948
|
5429
|
|
|
|
|
13501
|
while (defined $allMandatory) { |
1949
|
462
|
100
|
|
|
|
1188
|
if (defined $$mandatory{$newID}) { |
1950
|
|
|
|
|
|
|
# values must correspond to mandatory values |
1951
|
278
|
|
66
|
|
|
1018
|
my $form = $$newInfo{Format} || $newFormName; |
1952
|
278
|
|
|
|
|
767
|
my $mandVal = WriteValue($$mandatory{$newID}, $form, $newCount); |
1953
|
278
|
100
|
66
|
|
|
1183
|
if (defined $mandVal and $mandVal eq $$newValuePt) { |
1954
|
269
|
|
|
|
|
414
|
++$allMandatory; # count mandatory tags |
1955
|
269
|
|
|
|
|
605
|
last; |
1956
|
|
|
|
|
|
|
} |
1957
|
|
|
|
|
|
|
} |
1958
|
193
|
|
|
|
|
347
|
undef $deleteAll; |
1959
|
193
|
|
|
|
|
506
|
undef $allMandatory; |
1960
|
|
|
|
|
|
|
} |
1961
|
|
|
|
|
|
|
} |
1962
|
372
|
100
|
|
|
|
1019
|
if (%validateInfo) { |
1963
|
80
|
|
|
|
|
442
|
ValidateImageData($et, \%validateInfo, $dirName, 1); |
1964
|
80
|
|
|
|
|
277
|
undef %validateInfo; |
1965
|
|
|
|
|
|
|
} |
1966
|
372
|
50
|
|
|
|
905
|
if ($ignoreCount) { |
1967
|
0
|
0
|
|
|
|
0
|
my $y = $ignoreCount > 1 ? 'ies' : 'y'; |
1968
|
0
|
0
|
|
|
|
0
|
my $verb = $$dirInfo{FixBase} ? 'Ignored' : 'Removed'; |
1969
|
0
|
|
|
|
|
0
|
$et->Warn("$verb $ignoreCount invalid entr$y from $name", 1); |
1970
|
|
|
|
|
|
|
} |
1971
|
372
|
50
|
|
|
|
893
|
if ($fixCount) { |
1972
|
0
|
0
|
|
|
|
0
|
my $s = $fixCount > 1 ? 's' : ''; |
1973
|
0
|
|
|
|
|
0
|
$et->Warn("Fixed invalid count$s for $fixCount $name tag$s", 1); |
1974
|
|
|
|
|
|
|
} |
1975
|
|
|
|
|
|
|
#.............................................................................. |
1976
|
|
|
|
|
|
|
# write directory counts and nextIFD pointer and add value data to end of IFD |
1977
|
|
|
|
|
|
|
# |
1978
|
|
|
|
|
|
|
# determine now if there is or will be another IFD after this one |
1979
|
372
|
|
|
|
|
638
|
my $nextIfdOffset; |
1980
|
372
|
100
|
|
|
|
958
|
if ($dirEnd + 4 <= $dataLen) { |
1981
|
288
|
|
|
|
|
808
|
$nextIfdOffset = Get32u($dataPt, $dirEnd); |
1982
|
|
|
|
|
|
|
} else { |
1983
|
84
|
|
|
|
|
159
|
$nextIfdOffset = 0; |
1984
|
|
|
|
|
|
|
} |
1985
|
|
|
|
|
|
|
my $isNextIFD = ($$dirInfo{Multi} and ($nextIfdOffset or |
1986
|
|
|
|
|
|
|
# account for the case where we will create the next IFD |
1987
|
|
|
|
|
|
|
# (IFD1 only, but not in TIFF-format images) |
1988
|
|
|
|
|
|
|
($dirName eq 'IFD0' and $$et{ADD_DIRS}{'IFD1'} and |
1989
|
372
|
|
100
|
|
|
2150
|
$$et{FILE_TYPE} ne 'TIFF'))); |
1990
|
|
|
|
|
|
|
# calculate number of entries in new directory |
1991
|
372
|
|
|
|
|
875
|
my $newEntries = length($dirBuff) / 12; |
1992
|
|
|
|
|
|
|
# delete entire directory if we deleted a tag and only mandatory tags remain or we |
1993
|
|
|
|
|
|
|
# attempted to create a directory with only mandatory tags and there is no nextIFD |
1994
|
372
|
100
|
100
|
|
|
1204
|
if ($allMandatory and not $isNextIFD and ($newEntries < $numEntries or $numEntries == 0)) { |
|
|
|
100
|
|
|
|
|
|
|
|
100
|
|
|
|
|
1995
|
14
|
|
|
|
|
31
|
$newEntries = 0; |
1996
|
14
|
|
|
|
|
30
|
$dirBuff = ''; |
1997
|
14
|
|
|
|
|
22
|
$valBuff = ''; |
1998
|
14
|
|
|
|
|
52
|
undef $dirFixup; # no fixups in this directory |
1999
|
14
|
100
|
|
|
|
43
|
++$deleteAll if defined $deleteAll; |
2000
|
14
|
50
|
|
|
|
53
|
$verbose > 1 and print $out " - $allMandatory mandatory tag(s)\n"; |
2001
|
14
|
|
|
|
|
30
|
$$et{CHANGED} -= $addMandatory; # didn't change these after all |
2002
|
|
|
|
|
|
|
} |
2003
|
372
|
100
|
100
|
|
|
1132
|
if ($ifd and not $newEntries) { |
2004
|
1
|
50
|
|
|
|
4
|
$verbose and print $out " Deleting IFD1\n"; |
2005
|
1
|
|
|
|
|
4
|
last; # don't write IFD1 if empty |
2006
|
|
|
|
|
|
|
} |
2007
|
|
|
|
|
|
|
# apply one-time fixup for entry-based offsets |
2008
|
371
|
100
|
|
|
|
1364
|
if ($entryBasedFixup) { |
2009
|
1
|
|
|
|
|
3
|
$$entryBasedFixup{Shift} = length($dirBuff) + 4; |
2010
|
1
|
|
|
|
|
6
|
$entryBasedFixup->ApplyFixup(\$dirBuff); |
2011
|
1
|
|
|
|
|
10
|
undef $entryBasedFixup; |
2012
|
|
|
|
|
|
|
} |
2013
|
|
|
|
|
|
|
# initialize next IFD pointer to zero |
2014
|
371
|
|
|
|
|
1097
|
my $nextIFD = Set32u(0); |
2015
|
|
|
|
|
|
|
# some cameras use a different amount of padding after the makernote IFD |
2016
|
371
|
100
|
100
|
|
|
1607
|
if ($dirName eq 'MakerNotes' and $$dirInfo{Parent} =~ /^(ExifIFD|IFD0)$/) { |
2017
|
53
|
|
|
|
|
268
|
my ($rel, $pad) = Image::ExifTool::MakerNotes::GetMakerNoteOffset($et); |
2018
|
53
|
100
|
100
|
|
|
469
|
$nextIFD = "\0" x $pad if defined $pad and ($pad==0 or ($pad>4 and $pad<=32)); |
|
|
|
66
|
|
|
|
|
2019
|
|
|
|
|
|
|
} |
2020
|
|
|
|
|
|
|
# add directory entry count to start of IFD and next IFD pointer to end |
2021
|
371
|
|
|
|
|
901
|
$newData .= Set16u($newEntries) . $dirBuff . $nextIFD; |
2022
|
|
|
|
|
|
|
# get position of value data in newData |
2023
|
371
|
|
|
|
|
782
|
my $valPos = length($newData); |
2024
|
|
|
|
|
|
|
# go back now and set next IFD pointer if this isn't the first IFD |
2025
|
371
|
100
|
|
|
|
898
|
if ($nextIfdPos) { |
2026
|
|
|
|
|
|
|
# set offset to next IFD |
2027
|
47
|
|
|
|
|
186
|
Set32u($newStart, \$newData, $nextIfdPos); |
2028
|
47
|
|
|
|
|
206
|
$fixup->AddFixup($nextIfdPos,'NextIFD'); # add fixup for this offset in newData |
2029
|
|
|
|
|
|
|
} |
2030
|
|
|
|
|
|
|
# remember position of 'next IFD' pointer so we can set it next time around |
2031
|
371
|
100
|
|
|
|
970
|
$nextIfdPos = length($nextIFD) ? $valPos - length($nextIFD) : undef; |
2032
|
|
|
|
|
|
|
# add value data after IFD |
2033
|
371
|
|
|
|
|
1201
|
$newData .= $valBuff; |
2034
|
|
|
|
|
|
|
# |
2035
|
|
|
|
|
|
|
# add any subdirectories, adding fixup information |
2036
|
|
|
|
|
|
|
# |
2037
|
371
|
100
|
|
|
|
972
|
if (@subdirs) { |
2038
|
118
|
|
|
|
|
217
|
my $subdir; |
2039
|
118
|
|
|
|
|
313
|
foreach $subdir (@subdirs) { |
2040
|
135
|
|
|
|
|
266
|
my $len = length($newData); # position of subdirectory in data |
2041
|
135
|
|
|
|
|
278
|
my $subdirFixup = $$subdir{Fixup}; |
2042
|
135
|
50
|
|
|
|
354
|
if ($subdirFixup) { |
2043
|
135
|
|
|
|
|
294
|
$$subdirFixup{Start} += $len; |
2044
|
135
|
|
|
|
|
506
|
$fixup->AddFixup($subdirFixup); |
2045
|
|
|
|
|
|
|
} |
2046
|
135
|
|
|
|
|
311
|
my $imageData = $$subdir{ImageData}; |
2047
|
135
|
|
|
|
|
258
|
my $blockSize = 0; |
2048
|
|
|
|
|
|
|
# must also update start position for ImageData fixups |
2049
|
135
|
100
|
|
|
|
353
|
if (ref $imageData) { |
2050
|
4
|
|
|
|
|
7
|
my $blockInfo; |
2051
|
4
|
|
|
|
|
11
|
foreach $blockInfo (@$imageData) { |
2052
|
4
|
|
|
|
|
14
|
my ($pos, $size, $pad, $entry, $subFix) = @$blockInfo; |
2053
|
4
|
50
|
|
|
|
13
|
if ($subFix) { |
2054
|
4
|
|
|
|
|
10
|
$$subFix{Start} += $len; |
2055
|
|
|
|
|
|
|
# save expected image data offset for calculating shift later |
2056
|
4
|
|
|
|
|
6
|
$$subFix{BlockLen} = length(${$$subdir{DataPt}}) + $blockSize; |
|
4
|
|
|
|
|
12
|
|
2057
|
|
|
|
|
|
|
} |
2058
|
4
|
|
|
|
|
10
|
$blockSize += $size + $pad; |
2059
|
|
|
|
|
|
|
} |
2060
|
|
|
|
|
|
|
} |
2061
|
135
|
|
|
|
|
216
|
$newData .= ${$$subdir{DataPt}}; # add subdirectory to our data |
|
135
|
|
|
|
|
731
|
|
2062
|
135
|
|
|
|
|
270
|
undef ${$$subdir{DataPt}}; # free memory now |
|
135
|
|
|
|
|
343
|
|
2063
|
|
|
|
|
|
|
# set the pointer |
2064
|
135
|
|
|
|
|
304
|
my $offset = $$subdir{Offset}; |
2065
|
|
|
|
|
|
|
# if offset is in valBuff, it was added to the end of dirBuff |
2066
|
|
|
|
|
|
|
# (plus 4 bytes for nextIFD pointer) |
2067
|
135
|
100
|
|
|
|
460
|
$offset += length($dirBuff) + 4 if $$subdir{Where} eq 'valBuff'; |
2068
|
135
|
|
|
|
|
289
|
$offset += $newStart + 2; # get offset in newData |
2069
|
|
|
|
|
|
|
# check to be sure we got the right offset |
2070
|
135
|
50
|
|
|
|
404
|
unless (Get32u(\$newData, $offset) == 0xfeedf00d) { |
2071
|
0
|
|
|
|
|
0
|
$et->Error("Internal error while rewriting $name"); |
2072
|
0
|
|
|
|
|
0
|
return undef; |
2073
|
|
|
|
|
|
|
} |
2074
|
|
|
|
|
|
|
# set the offset to the subdirectory data |
2075
|
135
|
|
|
|
|
435
|
Set32u($len, \$newData, $offset); |
2076
|
135
|
|
|
|
|
487
|
$fixup->AddFixup($offset); # add fixup for this offset in newData |
2077
|
|
|
|
|
|
|
} |
2078
|
|
|
|
|
|
|
} |
2079
|
|
|
|
|
|
|
# add fixup for all offsets in directory according to value data position |
2080
|
|
|
|
|
|
|
# (which is at the end of this directory) |
2081
|
371
|
100
|
|
|
|
978
|
if ($dirFixup) { |
2082
|
358
|
|
|
|
|
834
|
$$dirFixup{Start} = $newStart + 2; |
2083
|
358
|
|
|
|
|
736
|
$$dirFixup{Shift} = $valPos - $$dirFixup{Start}; |
2084
|
358
|
|
|
|
|
1125
|
$fixup->AddFixup($dirFixup); |
2085
|
|
|
|
|
|
|
} |
2086
|
|
|
|
|
|
|
# add valueData fixups, adjusting for position of value data |
2087
|
371
|
|
|
|
|
605
|
my $valFixup; |
2088
|
371
|
|
|
|
|
940
|
foreach $valFixup (@valFixups) { |
2089
|
45
|
|
|
|
|
88
|
$$valFixup{Start} += $valPos; |
2090
|
45
|
|
|
|
|
118
|
$fixup->AddFixup($valFixup); |
2091
|
|
|
|
|
|
|
} |
2092
|
|
|
|
|
|
|
# stop if no next IFD pointer |
2093
|
371
|
100
|
|
|
|
2305
|
last unless $isNextIFD; # stop unless scanning for multiple IFD's |
2094
|
49
|
100
|
|
|
|
182
|
if ($nextIfdOffset) { |
2095
|
|
|
|
|
|
|
# continue with next IFD |
2096
|
42
|
|
|
|
|
89
|
$dirStart = $nextIfdOffset - $dataPos; |
2097
|
|
|
|
|
|
|
} else { |
2098
|
|
|
|
|
|
|
# create IFD1 if necessary |
2099
|
7
|
50
|
|
|
|
25
|
$verbose and print $out " Creating IFD1\n"; |
2100
|
7
|
|
|
|
|
19
|
my $ifd1 = "\0" x 2; # empty IFD1 data (zero entry count) |
2101
|
7
|
|
|
|
|
19
|
$dataPt = \$ifd1; |
2102
|
7
|
|
|
|
|
16
|
$dirStart = 0; |
2103
|
7
|
|
|
|
|
16
|
$dirLen = $dataLen = 2; |
2104
|
|
|
|
|
|
|
} |
2105
|
|
|
|
|
|
|
# increment IFD name |
2106
|
49
|
50
|
|
|
|
537
|
my $ifdNum = $dirName =~ s/(\d+)$// ? $1 : 0; |
2107
|
49
|
|
|
|
|
178
|
$dirName .= $ifdNum + 1; |
2108
|
49
|
|
|
|
|
203
|
$name =~ s/\d+$//; |
2109
|
49
|
|
|
|
|
136
|
$name .= $ifdNum + 1; |
2110
|
49
|
|
|
|
|
176
|
$$et{DIR_NAME} = $$et{PATH}[-1] = $dirName; |
2111
|
49
|
100
|
|
|
|
238
|
next unless $nextIfdOffset; |
2112
|
|
|
|
|
|
|
|
2113
|
|
|
|
|
|
|
# guard against writing the same directory twice |
2114
|
42
|
|
|
|
|
96
|
my $addr = $nextIfdOffset + $base; |
2115
|
42
|
50
|
|
|
|
174
|
if ($$et{PROCESSED}{$addr}) { |
2116
|
0
|
|
|
|
|
0
|
$et->Error("$name pointer references previous $$et{PROCESSED}{$addr} directory", 1); |
2117
|
0
|
|
|
|
|
0
|
last; |
2118
|
|
|
|
|
|
|
} |
2119
|
42
|
|
|
|
|
163
|
$$et{PROCESSED}{$addr} = $name; |
2120
|
|
|
|
|
|
|
|
2121
|
42
|
50
|
33
|
|
|
186
|
if ($dirName eq 'SubIFD1' and not ValidateIFD($dirInfo, $dirStart)) { |
2122
|
0
|
0
|
|
|
|
0
|
if ($$et{TIFF_TYPE} eq 'TIFF') { |
|
|
0
|
|
|
|
|
|
2123
|
0
|
|
|
|
|
0
|
$et->Error('Ignored bad IFD linked from SubIFD', 1); |
2124
|
|
|
|
|
|
|
} elsif ($verbose) { |
2125
|
0
|
|
|
|
|
0
|
$et->Warn('Ignored bad IFD linked from SubIFD'); |
2126
|
|
|
|
|
|
|
} |
2127
|
0
|
|
|
|
|
0
|
last; # don't write bad IFD |
2128
|
|
|
|
|
|
|
} |
2129
|
42
|
100
|
|
|
|
145
|
if ($$et{DEL_GROUP}{$dirName}) { |
2130
|
1
|
50
|
|
|
|
4
|
$verbose and print $out " Deleting $dirName\n"; |
2131
|
1
|
50
|
|
|
|
4
|
$raf and $et->Error("Deleting $dirName also deletes subsequent" . |
2132
|
|
|
|
|
|
|
" IFD's and possibly image data", 1); |
2133
|
1
|
|
|
|
|
3
|
++$$et{CHANGED}; |
2134
|
1
|
50
|
33
|
|
|
6
|
if ($$et{DEL_GROUP}{$dirName} == 2 and |
2135
|
|
|
|
|
|
|
$$et{ADD_DIRS}{$dirName}) |
2136
|
|
|
|
|
|
|
{ |
2137
|
0
|
|
|
|
|
0
|
my $emptyIFD = "\0" x 2; # start with empty IFD |
2138
|
0
|
|
|
|
|
0
|
$dataPt = \$emptyIFD; |
2139
|
0
|
|
|
|
|
0
|
$dirStart = 0; |
2140
|
0
|
|
|
|
|
0
|
$dirLen = $dataLen = 2; |
2141
|
|
|
|
|
|
|
} else { |
2142
|
1
|
|
|
|
|
6
|
last; # don't write this IFD (or any subsequent IFD) |
2143
|
|
|
|
|
|
|
} |
2144
|
|
|
|
|
|
|
} else { |
2145
|
41
|
50
|
|
|
|
321
|
$verbose and print $out " Rewriting $name\n"; |
2146
|
|
|
|
|
|
|
} |
2147
|
|
|
|
|
|
|
} |
2148
|
|
|
|
|
|
|
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
2149
|
|
|
|
|
|
|
|
2150
|
|
|
|
|
|
|
# do our fixups now so we can more easily calculate offsets below |
2151
|
324
|
|
|
|
|
1388
|
$fixup->ApplyFixup(\$newData); |
2152
|
|
|
|
|
|
|
# |
2153
|
|
|
|
|
|
|
# determine total block size for deferred data |
2154
|
|
|
|
|
|
|
# |
2155
|
324
|
|
|
|
|
641
|
my $numBlocks = scalar @imageData; # save this so we scan only existing blocks later |
2156
|
324
|
|
|
|
|
562
|
my $blockSize = 0; # total size of blocks to copy later |
2157
|
324
|
|
|
|
|
597
|
my $blockInfo; |
2158
|
324
|
|
|
|
|
723
|
foreach $blockInfo (@imageData) { |
2159
|
4
|
|
|
|
|
13
|
my ($pos, $size, $pad) = @$blockInfo; |
2160
|
4
|
|
|
|
|
11
|
$blockSize += $size + $pad; |
2161
|
|
|
|
|
|
|
} |
2162
|
|
|
|
|
|
|
# |
2163
|
|
|
|
|
|
|
# copy over image data for IFD's, starting with the last IFD first |
2164
|
|
|
|
|
|
|
# |
2165
|
324
|
100
|
|
|
|
837
|
if (@offsetInfo) { |
2166
|
60
|
|
|
|
|
149
|
my $ttwLen; # length of MRW TTW segment |
2167
|
|
|
|
|
|
|
my @writeLater; # write image data last |
2168
|
60
|
|
|
|
|
310
|
for ($ifd=$#offsetInfo; $ifd>=-1; --$ifd) { |
2169
|
|
|
|
|
|
|
# build list of offsets to process |
2170
|
162
|
|
|
|
|
249
|
my @offsetList; |
2171
|
162
|
100
|
|
|
|
371
|
if ($ifd >= 0) { |
2172
|
102
|
100
|
|
|
|
327
|
my $offsetInfo = $offsetInfo[$ifd] or next; |
2173
|
|
|
|
|
|
|
# patch Panasonic RAW/RW2 StripOffsets/StripByteCounts if necessary |
2174
|
70
|
|
|
|
|
154
|
my $stripOffsets = $$offsetInfo{0x111}; |
2175
|
70
|
100
|
100
|
|
|
261
|
if ($stripOffsets and $$stripOffsets[0]{PanasonicHack}) { |
2176
|
1
|
|
|
|
|
17
|
require Image::ExifTool::PanasonicRaw; |
2177
|
1
|
|
|
|
|
10
|
my $err = Image::ExifTool::PanasonicRaw::PatchRawDataOffset($offsetInfo, $raf, $ifd); |
2178
|
1
|
50
|
|
|
|
3
|
$err and $et->Error($err); |
2179
|
|
|
|
|
|
|
} |
2180
|
70
|
|
|
|
|
126
|
my $tagID; |
2181
|
|
|
|
|
|
|
# loop through all tags in reverse order so we save thumbnail |
2182
|
|
|
|
|
|
|
# data before main image data if both exist in the same IFD |
2183
|
70
|
|
|
|
|
366
|
foreach $tagID (reverse sort keys %$offsetInfo) { |
2184
|
140
|
|
|
|
|
255
|
my $tagInfo = $$offsetInfo{$tagID}[0]; |
2185
|
140
|
100
|
|
|
|
410
|
next unless $$tagInfo{IsOffset}; # handle byte counts with offsets |
2186
|
70
|
|
|
|
|
215
|
my $sizeInfo = $$offsetInfo{$$tagInfo{OffsetPair}}; |
2187
|
70
|
50
|
|
|
|
195
|
$sizeInfo or $et->Error("No size tag for $dirName:$$tagInfo{Name}"), next; |
2188
|
70
|
|
|
|
|
155
|
my $dataTag = $$tagInfo{DataTag}; |
2189
|
|
|
|
|
|
|
# write TIFF image data (strips or tiles) later if requested |
2190
|
70
|
100
|
100
|
|
|
606
|
if ($raf and defined $$origDirInfo{ImageData} and |
|
|
|
66
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
66
|
|
|
|
|
2191
|
|
|
|
|
|
|
($tagID == 0x111 or $tagID == 0x144 or |
2192
|
|
|
|
|
|
|
# also defer writing of other big data such as JpgFromRaw in NEF |
2193
|
|
|
|
|
|
|
($$sizeInfo[3][0] and |
2194
|
|
|
|
|
|
|
# (calculate approximate combined size of all blocks) |
2195
|
|
|
|
|
|
|
$$sizeInfo[3][0] * scalar(@{$$sizeInfo[3]}) > 1000000)) and |
2196
|
|
|
|
|
|
|
# but don't defer writing if replacing with new value |
2197
|
|
|
|
|
|
|
(not defined $dataTag or not defined $offsetData{$dataTag})) |
2198
|
|
|
|
|
|
|
{ |
2199
|
24
|
|
|
|
|
99
|
push @writeLater, [ $$offsetInfo{$tagID}, $sizeInfo ]; |
2200
|
|
|
|
|
|
|
} else { |
2201
|
46
|
|
|
|
|
172
|
push @offsetList, [ $$offsetInfo{$tagID}, $sizeInfo ]; |
2202
|
|
|
|
|
|
|
} |
2203
|
|
|
|
|
|
|
} |
2204
|
|
|
|
|
|
|
} else { |
2205
|
60
|
100
|
|
|
|
232
|
last unless @writeLater; |
2206
|
17
|
|
|
|
|
45
|
@offsetList = @writeLater; |
2207
|
|
|
|
|
|
|
} |
2208
|
87
|
|
|
|
|
193
|
my $offsetPair; |
2209
|
87
|
|
|
|
|
209
|
foreach $offsetPair (@offsetList) { |
2210
|
70
|
|
|
|
|
125
|
my ($tagInfo, $offsets, $count, $oldOffset) = @{$$offsetPair[0]}; |
|
70
|
|
|
|
|
211
|
|
2211
|
70
|
|
|
|
|
138
|
my ($cntInfo, $byteCounts, $count2, $oldSize, $format) = @{$$offsetPair[1]}; |
|
70
|
|
|
|
|
192
|
|
2212
|
|
|
|
|
|
|
# must be the same number of offset and byte count values |
2213
|
70
|
50
|
|
|
|
212
|
unless ($count == $count2) { |
2214
|
0
|
|
|
|
|
0
|
$et->Error("Offsets/ByteCounts disagree on count for $$tagInfo{Name}"); |
2215
|
0
|
|
|
|
|
0
|
return undef; |
2216
|
|
|
|
|
|
|
} |
2217
|
70
|
|
|
|
|
153
|
my $formatStr = $formatName[$format]; |
2218
|
|
|
|
|
|
|
# follow pointer to value data if necessary |
2219
|
70
|
50
|
|
|
|
209
|
$count > 1 and $offsets = Get32u(\$newData, $offsets); |
2220
|
70
|
|
|
|
|
156
|
my $n = $count * $formatSize[$format]; |
2221
|
70
|
50
|
|
|
|
209
|
$n > 4 and $byteCounts = Get32u(\$newData, $byteCounts); |
2222
|
70
|
50
|
33
|
|
|
434
|
if ($byteCounts < 0 or $byteCounts + $n > length($newData)) { |
2223
|
0
|
|
|
|
|
0
|
$et->Error("Error reading $$tagInfo{Name} byte counts"); |
2224
|
0
|
|
|
|
|
0
|
return undef; |
2225
|
|
|
|
|
|
|
} |
2226
|
|
|
|
|
|
|
# get offset base and data pos (abnormal for some preview images) |
2227
|
70
|
|
|
|
|
142
|
my ($dbase, $dpos, $wrongBase, $subIfdDataFixup); |
2228
|
70
|
100
|
|
|
|
227
|
if ($$tagInfo{IsOffset} eq '2') { |
2229
|
2
|
|
|
|
|
5
|
$dbase = $firstBase; |
2230
|
2
|
|
|
|
|
5
|
$dpos = $dataPos + $base - $firstBase; |
2231
|
|
|
|
|
|
|
} else { |
2232
|
68
|
|
|
|
|
155
|
$dbase = $base; |
2233
|
68
|
|
|
|
|
120
|
$dpos = $dataPos; |
2234
|
|
|
|
|
|
|
} |
2235
|
|
|
|
|
|
|
# use different base if necessary for some offsets (Minolta A200) |
2236
|
70
|
50
|
|
|
|
208
|
if ($$tagInfo{WrongBase}) { |
2237
|
0
|
|
|
|
|
0
|
my $self = $et; |
2238
|
|
|
|
|
|
|
#### eval WrongBase ($self) |
2239
|
0
|
|
0
|
|
|
0
|
$wrongBase = eval $$tagInfo{WrongBase} || 0; |
2240
|
0
|
|
|
|
|
0
|
$dbase += $wrongBase; |
2241
|
0
|
|
|
|
|
0
|
$dpos -= $wrongBase; |
2242
|
|
|
|
|
|
|
} else { |
2243
|
70
|
|
|
|
|
130
|
$wrongBase = 0; |
2244
|
|
|
|
|
|
|
} |
2245
|
70
|
|
|
|
|
218
|
my $oldOrder = GetByteOrder(); |
2246
|
70
|
|
|
|
|
156
|
my $dataTag = $$tagInfo{DataTag}; |
2247
|
|
|
|
|
|
|
# use different byte order for values of this offset pair if required (Minolta A200) |
2248
|
70
|
50
|
|
|
|
219
|
SetByteOrder($$tagInfo{ByteOrder}) if $$tagInfo{ByteOrder}; |
2249
|
|
|
|
|
|
|
# transfer the data referenced by all offsets of this tag |
2250
|
70
|
|
|
|
|
249
|
for ($n=0; $n<$count; ++$n) { |
2251
|
70
|
|
|
|
|
127
|
my ($oldEnd, $size); |
2252
|
70
|
100
|
66
|
|
|
353
|
if (@$oldOffset and @$oldSize) { |
2253
|
|
|
|
|
|
|
# calculate end offset of this block |
2254
|
68
|
|
|
|
|
153
|
$oldEnd = $$oldOffset[$n] + $$oldSize[$n]; |
2255
|
|
|
|
|
|
|
# update TIFF_END as if we read this data from file |
2256
|
68
|
|
|
|
|
356
|
UpdateTiffEnd($et, $oldEnd + $dbase); |
2257
|
|
|
|
|
|
|
} |
2258
|
70
|
|
|
|
|
176
|
my $offsetPos = $offsets + $n * 4; |
2259
|
70
|
|
|
|
|
156
|
my $byteCountPos = $byteCounts + $n * $formatSize[$format]; |
2260
|
70
|
100
|
|
|
|
211
|
if ($$tagInfo{PanasonicHack}) { |
2261
|
|
|
|
|
|
|
# use actual raw data length (may be different than StripByteCounts!) |
2262
|
1
|
|
|
|
|
3
|
$size = $$oldSize[$n]; |
2263
|
|
|
|
|
|
|
} else { |
2264
|
|
|
|
|
|
|
# use size of new data |
2265
|
69
|
|
|
|
|
235
|
$size = ReadValue(\$newData, $byteCountPos, $formatStr, 1, 4); |
2266
|
|
|
|
|
|
|
} |
2267
|
70
|
|
|
|
|
201
|
my $offset = $$oldOffset[$n]; |
2268
|
70
|
100
|
|
|
|
233
|
if (defined $offset) { |
|
|
50
|
|
|
|
|
|
2269
|
68
|
|
|
|
|
139
|
$offset -= $dpos; |
2270
|
|
|
|
|
|
|
} elsif ($size != 0xfeedfeed) { |
2271
|
0
|
|
|
|
|
0
|
$et->Error('Internal error (no offset)'); |
2272
|
0
|
|
|
|
|
0
|
return undef; |
2273
|
|
|
|
|
|
|
} |
2274
|
70
|
|
|
|
|
172
|
my $newOffset = length($newData) - $wrongBase; |
2275
|
70
|
|
|
|
|
121
|
my $buff; |
2276
|
|
|
|
|
|
|
# look for 'feed' code to use our new data |
2277
|
70
|
100
|
66
|
|
|
525
|
if ($size == 0xfeedfeed) { |
|
|
100
|
66
|
|
|
|
|
|
|
100
|
66
|
|
|
|
|
|
|
50
|
33
|
|
|
|
|
|
|
100
|
33
|
|
|
|
|
|
|
50
|
33
|
|
|
|
|
|
|
50
|
|
|
|
|
|
2278
|
4
|
50
|
|
|
|
17
|
unless (defined $dataTag) { |
2279
|
0
|
|
|
|
|
0
|
$et->Error("No DataTag defined for $$tagInfo{Name}"); |
2280
|
0
|
|
|
|
|
0
|
return undef; |
2281
|
|
|
|
|
|
|
} |
2282
|
4
|
50
|
|
|
|
22
|
unless (defined $offsetData{$dataTag}) { |
2283
|
0
|
|
|
|
|
0
|
$et->Error("Internal error (no $dataTag)"); |
2284
|
0
|
|
|
|
|
0
|
return undef; |
2285
|
|
|
|
|
|
|
} |
2286
|
4
|
50
|
|
|
|
18
|
if ($count > 1) { |
2287
|
0
|
|
|
|
|
0
|
$et->Error("Can't modify $$tagInfo{Name} with count $count"); |
2288
|
0
|
|
|
|
|
0
|
return undef; |
2289
|
|
|
|
|
|
|
} |
2290
|
4
|
|
|
|
|
12
|
$buff = $offsetData{$dataTag}; |
2291
|
4
|
50
|
|
|
|
16
|
if ($formatSize[$format] != 4) { |
2292
|
0
|
|
|
|
|
0
|
$et->Error("$$cntInfo{Name} is not int32"); |
2293
|
0
|
|
|
|
|
0
|
return undef; |
2294
|
|
|
|
|
|
|
} |
2295
|
|
|
|
|
|
|
# set the data size |
2296
|
4
|
|
|
|
|
9
|
$size = length($buff); |
2297
|
4
|
|
|
|
|
18
|
Set32u($size, \$newData, $byteCountPos); |
2298
|
|
|
|
|
|
|
} elsif ($ifd < 0) { |
2299
|
|
|
|
|
|
|
# pad if necessary (but don't pad contiguous image blocks) |
2300
|
24
|
|
|
|
|
61
|
my $pad = 0; |
2301
|
24
|
0
|
33
|
|
|
128
|
++$pad if ($blockSize + $size) & 0x01 and ($n+1 >= $count or |
|
|
|
66
|
|
|
|
|
2302
|
|
|
|
|
|
|
not $oldEnd or $oldEnd != $$oldOffset[$n+1]); |
2303
|
|
|
|
|
|
|
# preserve original image padding if specified |
2304
|
24
|
0
|
66
|
|
|
110
|
if ($$origDirInfo{PreserveImagePadding} and $n+1 < $count and |
|
|
|
33
|
|
|
|
|
|
|
|
33
|
|
|
|
|
2305
|
|
|
|
|
|
|
$oldEnd and $$oldOffset[$n+1] > $oldEnd) |
2306
|
|
|
|
|
|
|
{ |
2307
|
0
|
|
|
|
|
0
|
$pad = $$oldOffset[$n+1] - $oldEnd; |
2308
|
|
|
|
|
|
|
} |
2309
|
|
|
|
|
|
|
# copy data later |
2310
|
24
|
|
|
|
|
87
|
push @imageData, [$offset+$dbase+$dpos, $size, $pad]; |
2311
|
24
|
|
|
|
|
50
|
$newOffset += $blockSize; # data comes after other deferred data |
2312
|
|
|
|
|
|
|
# create fixup for SubIFD ImageData |
2313
|
24
|
100
|
66
|
|
|
94
|
if ($imageDataFlag eq 'SubIFD' and not $subIfdDataFixup) { |
2314
|
4
|
|
|
|
|
31
|
$subIfdDataFixup = new Image::ExifTool::Fixup; |
2315
|
4
|
|
|
|
|
15
|
$imageData[-1][4] = $subIfdDataFixup; |
2316
|
|
|
|
|
|
|
} |
2317
|
24
|
|
|
|
|
41
|
$size += $pad; # account for pad byte if necessary |
2318
|
|
|
|
|
|
|
# return ImageData list |
2319
|
24
|
|
|
|
|
58
|
$$origDirInfo{ImageData} = \@imageData; |
2320
|
|
|
|
|
|
|
} elsif ($offset >= 0 and $offset+$size <= $dataLen) { |
2321
|
|
|
|
|
|
|
# take data from old dir data buffer |
2322
|
37
|
|
|
|
|
158
|
$buff = substr($$dataPt, $offset, $size); |
2323
|
|
|
|
|
|
|
} elsif ($$et{TIFF_TYPE} eq 'MRW') { |
2324
|
|
|
|
|
|
|
# TTW segment must be an even 4 bytes long, so pad now if necessary |
2325
|
0
|
|
|
|
|
0
|
my $n = length $newData; |
2326
|
0
|
0
|
|
|
|
0
|
$buff = ($n & 0x03) ? "\0" x (4 - ($n & 0x03)) : ''; |
2327
|
0
|
|
|
|
|
0
|
$size = length($buff); |
2328
|
|
|
|
|
|
|
# data exists after MRW TTW segment |
2329
|
0
|
0
|
|
|
|
0
|
$ttwLen = length($newData) + $size unless defined $ttwLen; |
2330
|
0
|
|
|
|
|
0
|
$newOffset = $offset + $dpos + $ttwLen - $dataLen; |
2331
|
|
|
|
|
|
|
} elsif ($raf and $raf->Seek($offset+$dbase+$dpos,0) and |
2332
|
|
|
|
|
|
|
$raf->Read($buff,$size) == $size) |
2333
|
|
|
|
|
|
|
{ |
2334
|
|
|
|
|
|
|
# (data was read OK) |
2335
|
|
|
|
|
|
|
# patch incorrect ThumbnailOffset in Sony A100 1.00 ARW images |
2336
|
4
|
0
|
33
|
|
|
23
|
if ($$et{TIFF_TYPE} eq 'ARW' and $$tagInfo{Name} eq 'ThumbnailOffset' and |
|
|
|
33
|
|
|
|
|
|
|
|
0
|
|
|
|
|
2337
|
|
|
|
|
|
|
$$et{Model} eq 'DSLR-A100' and $buff !~ /^\xff\xd8\xff/) |
2338
|
|
|
|
|
|
|
{ |
2339
|
0
|
|
|
|
|
0
|
my $pos = $offset + $dbase + $dpos; |
2340
|
0
|
|
|
|
|
0
|
my $try; |
2341
|
0
|
0
|
0
|
|
|
0
|
if ($pos < 0x10000 and $raf->Seek($pos+0x10000,0) and |
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
2342
|
|
|
|
|
|
|
$raf->Read($try,$size) == $size and $try =~ /^\xff\xd8\xff/) |
2343
|
|
|
|
|
|
|
{ |
2344
|
0
|
|
|
|
|
0
|
$buff = $try; |
2345
|
0
|
|
|
|
|
0
|
$et->Warn('Adjusted incorrect A100 ThumbnailOffset', 1); |
2346
|
|
|
|
|
|
|
} else { |
2347
|
0
|
|
|
|
|
0
|
$et->Error('Invalid ThumbnailImage'); |
2348
|
|
|
|
|
|
|
} |
2349
|
|
|
|
|
|
|
} |
2350
|
|
|
|
|
|
|
} elsif ($$tagInfo{Name} eq 'ThumbnailOffset' and $offset>=0 and $offset<$dataLen) { |
2351
|
|
|
|
|
|
|
# Grrr. The Canon 350D writes the thumbnail with an incorrect byte count |
2352
|
0
|
|
|
|
|
0
|
my $diff = $offset + $size - $dataLen; |
2353
|
0
|
|
|
|
|
0
|
$et->Warn("ThumbnailImage runs outside EXIF data by $diff bytes (truncated)",1); |
2354
|
|
|
|
|
|
|
# set the size to the available data |
2355
|
0
|
|
|
|
|
0
|
$size -= $diff; |
2356
|
0
|
0
|
|
|
|
0
|
unless (WriteValue($size, $formatStr, 1, \$newData, $byteCountPos)) { |
2357
|
0
|
|
|
|
|
0
|
warn 'Internal error writing thumbnail size'; |
2358
|
|
|
|
|
|
|
} |
2359
|
|
|
|
|
|
|
# get the truncated image |
2360
|
0
|
|
|
|
|
0
|
$buff = substr($$dataPt, $offset, $size); |
2361
|
|
|
|
|
|
|
} elsif ($$tagInfo{Name} eq 'PreviewImageStart' and $$et{FILE_TYPE} eq 'JPEG') { |
2362
|
|
|
|
|
|
|
# try to load the preview image using the specified offset |
2363
|
1
|
|
|
|
|
2
|
undef $buff; |
2364
|
1
|
|
|
|
|
3
|
my $r = $$et{RAF}; |
2365
|
1
|
50
|
33
|
|
|
6
|
if ($r and not $raf) { |
2366
|
1
|
|
|
|
|
4
|
my $tell = $r->Tell(); |
2367
|
|
|
|
|
|
|
# read and validate |
2368
|
1
|
50
|
33
|
|
|
7
|
undef $buff unless $r->Seek($offset+$base+$dataPos,0) and |
|
|
|
33
|
|
|
|
|
2369
|
|
|
|
|
|
|
$r->Read($buff,$size) == $size and |
2370
|
|
|
|
|
|
|
$buff =~ /^.\xd8\xff[\xc4\xdb\xe0-\xef]/s; |
2371
|
1
|
50
|
|
|
|
5
|
$r->Seek($tell, 0) or $et->Error('Seek error'), return undef; |
2372
|
|
|
|
|
|
|
} |
2373
|
|
|
|
|
|
|
# set flag if we must load PreviewImage |
2374
|
1
|
50
|
|
|
|
5
|
$buff = 'LOAD_PREVIEW' unless defined $buff; |
2375
|
|
|
|
|
|
|
} else { |
2376
|
0
|
|
0
|
|
|
0
|
my $dataName = $dataTag || $$tagInfo{Name}; |
2377
|
0
|
0
|
|
|
|
0
|
return undef if $et->Error("Error reading $dataName data in $name", $inMakerNotes); |
2378
|
0
|
|
|
|
|
0
|
$buff = ''; |
2379
|
|
|
|
|
|
|
} |
2380
|
70
|
100
|
|
|
|
265
|
if ($$tagInfo{Name} eq 'PreviewImageStart') { |
2381
|
14
|
100
|
66
|
|
|
128
|
if ($$et{FILE_TYPE} eq 'JPEG' and not $$tagInfo{MakerPreview}) { |
|
|
50
|
33
|
|
|
|
|
2382
|
|
|
|
|
|
|
# hold onto the PreviewImage until we can determine if it fits |
2383
|
|
|
|
|
|
|
$$et{PREVIEW_INFO} or $$et{PREVIEW_INFO} = { |
2384
|
8
|
100
|
|
|
|
57
|
Data => $buff, |
2385
|
|
|
|
|
|
|
Fixup => new Image::ExifTool::Fixup, |
2386
|
|
|
|
|
|
|
}; |
2387
|
8
|
100
|
66
|
|
|
86
|
if ($$tagInfo{IsOffset} and $$tagInfo{IsOffset} eq '2') { |
2388
|
2
|
|
|
|
|
8
|
$$et{PREVIEW_INFO}{NoBaseShift} = 1; |
2389
|
|
|
|
|
|
|
} |
2390
|
8
|
100
|
66
|
|
|
58
|
if ($offset >= 0 and $offset+$size <= $dataLen) { |
2391
|
|
|
|
|
|
|
# set flag indicating this preview wasn't in a trailer |
2392
|
7
|
|
|
|
|
22
|
$$et{PREVIEW_INFO}{WasContained} = 1; |
2393
|
|
|
|
|
|
|
} |
2394
|
8
|
|
|
|
|
20
|
$buff = ''; |
2395
|
|
|
|
|
|
|
} elsif ($$et{TIFF_TYPE} eq 'ARW' and $$et{Model} eq 'DSLR-A100') { |
2396
|
|
|
|
|
|
|
# the A100 double-references the same preview, so ignore the |
2397
|
|
|
|
|
|
|
# second one (the offset and size will be patched later) |
2398
|
0
|
0
|
|
|
|
0
|
next if $$et{A100PreviewLength}; |
2399
|
0
|
0
|
|
|
|
0
|
$$et{A100PreviewLength} = length $buff if defined $buff; |
2400
|
|
|
|
|
|
|
} |
2401
|
|
|
|
|
|
|
} |
2402
|
|
|
|
|
|
|
# update offset accordingly and add to end of new data |
2403
|
70
|
|
|
|
|
290
|
Set32u($newOffset, \$newData, $offsetPos); |
2404
|
|
|
|
|
|
|
# add a pointer to fix up this offset value (marked with DataTag name) |
2405
|
70
|
|
|
|
|
338
|
$fixup->AddFixup($offsetPos, $dataTag); |
2406
|
|
|
|
|
|
|
# also add to subIfdDataFixup if necessary |
2407
|
70
|
100
|
|
|
|
221
|
$subIfdDataFixup->AddFixup($offsetPos, $dataTag) if $subIfdDataFixup; |
2408
|
|
|
|
|
|
|
# must also (sometimes) update StripOffsets in Panasonic RW2 images |
2409
|
70
|
|
|
|
|
168
|
my $otherPos = $$offsetPair[0][5]; |
2410
|
70
|
0
|
33
|
|
|
266
|
if ($otherPos and $$tagInfo{PanasonicHack}) { |
2411
|
0
|
|
|
|
|
0
|
Set32u($newOffset, \$newData, $otherPos); |
2412
|
0
|
|
|
|
|
0
|
$fixup->AddFixup($otherPos, $dataTag); |
2413
|
|
|
|
|
|
|
} |
2414
|
70
|
100
|
|
|
|
189
|
if ($ifd >= 0) { |
2415
|
|
|
|
|
|
|
# buff length must be even (Note: may have changed since $size was set) |
2416
|
46
|
100
|
|
|
|
174
|
$buff .= "\0" if length($buff) & 0x01; |
2417
|
46
|
|
|
|
|
209
|
$newData .= $buff; # add this strip to the data |
2418
|
|
|
|
|
|
|
} else { |
2419
|
24
|
|
|
|
|
80
|
$blockSize += $size; # keep track of total size |
2420
|
|
|
|
|
|
|
} |
2421
|
|
|
|
|
|
|
} |
2422
|
70
|
|
|
|
|
234
|
SetByteOrder($oldOrder); |
2423
|
|
|
|
|
|
|
} |
2424
|
|
|
|
|
|
|
} |
2425
|
|
|
|
|
|
|
# verify that nothing else got written after determining TTW length |
2426
|
60
|
50
|
33
|
|
|
252
|
if (defined $ttwLen and $ttwLen != length($newData)) { |
2427
|
0
|
|
|
|
|
0
|
$et->Error('Internal error writing MRW TTW'); |
2428
|
|
|
|
|
|
|
} |
2429
|
|
|
|
|
|
|
} |
2430
|
|
|
|
|
|
|
# |
2431
|
|
|
|
|
|
|
# set offsets and generate fixups for tag values which were too large for memory |
2432
|
|
|
|
|
|
|
# |
2433
|
324
|
|
|
|
|
570
|
$blockSize = 0; |
2434
|
324
|
|
|
|
|
665
|
foreach $blockInfo (@imageData) { |
2435
|
28
|
|
|
|
|
73
|
my ($pos, $size, $pad, $entry, $subFix) = @$blockInfo; |
2436
|
28
|
50
|
|
|
|
87
|
if (defined $entry) { |
2437
|
0
|
|
|
|
|
0
|
my $format = Get16u(\$newData, $entry + 2); |
2438
|
0
|
0
|
0
|
|
|
0
|
if ($format < 1 or $format > 13) { |
2439
|
0
|
|
|
|
|
0
|
$et->Error('Internal error copying huge value'); |
2440
|
0
|
|
|
|
|
0
|
last; |
2441
|
|
|
|
|
|
|
} else { |
2442
|
|
|
|
|
|
|
# set count and offset in directory entry |
2443
|
0
|
|
|
|
|
0
|
Set32u($size / $formatSize[$format], \$newData, $entry + 4); |
2444
|
0
|
|
|
|
|
0
|
Set32u(length($newData)+$blockSize, \$newData, $entry + 8); |
2445
|
0
|
|
|
|
|
0
|
$fixup->AddFixup($entry + 8); |
2446
|
|
|
|
|
|
|
# create special fixup for SubIFD data |
2447
|
0
|
0
|
|
|
|
0
|
if ($imageDataFlag eq 'SubIFD') { |
2448
|
0
|
|
|
|
|
0
|
my $subIfdDataFixup = new Image::ExifTool::Fixup; |
2449
|
0
|
|
|
|
|
0
|
$subIfdDataFixup->AddFixup($entry + 8); |
2450
|
|
|
|
|
|
|
# save fixup in imageData list |
2451
|
0
|
|
|
|
|
0
|
$$blockInfo[4] = $subIfdDataFixup; |
2452
|
|
|
|
|
|
|
} |
2453
|
|
|
|
|
|
|
# must reset entry pointer so we don't use it again in a parent IFD! |
2454
|
0
|
|
|
|
|
0
|
$$blockInfo[3] = undef; |
2455
|
|
|
|
|
|
|
} |
2456
|
|
|
|
|
|
|
} |
2457
|
|
|
|
|
|
|
# apply additional shift required for contained SubIFD image data offsets |
2458
|
28
|
100
|
100
|
|
|
121
|
if ($subFix and defined $$subFix{BlockLen} and $numBlocks > 0) { |
|
|
|
66
|
|
|
|
|
2459
|
|
|
|
|
|
|
# our offset expects the data at the end of the SubIFD block (BlockLen + Start), |
2460
|
|
|
|
|
|
|
# but it will actually be at length($newData) + $blockSize. So adjust |
2461
|
|
|
|
|
|
|
# accordingly (and subtract an extra Start because this shift is applied later) |
2462
|
4
|
|
|
|
|
16
|
$$subFix{Shift} += length($newData) - $$subFix{BlockLen} - 2 * $$subFix{Start} + $blockSize; |
2463
|
4
|
|
|
|
|
14
|
$subFix->ApplyFixup(\$newData); |
2464
|
|
|
|
|
|
|
} |
2465
|
28
|
|
|
|
|
110
|
$blockSize += $size + $pad; |
2466
|
28
|
|
|
|
|
56
|
--$numBlocks; |
2467
|
|
|
|
|
|
|
} |
2468
|
|
|
|
|
|
|
# |
2469
|
|
|
|
|
|
|
# apply final shift to new data position if this is the top level IFD |
2470
|
|
|
|
|
|
|
# |
2471
|
324
|
100
|
|
|
|
1006
|
unless ($$dirInfo{Fixup}) { |
2472
|
122
|
|
|
|
|
332
|
my $hdrPtr = $$dirInfo{HeaderPtr}; |
2473
|
122
|
100
|
50
|
|
|
418
|
my $newDataPos = $hdrPtr ? length $$hdrPtr : $$dirInfo{NewDataPos} || 0; |
2474
|
|
|
|
|
|
|
# adjust CanonVRD offset to point to end of regular TIFF if necessary |
2475
|
|
|
|
|
|
|
# (NOTE: This will be incorrect if multiple trailers exist, |
2476
|
|
|
|
|
|
|
# but it is unlikely that it could ever be correct in this case anyway. |
2477
|
|
|
|
|
|
|
# Also, this doesn't work for JPEG images (but CanonDPP doesn't set |
2478
|
|
|
|
|
|
|
# this when editing JPEG images anyway)) |
2479
|
122
|
|
|
|
|
764
|
$fixup->SetMarkerPointers(\$newData, 'CanonVRD', length($newData) + $blockSize); |
2480
|
122
|
50
|
|
|
|
396
|
if ($newDataPos) { |
2481
|
122
|
|
|
|
|
293
|
$$fixup{Shift} += $newDataPos; |
2482
|
122
|
|
|
|
|
446
|
$fixup->ApplyFixup(\$newData); |
2483
|
|
|
|
|
|
|
} |
2484
|
|
|
|
|
|
|
# save fixup for adjusting Leica trailer offset if necessary |
2485
|
122
|
50
|
|
|
|
705
|
$$et{LeicaTrailer}{Fixup}->AddFixup($fixup) if $$et{LeicaTrailer}; |
2486
|
|
|
|
|
|
|
# save fixup for PreviewImage in JPEG file if necessary |
2487
|
122
|
|
|
|
|
317
|
my $previewInfo = $$et{PREVIEW_INFO}; |
2488
|
122
|
100
|
66
|
|
|
928
|
if ($previewInfo) { |
|
|
100
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
2489
|
6
|
|
|
|
|
20
|
my $pt = \$$previewInfo{Data}; # image data or 'LOAD_PREVIEW' flag |
2490
|
|
|
|
|
|
|
# now that we know the size of the EXIF data, first test to see if our new image fits |
2491
|
|
|
|
|
|
|
# inside the EXIF segment (remember about the TIFF and EXIF headers: 8+6 bytes) |
2492
|
6
|
100
|
66
|
|
|
78
|
if (($$pt ne 'LOAD_PREVIEW' and length($$pt) + length($newData) + 14 <= 0xfffd and |
|
|
|
66
|
|
|
|
|
|
|
|
66
|
|
|
|
|
2493
|
|
|
|
|
|
|
not $$previewInfo{IsTrailer}) or |
2494
|
|
|
|
|
|
|
$$previewInfo{IsShort}) # must fit in this segment if using short pointers |
2495
|
|
|
|
|
|
|
{ |
2496
|
|
|
|
|
|
|
# It fits! (or must exist in EXIF segment), so fixup the |
2497
|
|
|
|
|
|
|
# PreviewImage pointers and stuff the preview image in here |
2498
|
5
|
|
|
|
|
15
|
my $newPos = length($newData) + $newDataPos; |
2499
|
5
|
|
50
|
|
|
28
|
$newPos += ($$previewInfo{BaseShift} || 0); |
2500
|
5
|
50
|
|
|
|
18
|
if ($$previewInfo{Relative}) { |
2501
|
|
|
|
|
|
|
# calculate our base by looking at how far the pointer got shifted |
2502
|
0
|
|
0
|
|
|
0
|
$newPos -= ($fixup->GetMarkerPointers(\$newData, 'PreviewImage') || 0); |
2503
|
|
|
|
|
|
|
} |
2504
|
5
|
|
|
|
|
26
|
$fixup->SetMarkerPointers(\$newData, 'PreviewImage', $newPos); |
2505
|
5
|
|
|
|
|
15
|
$newData .= $$pt; |
2506
|
|
|
|
|
|
|
# set flag to delete old preview unless it was contained in the EXIF |
2507
|
5
|
50
|
|
|
|
28
|
$$et{DEL_PREVIEW} = 1 unless $$et{PREVIEW_INFO}{WasContained}; |
2508
|
5
|
|
|
|
|
14
|
delete $$et{PREVIEW_INFO}; # done with our preview data |
2509
|
|
|
|
|
|
|
} else { |
2510
|
|
|
|
|
|
|
# Doesn't fit, or we still don't know, so save fixup information |
2511
|
|
|
|
|
|
|
# and put the preview at the end of the file |
2512
|
1
|
50
|
|
|
|
4
|
$$previewInfo{Fixup} or $$previewInfo{Fixup} = new Image::ExifTool::Fixup; |
2513
|
1
|
|
|
|
|
5
|
$$previewInfo{Fixup}->AddFixup($fixup); |
2514
|
|
|
|
|
|
|
} |
2515
|
|
|
|
|
|
|
} elsif (defined $newData and $deleteAll) { |
2516
|
6
|
|
|
|
|
17
|
$newData = ''; # delete both IFD0 and IFD1 since only mandatory tags remain |
2517
|
|
|
|
|
|
|
} elsif ($$et{A100PreviewLength}) { |
2518
|
|
|
|
|
|
|
# save preview image start for patching A100 quirks later |
2519
|
0
|
|
|
|
|
0
|
$$et{A100PreviewStart} = $fixup->GetMarkerPointers(\$newData, 'PreviewImage'); |
2520
|
|
|
|
|
|
|
} |
2521
|
|
|
|
|
|
|
# save location of last IFD for use in Canon RAW header |
2522
|
122
|
100
|
|
|
|
446
|
if ($newDataPos == 16) { |
2523
|
4
|
|
|
|
|
23
|
my @ifdPos = $fixup->GetMarkerPointers(\$newData,'NextIFD'); |
2524
|
4
|
|
|
|
|
16
|
$$origDirInfo{LastIFD} = pop @ifdPos; |
2525
|
|
|
|
|
|
|
} |
2526
|
|
|
|
|
|
|
# recrypt SR2 SubIFD data if necessary |
2527
|
122
|
|
|
|
|
377
|
my $key = $$et{SR2SubIFDKey}; |
2528
|
122
|
50
|
|
|
|
626
|
if ($key) { |
2529
|
0
|
|
|
|
|
0
|
my $start = $fixup->GetMarkerPointers(\$newData, 'SR2SubIFDOffset'); |
2530
|
0
|
|
|
|
|
0
|
my $len = $$et{SR2SubIFDLength}; |
2531
|
|
|
|
|
|
|
# (must subtract 8 for size of TIFF header) |
2532
|
0
|
0
|
0
|
|
|
0
|
if ($start and $start - 8 + $len <= length $newData) { |
2533
|
0
|
|
|
|
|
0
|
require Image::ExifTool::Sony; |
2534
|
0
|
|
|
|
|
0
|
Image::ExifTool::Sony::Decrypt(\$newData, $start - 8, $len, $key); |
2535
|
|
|
|
|
|
|
} |
2536
|
|
|
|
|
|
|
} |
2537
|
|
|
|
|
|
|
} |
2538
|
|
|
|
|
|
|
# return empty string if no entries in directory |
2539
|
|
|
|
|
|
|
# (could be up to 10 bytes and still be empty) |
2540
|
324
|
100
|
66
|
|
|
1653
|
$newData = '' if defined $newData and length($newData) < 12; |
2541
|
|
|
|
|
|
|
|
2542
|
|
|
|
|
|
|
# set changed if ForceWrite tag was set to "EXIF" |
2543
|
324
|
50
|
66
|
|
|
2087
|
++$$et{CHANGED} if defined $newData and length $newData and $$et{FORCE_WRITE}{EXIF}; |
|
|
|
66
|
|
|
|
|
2544
|
|
|
|
|
|
|
|
2545
|
324
|
|
|
|
|
2749
|
return $newData; # return our directory data |
2546
|
|
|
|
|
|
|
} |
2547
|
|
|
|
|
|
|
|
2548
|
|
|
|
|
|
|
1; # end |
2549
|
|
|
|
|
|
|
|
2550
|
|
|
|
|
|
|
__END__ |