在 GLUT 中截取屏幕截图
我有一个 GLUT 应用程序,我想拍摄一系列窗口屏幕截图,以便稍后将其放入电影中。是否有一个函数可以获取 GLUT 创建的窗口的内容并将其放入图像文件中?
I have a GLUT application and I want to take a sequence of screen captures of the window so I can later put it into a movie. Is there a function that takes the contents of a window created by GLUT and puts it into an image file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
glReadPixels()
抓取帧缓冲区并使用您最喜欢的图像处理库转储结果。Use
glReadPixels()
to grab the framebuffer and dump the result using your favorite image handling library.