This function reverses the color sequence in the pixels of image hIGear's image bitmap.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_IP_swap_red_blue ( HIGEAR hIGear); |
Name | Type | Description |
---|---|---|
hIGear | HIGEAR | HIGEAR handle of image. |
Returns the number of ImageGear errors that occurred during this function call.
All pixel formats supported by ImageGear for C and C++.
Non-RGB images are converted to RGB for processing, and then back to original color space.
Image Processing
Copy Code
|
|
---|---|
HIGEAR hIGear; /* HIGEAR handle of 24-bit image */
IG_IP_swap_red_blue ( hIGear );
|
If the sequence is Blue-Green-Red (the standard sequence for a DIB), it is reversed to Red-Green-Blue. If Red-Green-Blue, each pixel is reversed to Blue-Green-Red. This function is typically used on 24-bit RGB images, but it can operate on other image types as well.