Image-ExifTool - Re: Error copying Tags

Posted on Fri Dec 28 08:33:40 2007 by robladdish in response to 6768 (See the whole thread of 10)
Re: Error copying Tags
Ahah! Posting the problem got me to thinking about it again, and I found I could exclude MakerNotes from the tag recopy. Nevermind it's working now. :) If others are curious, here's the snippet of code I used within Perl. (Camera_id formed from Make and Model tags, I then set other tags and call $exifTool->WriteInfo after this code to make it all stick)
if ($camera_id =~ /^FUJIFILM FinePix F601 ZOOM/i) { system("exiftool -overwrite_original -q -exif:all= \"$dest_file\""); system("exiftool -overwrite_original -q -q -tagsfromfile \"$src_file\" --MakerNotes \"$dest_file\" +"); }
Direct Responses: 6770 | Write a response