Share via


Gdi::GetPixel_I (Windows Embedded CE 6.0)

1/6/2010

This method retrieves the red, green, blue (RGB) color value of the pixel at the specified coordinates.

Syntax

static WINGDIAPI COLORREF WINAPI GetPixel_I(
  HDC hdc, 
  int nXPos, 
  int nYPos
);

Parameters

  • hdc
    [in] Handle to the device context.
  • nXPos
    [in] Integer that specifies the logical x-coordinate of the pixel to be examined.
  • nYPos
    [in] Integer that specifies the logical y-coordinate of the pixel to be examined.

Return Value

The RGB value of the pixel indicates success. CLR_INVALID indicates that the pixel is outside of the current clipping region.

Remarks

This method is an internal version of the GetPixel function.

The pixel must be within the boundaries of the current clipping region.

Not all devices support Gdi::GetPixel_I. An application should call Gdi::GetDeviceCaps_I to determine whether a specified device supports this function.

Requirements

Header gdi.hpp
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

Gdi
GetPixel
Gdi::GetDeviceCaps_I
Gdi::SetPixel_I