COLOR_BLACK
COLOR_BLACK = 'FF000000'
PHPExcel_Style_Color
$_isSupervisor : bool
Supervisor?
$_parent : \PHPExcel_Style
Parent. Only used for supervisor
$_indexedColors : array
Indexed colors array
$_argb : string
ARGB - Alpha RGB
$_parentPropertyName : string
Parent property name
__construct(string $pARGB = PHPExcel_Style_Color::COLOR_BLACK, bool $isSupervisor = FALSE, bool $isConditional = FALSE) : mixed
Create a new PHPExcel_Style_Color
string | $pARGB | ARGB value for the colour |
bool | $isSupervisor | Flag indicating if this is a supervisor or not Leave this value at default unless you understand exactly what its ramifications are |
bool | $isConditional | Flag indicating if this is a conditional style or not Leave this value at default unless you understand exactly what its ramifications are |
applyFromArray(array $pStyles = NULL) : \PHPExcel_Style_Color
Apply styles from array
$objPHPExcel->getActiveSheet()->getStyle('B2')->getFont()->getColor()->applyFromArray( array('rgb' => '808080') );
array | $pStyles | Array containing style information |
getRed(string $RGB, bool $hex = TRUE) : string
Get the red colour component of an RGB value
string | $RGB | The colour as an RGB value (e.g. FF00CCCC or CCDDEE |
bool | $hex | Flag indicating whether the component should be returned as a hex or a decimal value |
The red colour component
getGreen(string $RGB, bool $hex = TRUE) : string
Get the green colour component of an RGB value
string | $RGB | The colour as an RGB value (e.g. FF00CCCC or CCDDEE |
bool | $hex | Flag indicating whether the component should be returned as a hex or a decimal value |
The green colour component
getBlue(string $RGB, bool $hex = TRUE) : string
Get the blue colour component of an RGB value
string | $RGB | The colour as an RGB value (e.g. FF00CCCC or CCDDEE |
bool | $hex | Flag indicating whether the component should be returned as a hex or a decimal value |
The blue colour component
changeBrightness(string $hex, float $adjustPercentage) : string
Adjust the brightness of a color
string | $hex | The colour as an RGBA or RGB value (e.g. FF00CCCC or CCDDEE) |
float | $adjustPercentage | The percentage by which to adjust the colour as a float from -1 to 1 |
The adjusted colour as an RGBA or RGB value (e.g. FF00CCCC or CCDDEE)
indexedColor(int $pIndex, bool $background = FALSE) : \PHPExcel_Style_Color
Get indexed color
int | $pIndex | Index entry point into the colour array |
bool | $background | Flag to indicate whether default background or foreground colour should be returned if the indexed colour doesn't exist |
_getColourComponent(string $RGB, int $offset, bool $hex = TRUE) : string
Get a specified colour component of an RGB value
string | $RGB | The colour as an RGB value (e.g. FF00CCCC or CCDDEE |
int | $offset | Position within the RGB value to extract |
bool | $hex | Flag indicating whether the component should be returned as a hex or a decimal value |
The extracted colour component