Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

GetObject (gdi32)
 
.
Summary

C# Signature:

[DllImport("gdi32.dll")]
static extern int GetObject(IntPtr hgdiobj, int cbBuffer, IntPtr lpvObject);

VB.NET Signature:

<DllImport("gdi32.dll")> _
Private Shared Function GetObject(hgdiobj As IntPtr, cbBuffer As Integer, lpvObject As IntPtr) As Integer
End Function

User-Defined Types:

None.

Notes:

None.

Had a terrible time getting this to work to retrieve a BITMAP object from a HBITMAP, this code finally worked.

(EDIT: Before going through all this check out the tips & tricks section for an official API to do this)

BITMAP bmpScreen;

GCHandle hndl = GCHandle.Alloc(bmpScreen, GCHandleType.Pinned);

IntPtr ptrToBitmap = hndl.AddrOfPinnedObject();

GDI32.GetObject(hBitmap, Marshal.SizeOf<GDI32.BITMAP>(), ptrToBitmap);

bmpScreen = Marshal.PtrToStructure<GDI32.BITMAP>(ptrToBitmap);

hndl.Free();

Tips & Tricks:

A better option than the above example would be to leverage Image.FromHbitmap

Image.FromHbitmap Documentation on MSDN: https://msdn.microsoft.com/en-us/library/k061we7x

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Sample Code:

Please add some!

Documentation
GetObject on MSDN

Alternative Managed API:

Do you know one? Please contribute it!

Documentation
GetObject on MSDN

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

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).

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions