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 9a15b0a commit 33cf004Copy full SHA for 33cf004
application/screenshot.py
@@ -0,0 +1,6 @@
1
+import numpy as np
2
+import cv2
3
+import pyautogui
4
+image=pyautogui.screenshot()
5
+img=cv2.cvtColor(np.array(image),cv2.COLOR_RGB2BGR)
6
+cv2.imwrite('screen.png',img)
0 commit comments