ExifTool Forum

ExifTool => The "exiftool" Application => Topic started by: davelang on May 18, 2021, 06:26:24 PM

Title: Clear "Look Copyright" field?
Post by: davelang on May 18, 2021, 06:26:24 PM
Hi!

Sorry if this is answered already, I did try searching.

I'd like to clear the "Look Copyright" field from my photos using ExifTool. I'm relatively comfortable using the tool but I don't know how to point it at "Look Copyright".

It's not a big deal, it just bugs me since it looks like this: © 2018 Adobe Systems, Inc.

Thanks for any assistance you can offer!

regards,
dave
Title: Re: Clear "Look Copyright" field?
Post by: Luuk2005 on May 18, 2021, 07:47:44 PM
If wanting to remove $XMP:LookCopyright from all images, the command can be like...
exiftool -r -overwrite_original -LookCopyright= 'FolderPath'
But it removes them all, not just the ones looking like...  © 2018 Adobe Systems, Inc

So to remove just the LookCopyrights with © 2018 Adobe Systems, Inc...
exiftool -r -overwrite_original -if '$LookCopyright =~ /© 2018 Adobe Systems, Inc/' -LookCopyright= 'FolderPath'
Title: Re: Clear "Look Copyright" field?
Post by: davelang on May 18, 2021, 09:57:33 PM
Perfect. Thanks!