|
Hi,
I have a multiple tiff images, which i have merged into one image, I have to modifiy the tag of the merged image, I edited the config file to add the tiff tags.
After I run the exiftool to add the new tags, but the problem is I can add some tags but not all the tags. for your information i am giving u a sample code...
#ADDED these tags.
'Image::ExifTool::Exif::Main' => {
45000 => {
Name => 'mno',
Writable => 'string',
WriteGroup => 'IFD0',
},
60001 => {
Name => 'xyz',
Writable => 'string',
WriteGroup => 'IFD0',
},
60002 => {
Name => 'klm',
Writable => 'string',
WriteGroup => 'IFD0',
},
60003 => {
Name => 'ghi',
Writable => 'string',
WriteGroup => 'IFD0',
},
60004 => {
Name => 'abc',
Writable => 'string',
WriteGroup => 'IFD0',
},
60005 => {
Name => 'def',
Writable => 'string',
WriteGroup => 'IFD0',
},
},
i am calling the exiftool as follows
$exifTool1->SetNewValue('mno' => $filename[0]);
$exifTool1->SetNewValue('xyz' => 'TT');
$exifTool1->SetNewValue('klm' => '11');
$exifTool1->SetNewValue('ghi' => '22');
$exifTool1->SetNewValue('abc' => $date);
$exifTool1->SetNewValue('def' => 'F002');
$exifTool1->WriteInfo($file);
1 i have downloaded a tiff tag viewer, i could only view
the tag with mno abc and def respectively, i cannot see xyz, klm, ghi.
2. when i use exiftool -D myimage it does not show me the tags which i added. (I can see the tags which came origianly with the image)
P.S If it is a single page image then i can add the tags, nonethe less i cannot see the tiff tags which i added bu using exiftool -D myimage
Thanks in advance for your advice
thanks
ravi
|