![]() |
Public API Reference |
![]() |
An RGB pixel. More...
#include <csgfx/rgbpixel.h>
Public Member Functions | |
csRGBpixel () | |
Constructor (initialize to zero, alpha to 255) | |
csRGBpixel (const csRGBpixel &p) | |
Copy constructor. | |
csRGBpixel (const csRGBcolor &c) | |
Construct from a csRGBcolor object; sets alpha to 255. | |
csRGBpixel (int r, int g, int b, int a=255) | |
Initialize the pixel with some R/G/B/A value. | |
bool | eq (const csRGBpixel &p) const |
Compare with another csRGBpixel, but don't take alpha into account. | |
int | Intensity () const |
Get the pixel intensity. | |
unsigned char | Luminance () const |
Get the pixel luminance. | |
operator csRGBcolor () const | |
Construct an csRGBcolor from this csRGBpixel. | |
bool | operator!= (const csRGBcolor &c) const |
Check if the csRGBpixel is not equal to an csRGBcolor. | |
bool | operator!= (const csRGBpixel &p) const |
Check if this csRGBpixel is not equal to another csRGBpixel (including alpha). | |
void | operator+= (const csRGBcolor &c) |
Add a csRGBcolor (may overflow!) | |
bool | operator== (const csRGBcolor &c) const |
Compare with an csRGBcolor. | |
bool | operator== (const csRGBpixel &p) const |
Compare with an csRGBpixel (including alpha value) | |
void | SafeAdd (const csRGBpixel &c) |
Use this in the general case. | |
void | Set (const int r, const int g, const int b, const int a=255) |
Assign given red/green/blue/alpha values to this pixel. | |
void | Set (const csRGBpixel &p) |
Assign another csRGBpixel. | |
void | UnsafeAdd (const csRGBpixel &c) |
Use this only if you know there is no overflow. | |
Public Attributes | |
unsigned char | red |
The red, green, blue and alpha components. |
An RGB pixel.
In addition to R,G,B color components this structure also contains the Alpha channel component, which is used in images (that potentially have an alpha channel).
Definition at line 152 of file rgbpixel.h.
csRGBpixel::csRGBpixel | ( | ) | [inline] |
Constructor (initialize to zero, alpha to 255)
Definition at line 157 of file rgbpixel.h.
csRGBpixel::csRGBpixel | ( | const csRGBpixel & | p | ) | [inline] |
Copy constructor.
Definition at line 159 of file rgbpixel.h.
csRGBpixel::csRGBpixel | ( | const csRGBcolor & | c | ) | [inline] |
Construct from a csRGBcolor object; sets alpha to 255.
Definition at line 162 of file rgbpixel.h.
csRGBpixel::csRGBpixel | ( | int | r, |
int | g, | ||
int | b, | ||
int | a = 255 |
||
) | [inline] |
Initialize the pixel with some R/G/B/A value.
Definition at line 165 of file rgbpixel.h.
bool csRGBpixel::eq | ( | const csRGBpixel & | p | ) | const [inline] |
Compare with another csRGBpixel, but don't take alpha into account.
Definition at line 189 of file rgbpixel.h.
int csRGBpixel::Intensity | ( | ) | const [inline] |
Get the pixel intensity.
Definition at line 192 of file rgbpixel.h.
unsigned char csRGBpixel::Luminance | ( | ) | const [inline] |
Get the pixel luminance.
Definition at line 195 of file rgbpixel.h.
csRGBpixel::operator csRGBcolor | ( | ) | const [inline] |
Construct an csRGBcolor from this csRGBpixel.
Definition at line 186 of file rgbpixel.h.
bool csRGBpixel::operator!= | ( | const csRGBcolor & | c | ) | const [inline] |
Check if the csRGBpixel is not equal to an csRGBcolor.
Definition at line 177 of file rgbpixel.h.
bool csRGBpixel::operator!= | ( | const csRGBpixel & | p | ) | const [inline] |
Check if this csRGBpixel is not equal to another csRGBpixel (including alpha).
Definition at line 183 of file rgbpixel.h.
void csRGBpixel::operator+= | ( | const csRGBcolor & | c | ) | [inline] |
Add a csRGBcolor (may overflow!)
Definition at line 211 of file rgbpixel.h.
bool csRGBpixel::operator== | ( | const csRGBcolor & | c | ) | const [inline] |
Compare with an csRGBcolor.
Definition at line 171 of file rgbpixel.h.
bool csRGBpixel::operator== | ( | const csRGBpixel & | p | ) | const [inline] |
Compare with an csRGBpixel (including alpha value)
Definition at line 174 of file rgbpixel.h.
void csRGBpixel::SafeAdd | ( | const csRGBpixel & | c | ) | [inline] |
Use this in the general case.
This version test for overflow. Note that alpha is ignored by this routine.
Definition at line 231 of file rgbpixel.h.
void csRGBpixel::Set | ( | const int | r, |
const int | g, | ||
const int | b, | ||
const int | a = 255 |
||
) | [inline] |
Assign given red/green/blue/alpha values to this pixel.
Definition at line 200 of file rgbpixel.h.
void csRGBpixel::Set | ( | const csRGBpixel & | p | ) | [inline] |
Assign another csRGBpixel.
Definition at line 208 of file rgbpixel.h.
void csRGBpixel::UnsafeAdd | ( | const csRGBpixel & | c | ) | [inline] |
Use this only if you know there is no overflow.
Also take care to set alpha to 0 in 'c'!
Definition at line 221 of file rgbpixel.h.
unsigned char csRGBpixel::red |
The red, green, blue and alpha components.
Definition at line 155 of file rgbpixel.h.