|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| gdi32.lib
| Header File
| wingdi.h
| Unicode
| WinNT
| Platform Notes
| Windows 95: int == 16 bits
|
|
|
GetObject
The GetObject function obtains information about a specified graphics object. Depending on
the graphics object, the function places a filled-in BITMAP, DIBSECTION, EXTLOGPEN, LOGBRUSH, LOGFONT, or LOGPEN structure, or a count of table entries (for a logical palette), into a
specified buffer.
int GetObject(
HGDIOBJ hgdiobj,
| // handle to graphics object of interest
| int cbBuffer,
| // size of buffer for object information
| LPVOID lpvObject
| // pointer to buffer for object information
| );
|
|
Parameters
hgdiobj
A handle to the graphics object of interest. This can be a handle to one of
the following: a logical bitmap, a brush, a font, a palette, a pen, or a device
independent bitmap created by calling the CreateDIBSection function.
cbBuffer
Specifies the number of bytes of information to be written to the buffer.
lpvObject
Points to a buffer that is to receive the information about the specified
graphics object.
The following table shows the type of information the buffer receives for each
type of graphics object you can specify with hgdiobj:
hgdiobj Type
| Data Written to *lpvObject
| HBITMAP
| BITMAP
| HBITMAP returned from a call to CreateDIBSection
| DIBSECTION, if cbBuffer is set to sizeof(DIBSECTION), or BITMAP, if cbBuffer is set to sizeof(BITMAP)
| HPALETTE
| a WORD count of the number of entries in the logical palette
| HPEN returned from a call to ExtCreatePen
| EXTLOGPEN
| HPEN
| LOGPEN
| HBRUSH
| LOGBRUSH
| HFONT
| LOGFONT
|
If the lpvObject parameter is NULL, the function return value is the number of bytes required
to store the information it writes to the buffer for the specified graphics
object.
Return Values
If the function succeeds, and lpvObject is a valid pointer, the return value is the number of bytes stored into the
buffer.
If the function succeeds, and lpvObject is NULL, the return value is the number of bytes required to hold the
information the function would store into the buffer.
If the function fails, the return value is zero. To get extended error
information, call GetLastError.
Remarks
The buffer pointed to by the lpvObject parameter must be sufficiently large to receive the information about the
graphics object.
If hgdiobj identifies a bitmap created by calling CreateDIBSection, and the specified buffer is large enough, the GetObject function returns a DIBSECTION structure. In addition, the bmBits member of the BITMAP structure contained within the DIBSECTION will contain a pointer to the bitmap's bit values.
If hgdiobj identifies a bitmap created by any other means, GetObject returns only the width, height, and color format information of the bitmap.
You can obtain the bitmap's bit values by calling the GetDIBits or GetBitmapBits function.
If hgdiobj identifies a logical palette, GetObject retrieves a two-byte integer that specifies the number of entries in the
palette. The function does not retrieve the LOGPALETTE structure defining the palette. To retrieve information about palette
entries, an application can call the GetPaletteEntries function.
See Also
CreateDIBSection, GetBitmapBits, GetDIBits, GetPaletteEntries, GetRegionData, BITMAP, DIBSECTION, EXTLOGPEN, LOGBRUSH, LOGFONT, LOGPALETTE, LOGPEN
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|