I\'m grabbing a portion of the screen and scanning through the pixels for a certain color range.
I looked at MSDN\'s Capturing an Image example and know how to use t
Some surprise from MSDN:
The table consists of an array of RGBQUAD data structures. (The table for the BITMAPCOREINFO format is built with the RGBTRIPLE data structure.) Red, green, and blue bytes are in reverse order (red swaps position with blue) from the Windows convention.
so, colors are in BGR order in memory after GetDIBits()