int nRGBValue = 15391129;
// 方式一
int blueMask = 0xFF0000, greenMask = 0xFF00, redMask = 0xFF;
int r1 = nRGBValue & redMask;
int g1 = (nRGBValue & greenMask) >> 8;
int b1 = (nRGBValue & blueMask) >> 16;
// 方式二
int r2 = nRGBValue & 0xFF;
int g2 = (nRGBValue >> 8) & 0xFF;
int b2 = (nRGBValue >> 16) & 0xFF;
// 方式三
int r3 = GetRValue(nRGBValue);
int g3 = GetGValue(nRGBValue);
int b3 = GetBValue(nRGBValue);