How can i free hbitmap

江枫思渺然 提交于 2019-12-06 05:02:38

I assume you are using C#.

You can use DeleteObject to delete this HBITMAP.

Declare it like this:

using System.Runtime.InteropServices class API { [DllImport("WINGDI32.dll")] public static extern int DeleteObject(IntPtr hObject); }

And delete the object:

API.DeleteObject(hBitmap);

As your function returns a pointer to the HBITMAP, you cannot delete it before return. Instead, you should delete it later enough when there will be no more use of this bitmap.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!