gpt4 book ai didi

PHP imagick 将图像从 CMYK 转换为 RGB 反转图像

转载 作者:可可西里 更新时间:2023-10-31 22:10:47 25 4
gpt4 key购买 nike

我有一张图片因为以下原因被 eBay API 拒绝:

 <ShortMessage>Source picture uses an unsupported colorspace.</ShortMessage>
<LongMessage>Pictures with a CMYK colorspace are not supported; source pictures must use a RGB colorspace compatible with all web browsers supported by eBay. Submit pictures created using a camera or scanner set to save images with RGB color.</LongMessage>

好吧,我不知道这是 CMYK,我什至不确定如何分辨。然后我使用以下代码尝试转换:

$image= "$img.jpg";
$i = new Imagick($image);
$i->setImageColorspace(Imagick::COLORSPACE_SRGB);
$i->writeImage($image);
$i->destroy();

它会转换(现在已被 eBay 接受),但也会反转图片的颜色。为什么要这样做,我应该使用另一个 COLORSPACE 吗?

谢谢。

最佳答案

setImageColorSpace 方法不适用于现有图像 - 它仅适用于新图像(例如 $imagick->newPseudoImage(100, 100, "xc:gray");)

transformImageColorSpace 方法是用于更改现有图像色彩空间的正确方法。

$image= "$img.jpg";
$i = new Imagick($image);
$i->transformImageColorspace(Imagick::COLORSPACE_SRGB);
$i->writeImage($image);
$i->destroy();

关于PHP imagick 将图像从 CMYK 转换为 RGB 反转图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29932985/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com