解决方法
是的,可以只使用标准的win32库.
HBITMAP hBMP = (HBITMAP) LoadImage( NULL,"Your/ImagePath/a.bmp",IMAGE_BITMAP,LR_LOADFROMFILE);
hBMP是BITMAP的句柄,可以根据需要使用.
注意:从文档中传递NULL作为第一个参数非常重要:
hinst [in,optional]
To load a stand-alone resource (icon,cursor,or bitmap file)—for
example,c:\myimage.bmp—set this parameter to NULL.