How to set a color profile with exiftool?

有些话、适合烂在心里 提交于 2019-12-05 02:15:06

问题


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:


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


来源:https://stackoverflow.com/questions/6740441/how-to-set-a-color-profile-with-exiftool

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!