Perl Diver 2.33
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Image::EXIF

Name Image::EXIF
Version 2.01
Located at /usr/lib/x86_64-linux-gnu/perl5/5.34
File /usr/lib/x86_64-linux-gnu/perl5/5.34/Image/EXIF.pm
Is Core No
Search CPAN for this module Image::EXIF
Documentation Image::EXIF
Module Details Image::EXIF

NAME

Image::EXIF - Perl extension for exif library


SYNOPSIS

  use Image::EXIF;
  use Data::Dumper;
  my $exif = Image::EXIF->new($file_name);
  # or:
  my $exif = Image::EXIF->new;
  $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 Dumper($all_info);


DESCRIPTION

Perl package Image::EXIF based on exiftags by Eric M. Johnston: http://johnst.org/sw/exiftags/.


AUTHORS


REPORTING BUGS

Please report bugs at either of the following locations:


SEE ALSO

exiftags.

Perl Diver brought to you by ScriptSolutions.com © 1997- 2026