术语 | setpixelv |
释义 | SetPixelV 语法: BOOL SetPixelV( __in HDC hdc, __in int X, __in int Y, __in COLORREF crColor ); SetPixelV功能 该SetPixelV函数设置在指定的像素坐标到指定的颜色最接近。这一点必须在剪辑区域和设备的表面可见部分。 参数 hdc [in] 一个句柄,设备上下文。 X [in] 的x坐标,按逻辑单位,该点被设置。 y [in] 在y坐标,按逻辑单位的问题,要设置。 crColor [in] 颜色用来绘制点。要创建一个COLORREF颜色值,使用RGB宏。 返回值 如果函数成功,返回值为非零。 如果函数失败,返回值是零。 备注 并非所有设备都支持SetPixelV功能。有关详细信息,请参阅在GetDeviceCaps函数RC_BITBLT能力的描述。 SetPixelV比SetPixel快,因为它不需要返回值的点的颜色其实画。 要求: 最低支持:client-Windows 2000专业版 最低支持server-Windows 2000服务器 HeaderWingdi.h(头文件:winuser.h) LibraryGdi32.lib DLLGdi32.dll 参见 位图概述 位图功能 GetDeviceCaps SetPixel COLORREF 的RGB 如果有任何问题和意见,请发送给微软(wsddocfb@microsoft.com) 生成日期:2009年7月11日 ==英文原文==SetPixelV Function The SetPixelV function sets the pixel at the specified coordinates to the closest approximation of the specified color. The point must be in the clipping region and the visible part of the device surface. Syntax BOOL SetPixelV( __in HDC hdc, __in int X, __in int Y, __in COLORREF crColor ); Parameters hdc [in] A handle to the device context. X [in] The x-coordinate, in logical units, of the point to be set. Y [in] The y-coordinate, in logical units, of the point to be set. crColor [in] The color to be used to paint the point. To create a COLORREF color value, use the RGB macro. Return Value If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. Remarks Not all devices support the SetPixelV function. For more information, see the description of the RC_BITBLT capability in the GetDeviceCaps function. SetPixelV is faster than SetPixel because it does not need to return the color value of the point actually painted. Requirements Minimum supported clientWindows 2000 Professional Minimum supported serverWindows 2000 Server HeaderWingdi.h (include Windows.h) LibraryGdi32.lib DLLGdi32.dll See Also Bitmaps Overview Bitmap Functions GetDeviceCaps SetPixel COLORREF RGB Send comments about this topic to Microsoft Build date: 7/11/2009 ==原始网址==http://msdn.microsoft.com/en-us/library/dd145079(VS.85).aspx\n |
随便看 |
|
windows api函数参考手册包含2258条windows api函数文档,详细介绍nodejs、java、rust调用windows api的方法技巧,是学习windows api编程的入门中文文档。