man Image::EXIF () - Perl extension for exif library
NAME
Image::EXIF - Perl extension for exif library
SYNOPSIS
use Image::EXIF; use Data::Dumper;
my $exif = new Image::EXIF($file_name);
or
my $exif = new Image::EXIF; $exif->file_name($file_name);
my $image_info = $exif->get_image_info(); # hash reference my $camera_info = $exif->get_camera_info(); # hash reference my $other_info = $exif->get_other_info(); # hash reference my $point_shoot_info = $exif->get_point_shoot_info(); # hash reference my $unknown_info = $exif->get_unknown_info(); # hash reference my $all_info = $exif->get_all_info(); # hash reference
print $exif->error ? $exif->errstr : Dumper($all_info);
DESCRIPTION
Perl Package Image::EXIF based on utility exiftags v0.99.1 by Eric M. Johnston, emj@postal.net, http://johnst.org/sw/exiftags/. Actually it's just a wrapper. Weak PHP's support of EXIF made me write it. If you wanna improve it - go ahead. I did this module only because nobody did it before.
EXPORT
Nothing.
AUTHOR
sergey s prozhogin<lt>ccpro@rrelaxo.org.ru<gt>
SEE ALSO
exiftags.