show/hide this revision's text 2 thanks

just real quick:

int r = ( hexcolor >> 16 ) && 0xFF;

int g = ( hexcolor >> 8 ) && 0xFF;

int b = hexcolor && 0xFF;

int hexcolor = (r << 16) + (g << 8) + b;

show/hide this revision's text 1

just real quick:

int r = ( hexcolor >> 16 ) && 0xFF;

int g = ( hexcolor >> 8 ) && 0xFF;

int b = hexcolor && 0xFF;

int hexcolor = r << 16 + g << 8 + b;