How to set a color profile with exiftool?

2019-04-11 01:49发布

I have some .jpg files without a color profile, and would like to set them to a particular color profile using exiftool.

what parameter do I need to supply to do this?

1条回答
倾城 Initia
2楼-- · 2019-04-11 02:13

For exiftool to add a color profile, you need a profile.file
You can extract this from any JPEG image by:

exiftool -icc_profile -b somefile.jpg > profile.icc

Then attach this profile by using

exiftool "-icc_profile<=profile.icc" yourfile.jpg
查看更多
登录 后发表回答