Skip to content

Instantly share code, notes, and snippets.

@sspencer
Created July 20, 2011 17:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sspencer/1095458 to your computer and use it in GitHub Desktop.
Save sspencer/1095458 to your computer and use it in GitHub Desktop.
RGB Conversion
int rgb = ((r&0x0ff)<<16)|((g&0x0ff)<<8)|(b&0x0ff);
int red = (rgb>>16)&0x0ff;
int green=(rgb>>8) &0x0ff;
int blue= (rgb) &0x0ff;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment