使用 BITMAP::bmBits 与 GetDIBits 有什么区别?
我刚刚意识到GDI中有BITMAP
,然后你在几乎所有的GetDIBits中执行
GetObject(hBmp, sizeof(BITMAP), &bmp);
示例。但这里新填充的 bmp 有一个字段:bmBits
如果我这里已经有了位图的位,为什么还要再次调用 GetDIBits
呢?
谢谢, 阿里韦利
I just realized that there is BITMAP
in GDI and then you do GetObject(hBmp, sizeof(BITMAP), &bmp);
in almost all of the GetDIBits
examples. but the newly populated bmp here has a field: bmBits
If I already have bitmaps's bits here, why would I call GetDIBits
once again?
Thanks,
Ali Veli
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅当使用
CreateDIBSection
创建位图时,才能使用GetObject
然后获取BITMAP::bmBits
来获取位。GetDIBits
还可用于更改位图的格式或将其从 DDB 更改为 DIB。Using
GetObject
then getting theBITMAP::bmBits
to get the bits can only be used when the bitmap was created usingCreateDIBSection
.GetDIBits
can also be used to change the format of the Bitmap or to change it from DDB to DIB.