Guest User

Untitled

a guest
Apr 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #!/usr/bin/perl
  2.  
  3. use Image::ExifTool 'ImageInfo';
  4. use File::Find;
  5.  
  6. my $image = shift;
  7.  
  8. my $info = ImageInfo($image);
  9. foreach (keys(%{$info})) {
  10. print "$_:".${$info}{$_}.";\n";
  11. }
Add Comment
Please, Sign In to add comment