如何使用GetHBITMAP方法?
我有一个 gdi+ 位图,我想将位图转换为 HBitmap。 我写了下面的代码。
HBITMAP temp;
Color color;
img->GetHBITMAP(color, &temp);
但它不起作用,我怎样才能获得 HBitmap?
I have a gdi+ bitmap, and I want to convert bitmap into HBitmap.
I write the following code.
HBITMAP temp;
Color color;
img->GetHBITMAP(color, &temp);
But It do not work, How can I get a HBitmap?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 MSDN 的演示代码:
Demonstration code from MSDN:
检查GetHBITMAP函数的返回值。
Check the return value of the GetHBITMAP function.