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
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'
Perfect. Thanks!