Specified color
Hexadecimal color string.
red component of the color, default value is 0.
green component of the color, default value is 0.
blue component of the color, default value is 0.
alpha component of the color, default value is 255.
获取或设置当前颜色的透明度通道。
获取或设置当前颜色的透明度通道。
获取或设置当前颜色的 Blue 通道。
获取或设置当前颜色的 Blue 通道。
获取或设置当前颜色的 Green 通道。
获取或设置当前颜色的 Green 通道。
获取或设置当前颜色的 Red 通道。
获取或设置当前颜色的 Red 通道。
克隆当前颜色。
判断当前颜色是否与指定颜色相等。
Specified color
Returns true
when all channels of both colours are equal; otherwise returns false
.
从十六进制颜色字符串中读入当前颜色。
十六进制颜色字符串应该以可选的 "#" 开头,紧跟最多 8 个代表十六进制数字的字符;
每两个连续字符代表的数值依次作为 Red、Green、Blue 和 Alpha 通道;
缺省的颜色通道将视为 0;缺省的透明通道将视为 255。
the hex string
this
从 HSV 颜色中读入当前颜色。
H value。
S value。
V value。
this
根据指定的插值比率,从当前颜色到目标颜色之间做插值。
Target color
The interpolation coefficient.The range is [0,1].
将当前颜色乘以与指定颜色
The specified color.
将当前颜色转换为 CSS 格式。
"rgba", "rgb", "#rgb" or "#rrggbb".
CSS format for the current color.
转换当前颜色为十六进制颜色字符串。
"#rrggbb" or "#rrggbbaa".
'#rrggbbaa'
obtains the hexadecimal value of the Red, Green, Blue, Alpha channels (two, high complement 0) and connects them sequentially.'#rrggbb'
is similar to '#rrggbbaa'
but does not include the Alpha channel.the Hex color string
转换当前颜色为 HSV 颜色。
HSV format color
将当前颜色转换为 RGB 整数值。
RGB integer value. Starting from the lowest valid bit, each 8 bits is the value of the Red, Green, and Blue channels respectively.
返回当前颜色的字符串表示。
A string representation of the current color.
逐通道颜色加法
获得指定颜色的拷贝
复制目标颜色
逐通道颜色除法
排除浮点数误差的颜色近似等价判断
数组转颜色
Array Start Offset
从十六进制颜色字符串中读入颜色到 out 中
获取指定颜色的整型数据表示
逐通道颜色线性插值:A + t * (B - A)
逐通道颜色乘法
全通道统一缩放颜色
设置颜色值
颜色等价判断
逐通道颜色减法
颜色转数组
Array Start Offset
Generated using TypeDoc
通过 Red、Green、Blue 颜色通道表示颜色,并通过 Alpha 通道表示不透明度。
每个通道都为取值范围 [0, 255] 的整数。