在 ImageMagick 中将 TIFF 图像转换为 PNG 时颜色错误

发布于 2024-09-12 05:25:47 字数 424 浏览 6 评论 0原文

我正在开发一个 PHP 脚本,可以自动将 TIFF 图像转换为 PNG 文件。

为此,我使用 ImageMagick:

$ convert a.tif a.png

它在一定程度上有效,但是,颜色非常尖锐并且与我的电脑上的显示方式不同。为了说明问题,请查看随附文件,其中包括:

  • Windows Live Foto Gallery输出(这几乎是我想要的)
  • ImageMagick 输出(我最终得到的混乱)
  • 原始 TIFF 文件

有谁知道我是否可以改变 ImageMagick 颜色解释,如果可以的话如何改变?

多谢!

I'm working on a PHP script that automatically converts TIFF images to PNG files.

For that purpose, I use ImageMagick:

$ convert a.tif a.png

It works to some degree, however, the colours are very acute and deviant from the way they are pictured on my PC. To illustrate the problem, please have a look at the enclosed files, the include:

  • The Windows Live Foto Gallery output (that's pretty much how I want it to be)
  • The ImageMagick output (the mess I end up with)
  • The original TIFF file

Has anyone an idea whether, and if so how, I can alter the ImageMagick colour interpretation?

Thanks a lot!

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

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

发布评论

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

评论(2

对你的占有欲 2024-09-19 05:25:47

好吧,

多亏了 ergosys,问题很容易解决:我需要应用 ICC 颜色配置文件。
XMP 声明了 ISO 12647-2:2004,可在 http://eci.org 上找到该标准。

$ convert -profile ISOcoated_v2_eci.icc -profile eciRGB_v2.icc a.tif c.png

Alright,

thanks to ergosys, the problem was easily solved: I needed to apply ICC colour profiles.
The XMP declared ISO 12647-2:2004, which was to be found at http://eci.org.

$ convert -profile ISOcoated_v2_eci.icc -profile eciRGB_v2.icc a.tif c.png
醉生梦死 2024-09-19 05:25:47

从 CMYK 颜色空间转换为 RGB 颜色空间时,就像从 tiff 转换为 png 一样,必须将颜色空间与图像一起转换。尝试:

convert -colorspace rgb a.tif a.png

我在本地运行了这个,并从中得到了比您问题中的命令行更好的结果,但我的色觉很糟糕,所以我不能保证这就是您想要的。 =] 无论如何,希望它能让你走上正轨。

When converting from a CMYK color space to an RGB color space, as you do when going from tiff to png, you have to convert the color spaces along with the image. Try:

convert -colorspace rgb a.tif a.png

I ran this locally and get a better result from this than from the command line in your question, but my color vision sucks, so I can't guarantee that this is what you were after. =] Hope it gets you on the right track, anyway.

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