Search code examples
imagejpegexiftooliptc

I like to put three dots, "..." at the end of my image files' IPTC Core Title metadata


I like to put three dots, "..." at the end of my image files' IPTC Core Title metadata

Help is much appreciated!

Edit: In bulk for 1000s of files


Solution

  • Using exiftool, you could use this command

    For Windows CMD
    exiftool "-Title<${Title}..." /path/to/files/

    For other shells
    exiftool '-Title<${Title}...' /path/to/files/

    This command creates backup files. Add -overwrite_original to suppress the creation of backup files. Add -r to recurse into subdirectories.