How to read IPTC keywords using PerlMagick?
Posted: 2011-06-04T05:03:52-07:00
I have a set of images in a folder, and
shows me the tags that I put into them using Picasa. I now want to extract the tags in a Perl program. I know I could use Image::IPTC, but I don't want to double-handle the file. I was hoping I could use but the somewhat sparse documentation on the PerlMagick page doesn't say anything about IPTC (or EXIF, for that matter!) Is there a way?
thanks
Kevin
Code: Select all
identify -format "%f %[IPTC:2:25]" *.jpg
Code: Select all
$image->Get(xxx)
thanks
Kevin