Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Can someone enlighten me?use Image::EXIF; my $exif = new Image::EXIF("/home/public_html/test/IMG_3212.JPG"); my $image_info = $exif->get_image_info(); # hash reference foreach my $key (keys %$image_info) { print qq($key : %$image_info{$key}<br>); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Printing hash references for Image::EXIF
by ikegami (Patriarch) on May 13, 2008 at 00:11 UTC | |
by Anonymous Monk on May 13, 2008 at 00:17 UTC |