Desktop Functions: Smart Device Functions:
|
SetBitmapBits (gdi32)
Windows GDI SetBitmapBits (gdi32) Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't. To create a page in a module other than gdi32, prefix the name with the module name and a period. . Summary The SetBitmapBits API The SetBitmapBits function sets the bits of color data for a bitmap to the specified values. C# Signature:[DllImport("gdi32.dll")] static extern int SetBitmapBits(IntPtr hbmp, uint cBytes, byte [] lpBits); Note This function is provided only for compatibility with 16-bit versions of Windows. Applications should use the SetDIBits function. User-Defined Types:None. LONG SetBitmapBits(
HBITMAP hbmp, // handle to bitmap ); Notes:None. Parameters Tips & Tricks:Please add some! hbmp
[in] Handle to the bitmap to be set. This must be a compatible bitmap (DDB). cBytes
[in] Specifies the number of bytes pointed to by the lpBits parameter. lpBits
[in] Pointer to an array of bytes that contain color data for the specified bitmap. Sample Code:Please add some! Return Values Alternative Managed API:Do you know one? Please contribute it! If the function succeeds, the return value is the number of bytes used in setting the bitmap bits. Documentation SetBitmapBits on MSDN If the function fails, the return value is zero. Windows NT/2000/XP: To get extended error information, call GetLastError. Remarks The array identified by lpBits must be WORD aligned. Requirements
Windows NT/2000/XP: Included in Windows NT 3.1 and later. See Also Bitmaps Overview, Bitmap Functions, GetBitmapBits, SetDIBits Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|