trait HexTrait

Methods

string
RgbToHex(string $rgb, bool $withAlpha = true)

Converting rgb to hex code

int
strToDec(string $value)

Converting hex code to decimal number

string
decToHex(int $value)

Converting decimal number to hex code string

array
parseHex(string $value)

No description

array
explodeHex(string $value)

No description

Details

at line 18
protected string RgbToHex(string $rgb, bool $withAlpha = true)

Converting rgb to hex code

Parameters

string $rgb
bool $withAlpha

Return Value

string

at line 50
protected int strToDec(string $value)

Converting hex code to decimal number

Parameters

string $value hex code in string format

Return Value

int

Exceptions

HexException

at line 69
protected string decToHex(int $value)

Converting decimal number to hex code string

Parameters

int $value

Return Value

string

at line 86
protected array parseHex(string $value)

Parameters

string $value

Return Value

array

Exceptions

HexException

at line 128
protected array explodeHex(string $value)

Parameters

string $value

Return Value

array

Exceptions

HexException