Issue
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?
Solution
According to this blog, just add the x, y, width, and height to grab the full desktop.
Answered By - baysmith
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.