|
Here you go. Use an argument like "-keywords<myperson"
with this config file:
%Image::ExifTool::UserDefined = (
'Image::ExifTool::Composite' => {
MyPerson => {
Require => 'RegionPersonDisplayName',
ValueConv => q{
my @v = ref $val ? @$val : $val;
$_ = "Prefix $_" foreach @v;
return \@v;
},
},
},
);
1; # end
Replace "Prefix" with your own text.
- Phil
|