/usr/share/perl5/Image/Info.pm is in libimage-info-perl 1.28-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 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 | #############################################################################
#
# ATTENTION! This file is autogenerated from dev/Info.pm.tmpl - DO NOT EDIT!
#
#############################################################################
package Image::Info;
# Copyright 1999-2004, Gisle Aas.
#
# This library is free software; you can redistribute it and/or
# modify it under the same terms as Perl v5.8.8 itself.
#
# Now maintained by Tels - (c) 2006 - 2008.
use strict;
use vars qw($VERSION @EXPORT_OK);
$VERSION = '1.28';
require Exporter;
*import = \&Exporter::import;
@EXPORT_OK = qw(image_info dim html_dim image_type determine_file_format);
# already required and failed sub-modules are remembered here
my %mod_failure;
sub image_info
{
my $source = _source(shift);
return $source if ref $source eq 'HASH'; # Pass on errors
# What sort of file is it?
my $head = _head($source);
return $head if ref($head) eq 'HASH'; # error?
my $format = determine_file_format($head)
or return { error => 'Unrecognized file format' };
no strict 'refs';
my $mod = "Image::Info::$format";
my $sub = "$mod\::process_file";
my $info = bless [], "Image::Info::Result";
eval {
unless (defined &$sub) {
# already required and failed?
if (my $fail = $mod_failure{$mod}) {
die $fail;
}
eval "require $mod";
if ($@) {
$mod_failure{$mod} = $@;
die $@;
}
die "$mod did not define &$sub" unless defined &$sub;
}
my %cnf = @_;
# call process_file()
&$sub($info, $source, \%cnf);
$info->clean_up;
};
return { error => $@ } if $@;
return wantarray ? @$info : $info->[0];
}
sub image_type
{
my $source = _source(shift);
return $source if ref $source eq 'HASH'; # Pass on errors
# What sort of file is it?
my $head = _head($source) or return _os_err("Can't read head");
my $format = determine_file_format($head)
or return { error => "Unrecognized file format" };
return { file_type => $format };
}
sub _source
{
my $source = shift;
if (!ref $source) {
require Symbol;
my $fh = Symbol::gensym();
open($fh, $source) || return _os_err("Can't open $source");
${*$fh} = $source; # keep filename in case somebody wants to know
binmode($fh);
$source = $fh;
}
elsif (ref($source) eq "SCALAR") {
if ($] >= 5.008) {
open(my $s, "<", $source) or return _os_err("Can't open string");
$source = $s;
}
else {
require IO::String;
$source = IO::String->new($$source);
}
}
else {
seek($source, 0, 0) or return _os_err("Can't rewind");
}
$source;
}
sub _head
{
my $source = shift;
my $head;
# tiny.pgm is 11 bytes
my $to_read = 11;
my $read = read($source, $head, $to_read);
return _os_err("Couldn't read $to_read bytes") if $read != $to_read;
if (ref($source) eq "IO::String") {
# XXX workaround until we can trap seek() with a tied file handle
$source->setpos(0);
}
else {
seek($source, 0, 0) or return _os_err("Can't rewind");
}
$head;
}
sub _os_err
{
return { error => "$_[0]: $!",
Errno => $!+0,
};
}
sub determine_file_format
{
local($_) = @_;
return "BMP" if /^BM/;
return "GIF" if /^GIF8[79]a/;
return "JPEG" if /^\xFF\xD8/;
return "PNG" if /^\x89PNG\x0d\x0a\x1a\x0a/;
return "PPM" if /^P[1-6]/;;
return "SVG" if /^<\?xml/;
return "TIFF" if /^MM\x00\x2a/;
return "TIFF" if /^II\x2a\x00/;
return "XBM" if /^#define\s+/;
return "XPM" if /(^\/\* XPM \*\/)|(static\s+char\s+\*\w+\[\]\s*=\s*{\s*"\d+)/;
return undef;
}
sub dim
{
my $img = shift || return;
my $x = $img->{width} || return;
my $y = $img->{height} || return;
wantarray ? ($x, $y) : "${x}x$y";
}
sub html_dim
{
my($x, $y) = dim(@_);
return "" unless $x;
"width=\"$x\" height=\"$y\"";
}
#############################################################################
package Image::Info::Result;
sub push_info
{
my($self, $n, $key) = splice(@_, 0, 3);
push(@{$self->[$n]{$key}}, @_);
}
sub replace_info
{
my($self, $n, $key) = splice(@_, 0, 3);
$self->[$n]{$key}[0] = $_[0];
}
sub clean_up
{
my $self = shift;
for (@$self) {
for my $k (keys %$_) {
my $a = $_->{$k};
$_->{$k} = $a->[0] if @$a <= 1;
}
}
}
sub get_info {
my($self, $n, $key, $delete) = @_;
my $v = $delete ? delete $self->[$n]{$key} : $self->[$n]{$key};
$v ||= [];
@$v;
}
1;
__END__
=head1 NAME
Image::Info - Extract meta information from image files (DEPRECATED)
=head1 SYNOPSIS
use Image::Info qw(image_info dim);
my $info = image_info("image.jpg");
if (my $error = $info->{error}) {
die "Can't parse image info: $error\n";
}
my $color = $info->{color_type};
my $type = image_type("image.jpg");
if (my $error = $type->{error}) {
die "Can't determine file type: $error\n";
}
die "No gif files allowed!" if $type->{file_type} eq 'GIF';
my($w, $h) = dim($info);
=head1 DESCRIPTION
Please note that this module is B<deprecated> and should not be used.
Alternatively, try one of the following modules:
L<Image::Size>, L<Image::ExifTool>.
The code in this module is old, unreviewed, hackish, still has
numerous bugs and is incomplete in quite a few cases.
While this module is sort-of maintained (e.g. the most critical
security-related bugs are fixed), no new features will be added
and numerous minor bugs are very likely sprinkled through the entire
code base. You have been warned.
This module provide functions to extract various kind of meta
information from image files.
=head2 EXPORTS
Exports nothing by default, but can export the following methods
on request:
image_info
image_type
dim
html_dim
determine_file_type
=head2 METHODS
The following functions are provided by the C<Image::Info> module:
=over
=item image_info( $file )
=item image_info( \$imgdata )
=item image_info( $file, key => value,... )
This function takes the name of a file or a file handle as argument
and will return one or more hashes (actually hash references)
describing the images inside the file. If there is only one image in
the file only one hash is returned. In scalar context, only the hash
for the first image is returned.
In case of error, a hash containing the "error" key will be
returned. The corresponding value will be an appropriate error
message.
If a reference to a scalar is passed as argument to this function,
then it is assumed that this scalar contains the raw image data
directly.
The image_info() function also take optional key/value style arguments
that can influence what information is returned. See
L<Image::Info::XPM> and other L<Image::Info> submodules for the
parameters that they take.
=item image_type( \$imgdata )
Returns a hash with only one key, C<< file_type >>. The value
will be the type of the file. On error, sets the two keys
C<< error >> and C<< Errno >>.
This function is a dramatically faster alternative to the image_info
function for situations in which you B<only> need to find the image type.
It uses only the internal file-type detection to do this, and thus does
not need to load any of the image type-specific driver modules, and does
not access to entire file. It also only needs access to the first 11
bytes of the file.
To maintain some level of compatibility with image_info, image_type
returns in the same format, with the same error message style. That is,
it returns a HASH reference, with the C<< $type->{error} >> key set if
there was an error.
On success, the HASH reference will contain the single key 'file_type',
which represents the type of the file, expressed as the type code used for
the various drivers ('GIF', 'JPEG', 'TIFF' and so on).
If there are multiple images within the file they will be ignored, as this
function provides only the type of the overall file, not of the various
images within it. This function will not return multiple hashes if the file
contains multiple images.
Of course, in all (or at least effectively all) cases the type of the images
inside the file is going to be the same as that of the file itself.
=item dim( $info_hash )
Takes a hash as returned from image_info() and returns the dimensions
($width, $height) of the image. In scalar context returns the
dimensions as a string.
=item html_dim( $info_hash )
Returns the dimensions as a string suitable for embedding directly
into HTML or SVG <img>-tags. E.g.:
print "<img src="..." @{[html_dim($info)]}>\n";
=item determine_file_format( $filedata )
Determines the file format from the passed file data (a normal Perl
scalar containing the first bytes of the file), and returns
either undef for an unknown file format, or a string describing
the format, like "BMP" or "JPEG".
=back
=head1 Image descriptions
The image_info() function returns meta information about each image in
the form of a reference to a hash. The hash keys used are in most
cases based on the TIFF element names. All lower case keys are
mandatory for all file formats and will always be there unless an
error occured (in which case the "error" key will be present.) Mixed
case keys will only be present when the corresponding information
element is available in the image.
The following key names are common for any image format:
=over
=item file_media_type
This is the MIME type that is appropriate for the given file format.
The corresponding value is a string like: "image/png" or "image/jpeg".
=item file_ext
The is the suggested file name extention for a file of the given file
format. The value is a 3 letter, lowercase string like "png", "jpg".
=item width
This is the number of pixels horizontally in the image.
=item height
This is the number of pixels vertically in the image. (TIFF use the
name ImageLength for this field.)
=item color_type
The value is a short string describing what kind of values the pixels
encode. The value can be one of the following:
Gray
GrayA
RGB
RGBA
CMYK
YCbCr
CIELab
These names can also be prefixed by "Indexed-" if the image is
composed of indexes into a palette. Of these, only "Indexed-RGB" is
likely to occur.
It is similar to the TIFF field PhotometricInterpretation, but this
name was found to be too long, so we used the PNG inpired term
instead.
=item resolution
The value of this field normally gives the physical size of the image
on screen or paper. When the unit specifier is missing then this field
denotes the squareness of pixels in the image.
The syntax of this field is:
<res> <unit>
<xres> "/" <yres> <unit>
<xres> "/" <yres>
The <res>, <xres> and <yres> fields are numbers. The <unit> is a
string like C<dpi>, C<dpm> or C<dpcm> (denoting "dots per
inch/cm/meter).
=item SamplesPerPixel
This says how many channels there are in the image. For some image
formats this number might be higher than the number implied from the
C<color_type>.
=item BitsPerSample
This says how many bits are used to encode each of samples. The value
is a reference to an array containing numbers. The number of elements
in the array should be the same as C<SamplesPerPixel>.
=item Comment
Textual comments found in the file. The value is a reference to an
array if there are multiple comments found.
=item Interlace
If the image is interlaced, then this tell which interlace method is
used.
=item Compression
This tells you which compression algorithm is used.
=item Gamma
A number.
=item LastModificationTime
A ISO date string
=back
=head1 Supported Image Formats
The following image file formats are supported:
=over
=item BMP
This module supports the Microsoft Device Independent Bitmap format
(BMP, DIB, RLE).
For more information see L<Image::Info::BMP>.
=item GIF
Both GIF87a and GIF89a are supported and the version number is found
as C<GIF_Version> for the first image. GIF files can contain multiple
images, and information for all images will be returned if
image_info() is called in list context. The Netscape-2.0 extention to
loop animation sequences is represented by the C<GIF_Loop> key for the
first image. The value is either "forever" or a number indicating
loop count.
=item JPEG
For JPEG files we extract information both from C<JFIF> and C<Exif>
application chunks.
C<Exif> is the file format written by most digital cameras. This
encode things like timestamp, camera model, focal length, exposure
time, aperture, flash usage, GPS position, etc. The following web
page contain description of the fields that can be present:
http://www.ba.wakwak.com/~tsuruzoh/Computer/Digicams/exif-e.html
The C<Exif> spec can be found at:
http://www.exif.org/specifications.html
=item PNG
Information from IHDR, PLTE, gAMA, pHYs, tEXt, tIME chunks are
extracted. The sequence of chunks are also given by the C<PNG_Chunks>
key.
=item PBM/PGM/PPM
All information available is extracted.
=item SVG
Provides a plethora of attributes and metadata of an SVG vector grafic.
=item TIFF
The C<TIFF> spec can be found at:
L<http://partners.adobe.com/public/developer/tiff/>
The EXIF spec can be found at:
L<http://www.exif.org/>
=item XBM
See L<Image::Info::XBM> for details.
=item XPM
See L<Image::Info::XPM> for details.
=back
=head1 CAVEATS
Note that while the module is still maintained, no new features
will be added and numerous bugs remain throughout the code base.
Especially the EXIF parsing code is buggy, not tested at all,
and quite incomplete (a lot of manufacturer's MakerNotes and tags are
not parsed at all). If you want a stable, feature-complete, up-to-date
and tested EXIF parsing library, please use L<Image::ExifTool>.
Likewise, the image parsing code is quite hackish and seems to contain
an endless supply of bugs that crash, or hang with malformed input.
=head1 SEE ALSO
L<Image::Size>, L<Image::ExifTool>
=head1 AUTHORS
Copyright 1999-2004 Gisle Aas.
See the CREDITS file for a list of contributors and authors.
Now maintained by Tels - (c) 2006 - 2008.
=head1 LICENSE
This library is free software; you can redistribute it and/or
modify it under the same terms as Perl v5.8.8 itself.
=cut
|