GetDIBits 中的 HDC 有何用途?
我使用 GetDIBits 将位图数据从屏幕兼容的设备上下文获取到某种格式的 DIB 中。我的印象是,只有当源位图为每像素 8 位或更少时,才需要 DC 来合成颜色表。由于我的源位图是完整的 32 位彩色图像,并且这是一个一次性程序,并且我没有方便的屏幕 DC,因此我将 HDC 参数设置为 NULL。这不起作用。当我抓住屏幕 DC 并将其传递进去后,它就开始工作了。
这让我想知道为什么 GetDIBits
需要设备上下文。它有什么用?
I was using GetDIBits
to get bitmap data from a screen compatible device context into a DIB of a certain format. I was under the impression that the DC was necessary only for synthesizing a color table when the source bitmap is 8 bits-per-pixel or less. Since my source bitmap was a full 32-bit color image and this was a one-off program and I didn't have the screen DC handy, I set the HDC parameter to NULL. This didn't work. Once I grabbed the screen DC and passed it in, it did start working.
That left me wondering why GetDIBits
requires the device context. What is it used for?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在:
第二个参数
hbmp
是设备相关位图,它将使用设备无关位图的颜色信息进行更改。hdc
是该(设备相关)位图所依赖的设备上下文的句柄。进行调用时,Windows 使用此设备上下文中的信息来决定如何执行转换。In:
The second argument
hbmp
is the device dependent bitmap that will be altered using the color information from the device independent bitmap. Thehdc
is a handle to the device context on which this (device dependent) bitmap depends. When the call is made, Windows uses information from this device context to decide how to perform the transformation.