Mar*_*son 3 linux jpeg color-profile exiftool
我有一些.jpg没有颜色配置文件的文件,并希望使用它们将它们设置为特定的颜色配置文件exiftool.
我需要提供什么参数来执行此操作?
对于exiftool添加颜色配置文件,你需要一个profile.file
可以从任何提取此JPEG图片由:
exiftool -icc_profile -b somefile.jpg > profile.icc
Run Code Online (Sandbox Code Playgroud)
然后使用附加此配置文件
exiftool "-icc_profile<=profile.icc" yourfile.jpg
Run Code Online (Sandbox Code Playgroud)