9 lines
143 B
Python
9 lines
143 B
Python
"Grab the whole screen"
|
|
import pyscreenshot as ImageGrab
|
|
|
|
# grab fullscreen
|
|
im = ImageGrab.grab()
|
|
|
|
# save image file
|
|
im.save("fullscreen.png")
|