Home > Article > Backend Development > How to take screenshot in python
Today I will talk about how to use Python to take screenshots.
How easy is it to take screenshots in Python, which is famous for its simplicity?
In fact, it only takes two lines of code to do it: (recommended learning: Python video tutorial)
from PIL import ImageGrab ImageGrab.grab().show()## What is #PIL? The full name of PIL is Pillow, which means "pillow" in English. It is an excellent image processing library on Python. What should be noted here is that PIL is a package, not a module, so when we import, we always import from PIL import module name. from PIL import ImageGrab Import the ImageGrab module in the PIL packageImageGrab.grab().show()The ImageGrab.grab() method returns an Image object and then calls The object's show methodgrab method only accepts one parameter, which sets the screenshot area. The parameter must be a tuple typeThe parameter tuple format is (area start x-axis coordinate, Area start y-axis coordinate, area end x-axis coordinate, area end y-axis coordinate)Or understand it this way (upper left corner x, upper left corner y, lower right corner x, lower right corner y) When the grab method has no parameters, the full screen will be captured. The function of the show method is to save the Image object as a picture and then open it. The saving location is the temporary folder of the current user. For more Python related technical articles, please visit the
Python Tutorial column to learn!
The above is the detailed content of How to take screenshot in python. For more information, please follow other related articles on the PHP Chinese website!