使用 BITMAP::bmBits 与 GetDIBits 有什么区别?

发布于 2024-11-27 16:11:11 字数 242 浏览 2 评论 0原文

我刚刚意识到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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怎樣才叫好 2024-12-04 16:11:11

仅当使用 CreateDIBSection 创建位图时,才能使用 GetObject 然后获取 BITMAP::bmBits 来获取位。 GetDIBits 还可用于更改位图的格式或将其从 DDB 更改为 DIB。

Using GetObject then getting the BITMAP::bmBits to get the bits can only be used when the bitmap was created using CreateDIBSection. GetDIBits can also be used to change the format of the Bitmap or to change it from DDB to DIB.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文