gld64 has asked for the wisdom of the Perl Monks concerning the following question:
Thanks for all and any information, Guy# -------------------------------------- use Image::Magick; my $image = Image::Magick->new; $image->Read('pic.jpg'); my %exif = map { s/\s+\z//; $_ } map { split /=/, $_ } split /exif:/, $image->Get('format', '%[EXIF:*]'); my $s = $exif{'ImageDescription'}; # --------------------------------------
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: ImageMagick JPEG metadata foreign characters
by Anonymous Monk on Feb 05, 2016 at 23:53 UTC |