如何vc画点,函数名是什么

2024-12-02 10:46:52
推荐回答(2个)
回答(1):

SetPixel
The SetPixel function sets the pixel at the specified coordinates to the specified color.

COLORREF SetPixel(
HDC hdc, // handle to device context
int X, // x-coordinate of pixel
int Y, // y-coordinate of pixel
COLORREF crColor // pixel color
);

Parameters
hdc
Handle to the device context.
X
Specifies the x-coordinate, in logical units, of the point to be set.
Y
Specifies the y-coordinate, in logical units, of the point to be set.
crColor
Specifies the color to be used to paint the point.
Return Values
If the function succeeds, the return value is the RGB value that the function sets the pixel to. This value may differ from the color specified by crColor; that happens when an exact match for the specified color cannot be found.

If the function fails, the return value is –1.

Windows NT: To get extended error information, callGetLastError.

Remarks
The function fails if the pixel coordinates lie outside of the current clipping region.

Not all devices support the SetPixel function. For more information, see GetDeviceCaps.

QuickInfo
Windows NT: Requires version 3.1 or later.
Windows: Requires Windows 95 or later.
Windows CE: Requires version 1.0 or later.
Header: Declared in wingdi.h.
Import Library: Use gdi32.lib.

回答(2):

CClientDC dc(this);
dc.SetPixel(x,y,RGB(255,255,0));
x,y为点坐标