X11中的截图
使用 Xlib 库可以使用哪些函数来截取 X11 桌面的屏幕截图?我更喜欢一种比获取单个像素更有效的方法。 谢谢。
What functions would one use to take a screenshot of an X11 desktop, using the Xlib library? I would prefer a method that's more efficient than getting individual pixels. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
X11中截屏的标准工具是使用
然后,转换为.pnm与
因此,您可以找到xwd的源代码,看看它是如何实现的,
http ://cvsweb.xfree86.org/cvsweb/xc/programs/xwd/xwd.c?rev=HEAD&content-type=text/vnd.viewcvs-markup
The standard tool for taking screenshots in X11 is to use
Then, convert to .pnm with
Therefore, you can locate the source code of xwd and see how it is implemented,
http://cvsweb.xfree86.org/cvsweb/xc/programs/xwd/xwd.c?rev=HEAD&content-type=text/vnd.viewcvs-markup