Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些.jpg没有颜色配置文件的文件,并希望使用exiftool.
.jpg
exiftool
我需要提供什么参数才能做到这一点?
要exiftool添加颜色配置文件,您需要一个profile.file 您可以通过以下方式从任何JPEG图像中提取它:
profile.file
JPEG
exiftool -icc_profile -b somefile.jpg > profile.icc
然后使用附加此配置文件
exiftool "-icc_profile<=profile.icc" yourfile.jpg