/usr/share/perl5/Image/ExifTool/HP.pm is in libimage-exiftool-perl 10.40-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 | #------------------------------------------------------------------------------
# File: HP.pm
#
# Description: Hewlett-Packard maker notes tags
#
# Revisions: 2007-05-03 - P. Harvey Created
#------------------------------------------------------------------------------
package Image::ExifTool::HP;
use strict;
use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
$VERSION = '1.04';
sub ProcessHP($$$);
sub ProcessTDHD($$$);
# HP EXIF-format maker notes (or is it Vivitar?)
%Image::ExifTool::HP::Main = (
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
NOTES => q{
These tables list tags found in the maker notes of some Hewlett-Packard
camera models.
The first table lists tags found in the EXIF-format maker notes of the
PhotoSmart 720 (also used by the Vivitar ViviCam 3705, 3705B and 3715).
},
0x0e00 => {
Name => 'PrintIM',
Description => 'Print Image Matching',
SubDirectory => {
TagTable => 'Image::ExifTool::PrintIM::Main',
},
},
);
# other types of HP maker notes
%Image::ExifTool::HP::Type2 = (
PROCESS_PROC => \&ProcessHP,
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
NOTES => 'These tags are used by the PhotoSmart E427.',
'PreviewImage' => {
Name => 'PreviewImage',
Groups => { 2 => 'Preview' },
RawConv => '$self->ValidateImage(\$val,$tag)',
},
'Serial Number' => 'SerialNumber',
'Lens Shading' => 'LensShading',
);
%Image::ExifTool::HP::Type4 = (
PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData,
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
NOTES => 'These tags are used by the PhotoSmart M627.',
0x0c => {
Name => 'MaxAperture',
Format => 'int16u',
ValueConv => '$val / 10',
},
0x10 => {
Name => 'ExposureTime',
Format => 'int32u',
ValueConv => '$val / 1e6',
PrintConv => 'Image::ExifTool::Exif::PrintExposureTime($val)',
},
0x14 => {
Name => 'CameraDateTime',
Groups => { 2 => 'Time' },
Format => 'string[20]',
},
0x34 => {
Name => 'ISO',
Format => 'int16u',
},
0x5c => {
Name => 'SerialNumber',
Format => 'string[26]',
RawConv => '$val =~ s/^SERIAL NUMBER:// ? $val : undef',
},
);
%Image::ExifTool::HP::Type6 = (
PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData,
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
NOTES => 'These tags are used by the PhotoSmart M425, M525 and M527.',
0x0c => {
Name => 'FNumber',
Format => 'int16u',
ValueConv => '$val / 10',
},
0x10 => {
Name => 'ExposureTime',
Format => 'int32u',
ValueConv => '$val / 1e6',
PrintConv => 'Image::ExifTool::Exif::PrintExposureTime($val)',
},
0x14 => {
Name => 'CameraDateTime',
Groups => { 2 => 'Time' },
Format => 'string[20]',
},
0x34 => {
Name => 'ISO',
Format => 'int16u',
},
0x58 => {
Name => 'SerialNumber',
Format => 'string[26]',
RawConv => '$val =~ s/^SERIAL NUMBER:// ? $val : undef',
},
);
# proprietary format TDHD data written by Photosmart R837 (ref PH)
%Image::ExifTool::HP::TDHD = (
PROCESS_PROC => \&ProcessTDHD,
GROUPS => { 0 => 'MakerNotes', 2 => 'Camera' },
NOTES => q{
These tags are extracted from the APP6 "TDHD" segment of Photosmart R837
JPEG images. Many other unknown tags exist in is data, and can be seen with
the Unknown (-u) option.
},
# (all subdirectories except TDHD and LSLV are automatically recognized
# by their "type" word of 0x10001)
TDHD => {
Name => 'TDHD',
SubDirectory => { TagTable => 'Image::ExifTool::HP::TDHD' },
},
LSLV => {
Name => 'LSLV',
SubDirectory => { TagTable => 'Image::ExifTool::HP::TDHD' },
},
FWRV => 'FirmwareVersion',
CMSN => 'SerialNumber', # (unverified)
# LTEM - some temperature?
);
#------------------------------------------------------------------------------
# Process HP APP6 TDHD metadata (ref PH)
# Inputs: 0) ExifTool object ref, 1) dirInfo ref, 2) tag table ref
# Returns: 1 on success
sub ProcessTDHD($$$)
{
my ($et, $dirInfo, $tagTablePtr) = @_;
my $dataPt = $$dirInfo{DataPt};
my $dataPos = $$dirInfo{DataPos};
my $pos = $$dirInfo{DirStart};
my $dirEnd = $pos + $$dirInfo{DirLen};
my $unknown = $et->Options('Unknown') || $et->Options('Verbose');
$et->VerboseDir('TDHD', undef, $$dirInfo{DirLen});
SetByteOrder('II');
while ($pos + 12 < $dirEnd) {
my $tag = substr($$dataPt, $pos, 4);
my $type = Get32u($dataPt, $pos + 4);
my $size = Get32u($dataPt, $pos + 8);
$pos += 12;
last if $size < 0 or $pos + $size > $dirEnd;
if ($type == 0x10001) {
# this is a subdirectory containing more tags
my %dirInfo = (
DataPt => $dataPt,
DataPos => $dataPos,
DirStart => $pos,
DirLen => $size,
);
$et->ProcessDirectory(\%dirInfo, $tagTablePtr);
} else {
if (not $$tagTablePtr{$tag} and $unknown) {
my $name = $tag;
$name =~ tr/-_A-Za-z0-9//dc; # remove invalid characters
my %tagInfo = (
Name => "HP_TDHD_$name",
Unknown => 1,
);
# guess format based on data size
if ($size == 1) {
$tagInfo{Format} = 'int8u';
} elsif ($size == 2) {
$tagInfo{Format} = 'int16u';
} elsif ($size == 4) {
$tagInfo{Format} = 'int32s';
} elsif ($size > 80) {
$tagInfo{Binary} = 1;
}
AddTagToTable($tagTablePtr, $tag, \%tagInfo);
}
$et->HandleTag($tagTablePtr, $tag, undef,
DataPt => $dataPt,
DataPos => $dataPos,
Start => $pos,
Size => $size,
);
}
$pos += $size;
}
return 1;
}
#------------------------------------------------------------------------------
# Process HP maker notes
# Inputs: 0) ExifTool object ref, 1) dirInfo ref, 2) tag table ref
# Returns: 1 on success, otherwise returns 0 and sets a Warning
sub ProcessHP($$$)
{
my ($et, $dirInfo, $tagTablePtr) = @_;
my $dataPt = $$dirInfo{DataPt};
my $dataLen = $$dirInfo{DataLen};
my $dirStart = $$dirInfo{DirStart} || 0;
my $dirLen = $$dirInfo{DirLen} || $dataLen - $dirStart;
# look for known text-type tags
if ($dirStart or $dirLen != length($$dataPt)) {
my $buff = substr($$dataPt, $dirStart, $dirLen);
$dataPt = \$buff;
}
my $tagID;
# brute-force scan for PreviewImage
if ($$tagTablePtr{PreviewImage} and $$dataPt =~ /(\xff\xd8\xff\xdb.*\xff\xd9)/gs) {
$et->HandleTag($tagTablePtr, 'PreviewImage', $1);
# truncate preview to speed subsequent tag scans
my $buff = substr($$dataPt, 0, pos($$dataPt)-length($1));
$dataPt = \$buff;
}
# scan for other tag ID's
foreach $tagID (sort(TagTableKeys($tagTablePtr))) {
next if $tagID eq 'PreviewImage';
next unless $$dataPt =~ /$tagID:\s*([\x20-\x7f]+)/i;
$et->HandleTag($tagTablePtr, $tagID, $1);
}
return 1;
}
1; # end
__END__
=head1 NAME
Image::ExifTool::HP - Hewlett-Packard maker notes tags
=head1 SYNOPSIS
This module is loaded automatically by Image::ExifTool when required.
=head1 DESCRIPTION
This module contains definitions required by Image::ExifTool to interpret
Hewlett-Packard maker notes.
=head1 AUTHOR
Copyright 2003-2017, 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 SEE ALSO
L<Image::ExifTool::TagNames/HP Tags>,
L<Image::ExifTool(3pm)|Image::ExifTool>
=cut
|