Skip to content

Instantly share code, notes, and snippets.

@karinharp
Created December 7, 2015 12:57
Show Gist options
  • Save karinharp/deaa01e5943bb7d55c26 to your computer and use it in GitHub Desktop.
Save karinharp/deaa01e5943bb7d55c26 to your computer and use it in GitHub Desktop.
public static void SetColor(this Image src, uint value){
src.color = new Color(
(float)((value & 0x00FF0000) >> 16) / 256.00f,
(float)((value & 0x0000FF00) >> 8) / 256.00f,
(float)((value & 0x000000FF) >> 0) / 256.00f,
(float)((value & 0xFF000000) >> 24) / 256.00f
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment