我喜欢在图像文件的 IPTC Core Title 元数据末尾放置三个点“...”

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

我喜欢在我的图像文件的 IPTC 核心标题元数据末尾放三个点“...”

非常感谢您的帮助!

编辑:批量处理 1000 个文件

使用exiftool,你可以使用这个命令

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

对于其他外壳
exiftool '-Title<${Title}...' /path/to/files/

此命令创建备份文件。添加 -overwrite_original to suppress the creation of backup files. Add -r 以递归到子目录。