We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5439091 commit 9bed79eCopy full SHA for 9bed79e
1 file changed
Tests/test_imagegrab.py
@@ -15,6 +15,9 @@ def test_grab(self):
15
]:
16
self.assert_image(im, im.mode, im.size)
17
18
+ im = ImageGrab.grab(bbox=(10, 20, 50, 80))
19
+ self.assert_image(im, im.mode, (40, 60))
20
+
21
def test_grabclipboard(self):
22
if sys.platform == "darwin":
23
subprocess.call(["screencapture", "-cx"])
0 commit comments