2024年PHP日本大会

颜色表示

(UI 0.9.9)

简介

表示RGBA颜色,各个通道可以通过公共属性访问。

类概要

UI\Draw\Color {
/* 常量 */
常量 int Red;
常量 int Green;
常量 int Blue;
常量 int Alpha;
/* 属性 */
公共 $r;
公共 $g;
公共 $b;
公共 $a;
/* 构造函数 */
公共 __construct(UI\Draw\Color $color = ?)
公共 __construct(int $color = ?)
/* 方法 */
公共 getChannel(int $channel): float
公共 setChannel(int $channel, float $value): void
}

属性

r

提供对红色通道的访问

g

提供对绿色通道的访问

b

提供对蓝色通道的访问

a

提供对alpha通道的访问

预定义常量

UI\Draw\Color::Red

标识红色通道

UI\Draw\Color::Green

标识绿色通道

UI\Draw\Color::Blue

标识蓝色通道

UI\Draw\Color::Alpha

标识alpha通道

目录

添加笔记

用户贡献笔记

此页面没有用户贡献的笔记。
To Top