/usr/share/perl5/Image/ExifTool/MIFF.pm is in libimage-exiftool-perl 10.10-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 | #------------------------------------------------------------------------------
# File: MIFF.pm
#
# Description: Read Magick Image File Format meta information
#
# Revisions: 06/10/2005 - P. Harvey Created
#
# References: 1) http://www.imagemagick.org/script/miff.php
# 2) http://www.cs.uni.edu/Help/ImageMagick/www/miff.html
#------------------------------------------------------------------------------
package Image::ExifTool::MIFF;
use strict;
use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
$VERSION = '1.07';
# MIFF chunks
%Image::ExifTool::MIFF::Main = (
GROUPS => { 2 => 'Image' },
NOTES => q{
The MIFF (Magick Image File Format) format allows aribrary tag names to be
used. Only the standard tag names are listed below, however ExifTool will
decode any tags found in the image.
},
'background-color' => 'BackgroundColor',
'blue-primary' => 'BluePrimary',
'border-color' => 'BorderColor',
'matt-color' => 'MattColor',
class => 'Class',
colors => 'Colors',
colorspace => 'ColorSpace',
columns => 'ImageWidth',
compression => 'Compression',
delay => 'Delay',
depth => 'Depth',
dispose => 'Dispose',
gamma => 'Gamma',
'green-primary' => 'GreenPrimary',
id => 'ID',
iterations => 'Iterations',
label => 'Label',
matte => 'Matte',
montage => 'Montage',
packets => 'Packets',
page => 'Page',
# profile tags. Note the SubDirectory is not used by ProcessMIFF(),
# but is inserted for documentation purposes only
'profile-APP1' => [
# [this list is just for the sake of the documentation]
{
Name => 'APP1_Profile',
SubDirectory => {
TagTable => 'Image::ExifTool::Exif::Main',
},
},
{
Name => 'APP1_Profile',
SubDirectory => {
TagTable => 'Image::ExifTool::XMP::Main',
},
},
],
'profile-exif' => { # haven't seen this, but it would make sense - PH
Name => 'EXIF_Profile',
SubDirectory => {
TagTable => 'Image::ExifTool::Exif::Main',
},
},
'profile-icc' => {
Name => 'ICC_Profile',
SubDirectory => {
TagTable => 'Image::ExifTool::ICC_Profile::Main',
},
},
'profile-iptc' => {
Name => 'IPTC_Profile',
SubDirectory => {
TagTable => 'Image::ExifTool::Photoshop::Main',
},
},
'profile-xmp' => { # haven't seen this, but it would make sense - PH
Name => 'XMP_Profile',
SubDirectory => {
TagTable => 'Image::ExifTool::XMP::Main',
},
},
'red-primary' => 'RedPrimary',
'rendering-intent' => 'RenderingIntent',
resolution => 'Resolution',
rows => 'ImageHeight',
scene => 'Scene',
signature => 'Signature',
units => 'Units',
'white-point' => 'WhitePoint',
);
#------------------------------------------------------------------------------
# Extract meta information from a MIFF image
# Inputs: 0) ExifTool object reference, 1) dirInfo reference
# Returns: 1 on success, 0 if this wasn't a valid MIFF image
sub ProcessMIFF($$)
{
my ($et, $dirInfo) = @_;
my $raf = $$dirInfo{RAF};
my $verbose = $$et{OPTIONS}{Verbose};
my ($hdr, $buff);
# validate the MIFF file (note: MIFF files _may_ begin with other
# characters, but this starting sequence is strongly suggested.)
return 0 unless $raf->Read($hdr, 14) == 14;
return 0 unless $hdr eq 'id=ImageMagick';
$et->SetFileType(); # set the FileType tag
# set end-of-line character sequence to read to end of the TEXT
# section for new-type MIFF files (text ends with Colon+Ctrl-Z)
# Old MIFF files end with Colon+Linefeed, so this will likely
# slurp those entire files, which will be slower, but will work
# OK except that the profile information won't be decoded
local $/ = ":\x1a";
my $mode = '';
my @profiles;
if ($raf->ReadLine($buff)) {
chomp $buff; # remove end-of-line chars
my $tagTablePtr = GetTagTable('Image::ExifTool::MIFF::Main');
my @entries = split ' ', $buff;
unshift @entries, $hdr; # put the ID back in
my ($tag, $val);
foreach (@entries) {
if ($mode eq 'com') {
$mode = '' if /\}$/;
next;
} elsif (/^\{/) {
$mode = 'com'; # read to the end of the comment
next;
}
if ($mode eq 'val') {
$val .= " $_"; # join back together with a space
next unless /\}$/;
$mode = '';
$val =~ s/(^\{|\}$)//g; # remove braces
} elsif (/(.+)=(.+)/) {
($tag, $val) = ($1, $2);
if ($val =~ /^\{/) {
$mode = 'val'; # read to the end of the value data
next;
}
} elsif (/^:/) {
# this could be the end of an old-style MIFF file
last;
} else {
# something we don't recognize -- stop parsing here
$et->Warn('Unrecognized MIFF data');
last;
}
my $tagInfo = $et->GetTagInfo($tagTablePtr, $tag);
unless ($tagInfo) {
$tagInfo = { Name => $tag };
AddTagToTable($tagTablePtr, $tag, $tagInfo);
}
$verbose and $et->VerboseInfo($tag, $tagInfo,
Table => $tagTablePtr,
DataPt => \$val,
);
# handle profile tags specially
if ($tag =~ /^profile-(.*)/) {
push @profiles, [$1, $val];
} else {
$et->FoundTag($tagInfo, $val);
}
}
}
# process profile information
foreach (@profiles) {
my ($type, $len) = @{$_};
unless ($len =~ /^\d+$/) {
$et->Warn("Invalid length for $type profile");
last; # don't try to read the rest
}
unless ($raf->Read($buff, $len) == $len) {
$et->Warn("Error reading $type profile ($len bytes)");
next;
}
my $processed = 0;
my %dirInfo = (
Parent => 'PNG',
DataPt => \$buff,
DataPos => $raf->Tell() - $len,
DataLen => $len,
DirStart => 0,
DirLen => $len,
);
if ($type eq 'icc') {
# ICC Profile information
my $tagTablePtr = GetTagTable('Image::ExifTool::ICC_Profile::Main');
$processed = $et->ProcessDirectory(\%dirInfo, $tagTablePtr);
} elsif ($type eq 'iptc') {
if ($buff =~ /^8BIM/) {
# Photoshop information
my $tagTablePtr = GetTagTable('Image::ExifTool::Photoshop::Main');
$processed = $et->ProcessDirectory(\%dirInfo, $tagTablePtr);
}
# I haven't seen 'exif' or 'xmp' profile types yet, but I have seen them
# in newer PNG files so presumably they are possible here as well - PH
} elsif ($type eq 'APP1' or $type eq 'exif' or $type eq 'xmp') {
if ($buff =~ /^$Image::ExifTool::exifAPP1hdr/) {
# APP1 EXIF
my $hdrLen = length($Image::ExifTool::exifAPP1hdr);
$dirInfo{DirStart} += $hdrLen;
$dirInfo{DirLen} -= $hdrLen;
# use the usual position for EXIF data: 12 bytes from start of file
# (this may be wrong, but I can't see where the PNG stores this information)
$dirInfo{Base} = 12; # this is the usual value
$processed = $et->ProcessTIFF(\%dirInfo);
} elsif ($buff =~ /^$Image::ExifTool::xmpAPP1hdr/) {
# APP1 XMP
my $hdrLen = length($Image::ExifTool::xmpAPP1hdr);
my $tagTablePtr = GetTagTable('Image::ExifTool::XMP::Main');
$dirInfo{DirStart} += $hdrLen;
$dirInfo{DirLen} -= $hdrLen;
$processed = $et->ProcessDirectory(\%dirInfo, $tagTablePtr);
}
}
unless ($processed) {
$et->Warn("Unknown MIFF $type profile data");
if ($verbose) {
$et->VerboseDir($type, 0, $len);
$et->VerboseDump(\$buff);
}
}
}
return 1;
}
1; # end
__END__
=head1 NAME
Image::ExifTool::MIFF - Read Magick Image File Format meta information
=head1 SYNOPSIS
This module is used by Image::ExifTool
=head1 DESCRIPTION
This module contains routines required by Image::ExifTool to read MIFF
(Magick Image File Format) images.
=head1 AUTHOR
Copyright 2003-2016, Phil Harvey (phil at owl.phy.queensu.ca)
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 REFERENCES
=over 4
=item L<http://www.imagemagick.org/script/miff.php>
=item L<http://www.cs.uni.edu/Help/ImageMagick/www/miff.html>
=back
=head1 SEE ALSO
L<Image::ExifTool::TagNames/MIFF Tags>,
L<Image::ExifTool(3pm)|Image::ExifTool>
=cut
|