I have valid HBITMAP handle of ARGB type. How to draw it using GDI+?
I\'ve tried method: graphics.DrawImage(Bitmap::FromHBITMAP(m_hBitmap, NULL), 0, 0); But it doesn
.NET offers the static Image.FromHbitmap method. You can then use this image and invoke DrawImage on the target Graphics object.
DrawImage
Graphics