RGB color channel/seprate and combine
Posted by activetofocus | Posted in Flash Technology | Posted on 18-10-2009
Tags: RGB color channel/seprate and combine
0
To seprate the color channels:
- R = 0xFC3343 >> 16
- G = (0xFC3343 >> 8 ) & 0xFF
- B = 0xFC3343 & 0xFF
To combine them:
- RGB = (0xFC << 16) + (0×33 << 8 ) + 0×43

























