1Image::Info::TIFF(3)  User Contributed Perl Documentation Image::Info::TIFF(3)
2
3
4

NAME

6       Image::Info::TIFF - TIFF support for Image::Info
7

SYNOPSIS

9        use Image::Info qw(image_info dim);
10
11        my $info = image_info("image.tif");
12        if (my $error = $info->{error}) {
13            die "Can't parse image info: $error\n";
14        }
15        print $info->{BitPerSample};
16
17        my($w, $h) = dim($info);
18

DESCRIPTION

20       This module adds TIFF support for Image::Info.
21

METHODS

23       process_file()
24
25               $info->process_file($source, $options);
26
27       Processes one file and sets the found info fields in the $info object.
28

SEE ALSO

30       Image::Info
31

AUTHOR

33       Jerrad Pierce <belg4mit@mit.edu>/<webmaster@pthbb.org>
34
35       Patches and fixes by Ben Wheeler.
36
37       This library is free software; you can redistribute it and/or modify it
38       under the same terms as Perl itself.
39
40
41
42perl v5.8.8                       2006-03-04              Image::Info::TIFF(3)
Impressum