| HSBAColorFormat |
The HSBA (Hue, Saturation, Brightness, Alpha) color model defines a color space in terms of four constituent components : Hue, Saturation, Brightness and Alpha.
The HSBA model is also known as HSV (Hue, Saturation, Brightness, Alpha) model.
The HSBA model was created in 1978 by Alvy Ray Smith.
It is a nonlinear transformation of the RGB color space.
In other words, color is not defined as a simple combination (addition/substraction) of primary colors but as a mathematical transformation.
Note: HSV and HSB are the same, but HSL is different.
| Name
| HSBAColorFormat
| Format
| hsba(hue,saturation,brightness,alpha)
| Description
|
Hue : A float - Ranges from 0.0 to 360.0 (both inclusive) in most applications.
|
| HSBColorFormat |
The HSB (Hue, Saturation, Brightness) color model defines a color space in terms of four constituent components : Hue, Saturation and Brightness.
The HSB model is also known as HSV (Hue, Saturation, Value, Alpha) model.
The HSB model was created in 1978 by Alvy Ray Smith.
It is a nonlinear transformation of the RGB color space.
In other words, color is not defined as a simple combination (addition/substraction) of primary colors but as a mathematical transformation.
Note: HSV and HSB are the same, but HSL is different.
| Name
| HSBColorFormat
| Format
| hsb(hue,saturation,brightness)
| Description
|
Hue : A float - Ranges from 0.0 to 360.0 (both inclusive) in most applications.
|
| HSLAColorFormat |
|
| HSLColor |
This class is was written by Rob Camick.
|
| HSLColorFormat |
|
| HSVAColorFormat |
The HSVA (Hue, Saturation, Value, Alpha) color model defines a color space in terms of four constituent components : Hue, Saturation, Value(Brightness) and Alpha.
The HSVA model is also known as HSV (Hue, Saturation, Brightness, Alpha) model.
The HSVA model was created in 1978 by Alvy Ray Smith.
It is a nonlinear transformation of the RGB color space.
In other words, color is not defined as a simple combination (addition/substraction) of primary colors but as a mathematical transformation.
Note: HSV and HSB are the same, but HSL is different.
| Name
| HSVAColorFormat
| Format
| hsba(hue,saturation,value,alpha)
| Description
|
Hue : A float - Ranges from 0.0 to 360.0 (both inclusive) in most applications.
|
| HSVColorFormat |
The HSV (Hue, Saturation, Value(Brightness)) color model defines a color space in terms of four constituent components : Hue, Saturation and Value(Brightness).
The HSV model is also known as HSB (Hue, Saturation, Brightness, Alpha) model.
The HSV model was created in 1978 by Alvy Ray Smith.
It is a nonlinear transformation of the RGB color space.
In other words, color is not defined as a simple combination (addition/substraction) of primary colors but as a mathematical transformation.
Note: HSV and HSB are the same, but HSL is different.
| Name
| HSVColorFormat
| Format
| hsv(hue,saturation,brightness)
| Description
|
Hue : A float - Ranges from 0.0 to 360.0 (both inclusive) in most applications.
|
| RGBAColorFormat |
Implements the method ColorFormat of - http://www.w3.org/wiki/CSS/Properties/color/RGBA.
The name of the format "rgba" is not case sensitive.
| Name
| RGBAColorFormat
| Format
|
rgba(R,G,B,A) (integer/hex)
rgba(R%,G%,B%,A) (percentage)
| Description
|
Type 1 - rgba(R,G,B,A) -integer-
The format of an RGBA value in the functional notation is "rgba'(' followed by a comma-separated list of three numerical values (three integer values), followed by an <alphavalue>, followed by ')'".
"R", "G" and "B" is a number(integer) between 0 and 255 (both inclusive) or hex values 0x00 and 0xFF (both inclusive).
"A" is number(float), the uniform opacity setting to be applied across an entire object.
|
| RGBColorFormat |
Implements the method ColorFormat of - http://www.w3.org/wiki/CSS/Properties/color/RGB.
The name of the format "rgb" is not case sensitive.
| Name
| RGBColorFormat
| Format
|
rgba(R,G,B) (integer/hex)
rgba(R%,G%,B%) (percentage)
| Description
|
Type 1 - rgb(R,G,B) -integer-
The format of an RGB value in the functional notation is "rgba'(' followed by a comma-separated list of three numerical values (three integer values), followed by an <alphavalue>, followed by ')'".
"R", "G" and "B" is a number(integer) between 0 and 255 (both inclusive) or hex values 0x00 and 0xFF (both inclusive).
Type 2 - rgba(R%,G%,B%) -percentage-
The format of an RGBA value in the functional notation is "rgba'(' followed by a comma-separated list of three numerical values (three percentage values), followed by an <alphavalue>, followed by ')'".
"R", "G" and "B" is a number(integer) between 0 and 100 post append and '%' sign.
|
| SVGNamedColorFormat |
Will parse color name from the list from W3.org.
|
| TupleColorFormat |
Abstract class for parsing and formatting a Color format which is "colorMethodName(list of number values seperated by comma)".
Parsing a TupleColorFormat, the text value must be trimmed and the it must be case insensitive in parsing the ColorMethodName.
|
| YUVColorFormat |
|
Enum Summary
| Enum |
Description |
| SVGNamedColor |
All the named colors from the list frmo W3.org.
|
Exception Summary
| Exception |
Description |
| ColorFormatException |
The exception thrown when not able to parse a text the the intended color format.
|
| | | | | |