DWORD GetPixel( int x, int y ) const;
DWORD GetPixel( POINT point ) const;
x
Specifies the logical x-coordinate of the point to be examined.
y
Specifies the logical y-coordinate of the point to be examined.
point
Specifies the logical x- and y-coordinates of the point to be examined.
Retrieves the RGB color value of the pixel at the point specified by x and y. The point must be in the clipping region. If the point is not in the clipping region, the function has no effect and returns -1.
Not all devices support the GetPixel function. For more information, see the RC_BITBLT raster capability under the GetDeviceCaps member function.
The GetPixel member function has two forms. The first takes two coordinate values; the second takes either a POINT structure or a CPoint object.
For either version of the function, an RGB color value for the color of the given point. It is -1 if the coordinates do not specify a point in the clipping region.
CDC::GetDeviceCaps, CDC::SetPixel, ::GetPixel