Created
April 8, 2015 17:04
-
-
Save Measter/17e63f9e09e86b4f36c5 to your computer and use it in GitHub Desktop.
16BPP Bug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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