Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 Android 应用程序中,HSB 颜色空间非常适合我正在做的事情(因为色调值在 0-360 之间计算,而 S & B 保持在恒定的 100)。
java.awt.Color 中的 Color 类具有此功能,但 Android.Color 没有,因此我正在寻找可能的自定义实现或解决此问题的方法。
非常感谢。
好的,所以我想办法解决这个问题。
纯粹从价值的角度来看,色彩空间 HSV 的工作原理类似于 HSB。
一旦您满意,您可以将饱和度和亮度定义为常数,例如每个 255 = 1f,然后简单地增加色调值将慢慢在颜色范围内起作用。