Skip to content

Instantly share code, notes, and snippets.

@Measter
Created April 8, 2015 17:04
Show Gist options
  • Select an option

  • Save Measter/17e63f9e09e86b4f36c5 to your computer and use it in GitHub Desktop.

Select an option

Save Measter/17e63f9e09e86b4f36c5 to your computer and use it in GitHub Desktop.
16BPP Bug
Color refColor = Color.FromArgb( 255, 200, 200, 200 );
Bitmap bmp = new Bitmap( 4,4, PixelFormat.Format16bppRgb555 );
bmp.SetPixel( 2,2, refColor );
Color retCol = bmp.GetPixel( 2, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment