如何使用 exiftool 设置颜色配置文件?

发布于 2024-11-24 09:45:41 字数 112 浏览 1 评论 0原文

我有一些没有颜色配置文件的 .jpg 文件,并且想使用 exiftool 将它们设置为特定的颜色配置文件。

我需要提供什么参数才能做到这一点?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤独难免 2024-12-01 09:45:41

要让 exiftool 添加颜色配置文件,您需要一个 profile.file

您可以通过以下方式从任何 JPEG 图像中提取此配置文件:

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

然后使用以下方式附加此配置文件

exiftool "-icc_profile<=profile.icc" yourfile.jpg

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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文