ExifTool Forum

ExifTool => Newbies => Topic started by: Juggernaut on June 04, 2018, 08:10:36 AM

Title: "XMPToolkit" tag auto-creation
Post by: Juggernaut on June 04, 2018, 08:10:36 AM
There is a simple .JPG file, and I want to create a "Creator" tag for it.

So, after creation, and after I scan all tags, I notice that not just "Creator" tag added, but also "XMPToolkit" with value "Image::ExifTool 10.99"

and it looks something like this:
Quote.....
XMPToolkit                      : Image::ExifTool 10.99
Creator                           : JohnSmith
.....

1) why ExifTool behave like this? what is the need for auto-creation for this tag?
2) how to avoid this? yes, I can delete it by command ...

exiftool file.jpg -xmptoolkit=

... but it would be better to avoid it in the process of creation tags I want to.
Title: Re: "XMPToolkit" tag auto-creation
Post by: Phil Harvey on June 04, 2018, 08:13:20 AM
See my other post (https://exiftool.org/forum/index.php/topic,9246.msg47800.html#msg47800).

You can use this command:

exiftool -creator=JohnSmith -xmptoolkit= FILE

BTW, ExifTool is the only XMP toolkit I know that will allow the user to do this.

- Phil
Title: Re: "XMPToolkit" tag auto-creation
Post by: Juggernaut on June 04, 2018, 08:19:21 AM
Quote from: Phil Harvey on June 04, 2018, 08:13:20 AM
See my other post (https://exiftool.org/forum/index.php/topic,9246.msg47800.html#msg47800).

You can use this command:

exiftool -creator=JohnSmith -xmptoolkit= FILE

BTW, ExifTool is the only XMP toolkit I know that will allow the user to do this.

- Phil

Oh, that's pretty neat! It works.
Thanks a lot!  8)