/usr/share/perl5/Image/ExifTool/DjVu.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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 | #------------------------------------------------------------------------------
# File: DjVu.pm
#
# Description: Read DjVu archive meta information
#
# Revisions: 09/25/2008 - P. Harvey Created
#
# References: 1) http://djvu.sourceforge.net/ (DjVu v3 specification, Nov 2005)
# 2) http://www.djvu.org/
#
# Notes: DjVu files are recognized and the IFF structure is processed
# by Image::ExifTool::AIFF
#------------------------------------------------------------------------------
package Image::ExifTool::DjVu;
use strict;
use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
$VERSION = '1.05';
sub ParseAnt($);
sub ProcessAnt($$$);
sub ProcessMeta($$$);
sub ProcessBZZ($$$);
# DjVu chunks that we parse (ref 4)
%Image::ExifTool::DjVu::Main = (
GROUPS => { 2 => 'Image' },
NOTES => q{
Information is extracted from the following chunks in DjVu images. See
L<http://www.djvu.org/> for the DjVu specification.
},
INFO => {
SubDirectory => { TagTable => 'Image::ExifTool::DjVu::Info' },
},
FORM => {
TypeOnly => 1, # extract chunk type only, then descend into chunk
SubDirectory => { TagTable => 'Image::ExifTool::DjVu::Form' },
},
ANTa => {
SubDirectory => { TagTable => 'Image::ExifTool::DjVu::Ant' },
},
ANTz => {
Name => 'CompressedAnnotation',
SubDirectory => {
TagTable => 'Image::ExifTool::DjVu::Ant',
ProcessProc => \&ProcessBZZ,
}
},
INCL => 'IncludedFileID',
);
# information in the DjVu INFO chunk
%Image::ExifTool::DjVu::Info = (
PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData,
GROUPS => { 2 => 'Image' },
FORMAT => 'int8u',
PRIORITY => 0, # first INFO block takes priority
0 => {
Name => 'ImageWidth',
Format => 'int16u',
},
2 => {
Name => 'ImageHeight',
Format => 'int16u',
},
4 => {
Name => 'DjVuVersion',
Description => 'DjVu Version',
Format => 'int8u[2]',
# (this may be just one byte as with version 0.16)
ValueConv => '$val=~/(\d+) (\d+)/ ? "$2.$1" : "0.$val"',
},
6 => {
Name => 'SpatialResolution',
Format => 'int16u',
ValueConv => '(($val & 0xff)<<8) + ($val>>8)', # (little-endian!)
},
8 => {
Name => 'Gamma',
ValueConv => '$val / 10',
},
9 => {
Name => 'Orientation',
Mask => 0x07, # (upper 5 bits reserved)
PrintConv => {
1 => 'Horizontal (normal)',
2 => 'Rotate 180',
5 => 'Rotate 90 CW',
6 => 'Rotate 270 CW',
},
},
);
# information in the DjVu FORM chunk
%Image::ExifTool::DjVu::Form = (
PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData,
GROUPS => { 2 => 'Image' },
0 => {
Name => 'SubfileType',
Format => 'undef[4]',
Priority => 0,
PrintConv => {
DJVU => 'Single-page image',
DJVM => 'Multi-page document',
PM44 => 'Color IW44',
BM44 => 'Grayscale IW44',
DJVI => 'Shared component',
THUM => 'Thumbnail image',
},
},
);
# tags found in the DjVu annotation chunk (ANTz or ANTa)
%Image::ExifTool::DjVu::Ant = (
PROCESS_PROC => \&Image::ExifTool::DjVu::ProcessAnt,
GROUPS => { 2 => 'Image' },
NOTES => 'Information extracted from annotation chunks.',
# Note: For speed, ProcessAnt() pre-scans for known tag ID's, so if any
# new tags are added here they must also be added to the pre-scan check
metadata => {
SubDirectory => { TagTable => 'Image::ExifTool::DjVu::Meta' }
},
xmp => {
Name => 'XMP',
SubDirectory => { TagTable => 'Image::ExifTool::XMP::Main' }
},
);
# tags found in the DjVu annotation metadata
%Image::ExifTool::DjVu::Meta = (
PROCESS_PROC => \&Image::ExifTool::DjVu::ProcessMeta,
GROUPS => { 1 => 'DjVu-Meta', 2 => 'Image' },
NOTES => q{
This table lists the standard DjVu metadata tags, but ExifTool will extract
any tags that exist even if they don't appear here. The DjVu v3
documentation endorses tags borrowed from two standards: 1) BibTeX
bibliography system tags (all lowercase Tag ID's in the table below), and 2)
PDF DocInfo tags (capitalized Tag ID's).
},
# BibTeX tags (ref http://en.wikipedia.org/wiki/BibTeX)
address => { Groups => { 2 => 'Location' } },
annote => { Name => 'Annotation' },
author => { Groups => { 2 => 'Author' } },
booktitle => { Name => 'BookTitle' },
chapter => { },
crossref => { Name => 'CrossRef' },
edition => { },
eprint => { Name => 'EPrint' },
howpublished=> { Name => 'HowPublished' },
institution => { },
journal => { },
key => { },
month => { Groups => { 2 => 'Time' } },
note => { },
number => { },
organization=> { },
pages => { },
publisher => { },
school => { },
series => { },
title => { },
type => { },
url => { Name => 'URL' },
volume => { },
year => { Groups => { 2 => 'Time' } },
# PDF tags (same as Image::ExifTool::PDF::Info)
Title => { },
Author => { Groups => { 2 => 'Author' } },
Subject => { },
Keywords => { },
Creator => { },
Producer => { },
CreationDate => {
Name => 'CreateDate',
Groups => { 2 => 'Time' },
# RFC 3339 date/time format
ValueConv => 'require Image::ExifTool::XMP; Image::ExifTool::XMP::ConvertXMPDate($val)',
PrintConv => '$self->ConvertDateTime($val)',
},
ModDate => {
Name => 'ModifyDate',
Groups => { 2 => 'Time' },
ValueConv => 'require Image::ExifTool::XMP; Image::ExifTool::XMP::ConvertXMPDate($val)',
PrintConv => '$self->ConvertDateTime($val)',
},
Trapped => {
# remove leading '/' from '/True' or '/False'
ValueConv => '$val=~s{^/}{}; $val',
},
);
#------------------------------------------------------------------------------
# Parse DjVu annotation "s-expression" syntax (recursively)
# Inputs: 0) data ref (with pos($$dataPt) set to start of annotation)
# Returns: reference to list of tokens/references, or undef if no tokens,
# and the position in $$dataPt is set to end of last token
# Notes: The DjVu annotation syntax is not well documented, so I make
# a number of assumptions here!
sub ParseAnt($)
{
my $dataPt = shift;
my (@toks, $tok, $more);
# (the DjVu annotation syntax really sucks, and requires that every
# single token be parsed in order to properly scan through the items)
Tok: for (;;) {
# find the next token
last unless $$dataPt =~ /(\S)/sg; # get next non-space character
if ($1 eq '(') { # start of list
$tok = ParseAnt($dataPt);
} elsif ($1 eq ')') { # end of list
$more = 1;
last;
} elsif ($1 eq '"') { # quoted string
$tok = '';
for (;;) {
# get string up to the next quotation mark
# this doesn't work in perl 5.6.2! grrrr
# last Tok unless $$dataPt =~ /(.*?)"/sg;
# $tok .= $1;
my $pos = pos($$dataPt);
last Tok unless $$dataPt =~ /"/sg;
$tok .= substr($$dataPt, $pos, pos($$dataPt)-1-$pos);
# we're good unless quote was escaped by odd number of backslashes
last unless $tok =~ /(\\+)$/ and length($1) & 0x01;
$tok .= '"'; # quote is part of the string
}
# convert C escape sequences (allowed in quoted text)
$tok = eval qq{"$tok"};
} else { # key name
pos($$dataPt) = pos($$dataPt) - 1;
# allow anything in key but whitespace, braces and double quotes
# (this is one of those assumptions I mentioned)
$$dataPt =~ /([^\s()"]+)/sg;
$tok = $1;
}
push @toks, $tok if defined $tok;
}
# prevent further parsing unless more after this
pos($$dataPt) = length $$dataPt unless $more;
return @toks ? \@toks : undef;
}
#------------------------------------------------------------------------------
# Process DjVu annotation chunk (ANTa or decoded ANTz)
# Inputs: 0) ExifTool object reference, 1) DirInfo reference, 2) tag table ref
# Returns: 1 on success
sub ProcessAnt($$$)
{
my ($et, $dirInfo, $tagTablePtr) = @_;
my $dataPt = $$dirInfo{DataPt};
# quick pre-scan to check for metadata or XMP
return 1 unless $$dataPt =~ /\(\s*(metadata|xmp)[\s("]/s;
# parse annotations into a tree structure
pos($$dataPt) = 0;
my $toks = ParseAnt($dataPt) or return 0;
# process annotations individually
my $ant;
foreach $ant (@$toks) {
next unless ref $ant eq 'ARRAY' and @$ant >= 2;
my $tag = shift @$ant;
next if ref $tag or not defined $$tagTablePtr{$tag};
if ($tag eq 'metadata') {
# ProcessMeta() takes array reference
$et->HandleTag($tagTablePtr, $tag, $ant);
} else {
next if ref $$ant[0]; # only process simple values
$et->HandleTag($tagTablePtr, $tag, $$ant[0]);
}
}
return 1;
}
#------------------------------------------------------------------------------
# Process DjVu metadata
# Inputs: 0) ExifTool object reference, 1) DirInfo reference, 2) tag table ref
# Returns: 1 on success
# Notes: input dirInfo DataPt is a reference to a list of pre-parsed metadata entries
sub ProcessMeta($$$)
{
my ($et, $dirInfo, $tagTablePtr) = @_;
my $dataPt = $$dirInfo{DataPt};
return 0 unless ref $$dataPt eq 'ARRAY';
$et->VerboseDir('Metadata', scalar @$$dataPt);
my ($item, $err);
foreach $item (@$$dataPt) {
# make sure item is a simple tag/value pair
$err=1, next unless ref $item eq 'ARRAY' and @$item >= 2 and
not ref $$item[0] and not ref $$item[1];
# add any new tags to the table
unless ($$tagTablePtr{$$item[0]}) {
my $name = $$item[0];
$name =~ tr/-_a-zA-Z0-9//dc; # remove illegal characters
length $name or $err = 1, next;
AddTagToTable($tagTablePtr, $$item[0], { Name => ucfirst($name) });
}
$et->HandleTag($tagTablePtr, $$item[0], $$item[1]);
}
$err and $et->Warn('Ignored invalid metadata entry(s)');
return 1;
}
#------------------------------------------------------------------------------
# Process BZZ-compressed data (in DjVu images)
# Inputs: 0) ExifTool object reference, 1) DirInfo reference, 2) tag table ref
# Returns: 1 on success
sub ProcessBZZ($$$)
{
my ($et, $dirInfo, $tagTablePtr) = @_;
require Image::ExifTool::BZZ;
my $buff = Image::ExifTool::BZZ::Decode($$dirInfo{DataPt});
unless (defined $buff) {
$et->Warn("Error decoding $$dirInfo{DirName}");
return 0;
}
my $verbose = $et->Options('Verbose');
if ($verbose >= 3) {
# dump the decoded data in very verbose mode
$et->VerboseDir("Decoded $$dirInfo{DirName}", 0, length $buff);
$et->VerboseDump(\$buff);
}
$$dirInfo{DataPt} = \$buff;
$$dirInfo{DataLen} = $$dirInfo{DirLen} = length $buff;
# process the data using the default process proc for this table
my $processProc = $$tagTablePtr{PROCESS_PROC} or return 0;
return &$processProc($et, $dirInfo, $tagTablePtr);
}
1; # end
__END__
=head1 NAME
Image::ExifTool::DjVu - Read DjVu meta information
=head1 SYNOPSIS
This module is used by Image::ExifTool
=head1 DESCRIPTION
This module contains definitions required by Image::ExifTool to extract meta
information from DjVu images. Parsing of the DjVu IFF structure is done by
Image::ExifTool::AIFF.
=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 REFERENCES
=over 4
=item L<http://djvu.sourceforge.net/>
=item L<http://www.djvu.org/>
=back
=head1 SEE ALSO
L<Image::ExifTool::TagNames/DjVu Tags>,
L<Image::ExifTool::AIFF(3pm)|Image::ExifTool::AIFF>,
L<Image::ExifTool(3pm)|Image::ExifTool>
=cut
|