如何在屏幕抓取中捕获鼠标光标?
我正在使用 OpenGL 来抓取 Mac OSX 屏幕的内容 - 这工作得很好,除了它不抓取鼠标光标图形。我需要以某种方式获取光标图形,无论是作为屏幕捕获例程的一部分,还是单独获取。
我的问题是:
- 如何确保鼠标光标图像包含在 OpenGL 屏幕抓取中?
或者
- 如何获取当前鼠标光标图像作为简单的 RGBA 位图?
我正在 Mac OSX 10.6 下使用 C++ / Carbon 进行开发。
干杯,
I'm using OpenGL to grab the contents of the Mac OSX screen - thsi works very well, except it does not grab the mouse cursor graphic. I need to somewhow get that cursor graphic, either as part of my screen capture routine, or separately.
My question is either:
- How can I ensure that the mouse cursor image is included with the OpenGL screen grab?
or
- How can I get the current mouse cursor image as a simple RGBA bitmap?
I'm developing under Mac OSX 10.6, using C++ / Carbon.
Cheers,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 I/O Kit 读取当前光标的像素。请参阅 IOFramebufferShared.h 和 IOGraphicsLib.h 用于一些相关的 API。
You can use I/O Kit to read the pixels for the current cursor. See IOFramebufferShared.h and IOGraphicsLib.h for some of the relevant API.