gpt4 book ai didi

c++ - QColor hsl 色调精度

转载 作者:行者123 更新时间:2023-11-28 06:33:44 25 4
gpt4 key购买 nike

在下面显示的代码中,颜色的 hsl 色调分量具有与预期不同的值。

对于:r:255 g:168 b:177 它给出了 353 的 hsl 色调,但在其他网络工具上它产生了 354

QColor rgb(c);
QColor hsl = rgb.toHsl();
QColor hsv = rgb.toHsv();

// RGB
int r = rgb.red();
int g = rgb.green();
int b = rgb.blue();

// HSB
int hslh = qMax(hsl.hslHue(), 0);
int hsls = hsl.hslSaturation();
int hsll = hsl.lightness();

这是一个已知问题吗?

最佳答案

问题似乎只是 Qt 在请求整数输出时如何舍入颜色分量值。为了说明你的例子:

QColor col(255,168,177);
std::cout << "hue_float " << col.hslHueF()*360.0f << std::endl;
std::cout << "hue_int " << col.hslHue() << std::endl;

输出:

hue_float 353.79
hue_int 353

关于c++ - QColor hsl 色调精度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27111854/

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