Clear "Look Copyright" field?

Started by davelang, May 18, 2021, 06:26:24 PM

Previous topic - Next topic

davelang

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

Luuk2005

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'
Windows8.1-64bit,  exiftool-v12.92(standalone),  sed-v4.0.7

davelang