Image-ExifTool - Re: IPTC issues...

Posted on Fri Jun 9 14:32:17 2006 by exiftool in response to 2440 (See the whole thread of 2)
Re: IPTC issues...
I'm not sure why you're getting anything at all actually. "IPTC-ApplicationRecord" is not a valid group name. Use "exiftool -listg1" to list all valid family 1 group names. The IPTC group is not broken down into separate records in family 1, so the group name is just "IPTC", which you have already stated using the "Group" option. So the following should do what you want:

my @ioTagList = qw(ObjectName DateCreated By-line By-lineTitle City Province-State Country-PrimaryLocationName Headline Credit Source Caption-Abstract Writer-Editor OriginalTransmissionReference Category); $info = $exifTool->ImageInfo($imgPath, \@ioTagList, {Group => 'IPTC'});
Write a response