To write any unknown tag (or change the definition of any existing tag), all you have
to do is add an entry to the config file. In your case, this entry in the
%Image::ExifTool::UserDefined hash will do it:
'Image::ExifTool::Photoshop::Main' => {
0x07d0 => {
Name => 'PathInfo',
Writable => 1,
ValueConv => '\$val',
ValueConvInv => '$val',
},
},
(The value conversions are not strictly required, but will prevent binary data from being
sent to your console if you extract this tag.) With this addition, you would use the
following command line:
exiftool -TagsFromFile mit.jpg -pathinfo ohne.tiff
See the
ExifTool_config
file included with in the ExifTool distribution for more details.
- Phil