Skip to content

Instantly share code, notes, and snippets.

@ozuma
Created July 10, 2013 10:43
Show Gist options
  • Save ozuma/5965314 to your computer and use it in GitHub Desktop.
Save ozuma/5965314 to your computer and use it in GitHub Desktop.
How to show Exif Informations from JPEG file.
#!/usr/bin/perl
use strict;
use warnings;
use Image::ExifTool;
use Data::Dumper;
my $filename = $ARGV[0];
my $ext = new Image::ExifTool;
my $exif = $ext->ImageInfo($filename);
print Dumper $exif;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment