截取多显示器设置的屏幕截图
我正在使用这条线截取屏幕截图
screen = QPixmap.grabWindow(QApplication.desktop().winId())
,但显然如果用户有多个显示器,则不会获取完整的桌面。
有没有办法将所有显示器的桌面抓取到单个图像中?
I'm taking a screenshot using this line
screen = QPixmap.grabWindow(QApplication.desktop().winId())
but apparently that doesn't grab the full desktop if the user has several monitors.
Is there a way to grab the desktop of all monitors into a single image?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据这个 博客,只需添加 x, y、宽度和高度以获取整个桌面。
According to this blog, just add the x, y, width, and height to grab the full desktop.
只需要循环
QApplication.screens()
并一次抓取它们,就像这样......注意:使用 Python 3.8 和 PyQt5
Just need to loop over
QApplication.screens()
and grab them one at a time like so...Note: using Python 3.8 and PyQt5