Fork of pyscreenshot for RPA use
Project description
The pyscreenshot module can be used to copy the contents of the screen to a PIL or Pillow image memory using various back-ends. Replacement for the ImageGrab Module, which works on Windows only, so Windows users don’t need this library. For handling image memory (e.g. saving to file, converting,..) please read PIL or Pillow documentation.
- Links:
documentation: http://pyscreenshot.readthedocs.org
- Goal:
Pyscreenshot tries to allow to take screenshots without installing 3rd party libraries. It is cross-platform but useful for Linux based distributions. It is only a pure Python wrapper, a thin layer over existing back-ends. Its strategy should work on most Linux distributions: a lot of back-ends are wrapped, if at least one exists then it works, if not then one back-end should be installed.
- Features:
Cross-platform wrapper
Capturing the whole desktop
Capturing an area
some back-ends are based on this discussion: http://stackoverflow.com/questions/69645/take-a-screenshot-via-a-python-script-linux
pure Python library
supported Python versions: 2.7, 3.6, 3.7, 3.8
time taken: 0.1s - 2.0s
Performance is not a target for this library, but you can benchmark the back-ends and choose the fastest one.
Interactivity is not supported.
Mouse pointer is not visible.
- Known problems:
ImageMagick creates blackbox on some systems
gnome-screenshot back-end does not check $DISPLAY -> not working with Xvfb
- Similar projects:
Examples
grab and show the whole screen:
#-- include('examples/showgrabfullscreen.py') --# import pyscreenshot as ImageGrab if __name__ == '__main__': # grab fullscreen im = ImageGrab.grab() # save image file im.save('screenshot.png') # show image in a window im.show() #-#
to start the example:
python3 -m pyscreenshot.examples.showgrabfullscreen
grab and show the part of the screen:
#-- include('examples/showgrabbox.py')--# import pyscreenshot as ImageGrab if __name__ == '__main__': # part of the screen im = ImageGrab.grab(bbox=(10, 10, 510, 510)) # X1,Y1,X2,Y2 im.show() #-#
to start the example:
python3 -m pyscreenshot.examples.showgrabbox
Installation
install Pillow (Ubuntu: sudo apt-get install python3-pil)
install at least one back-end
install the program:
pip3 install pyscreenshot
Command line interface
Back-end performance:
The performance can be checked with pyscreenshot.check.speedtest. Example: #-- sh('python3 -m pyscreenshot.check.speedtest --virtual-display 2>/dev/null') --# n=10 ------------------------------------------------------ scrot 6.1 sec ( 608 ms per call) imagemagick 9.7 sec ( 969 ms per call) wx 4.1 sec ( 408 ms per call) pygdk3 3.3 sec ( 328 ms per call) qtpy 6.9 sec ( 687 ms per call) pyqt5 6.9 sec ( 687 ms per call) pyqt 6.4 sec ( 644 ms per call) pyside2 6.7 sec ( 671 ms per call) pyside 6.5 sec ( 652 ms per call) gnome-screenshot 12 sec ( 1209 ms per call) #-#
Print versions:
#-- sh('python3 -m pyscreenshot.check.versions 2> /dev/null ')--# python 3.7.3 pyscreenshot 0.7 scrot 1.1.1 imagemagick 6.9.10 wx 4.0.4 pygdk3 3.32.0 qtpy 1.3.1 pyqt5 5.12.1 pyqt 4.12.1 pyside2 5.11.2 pyside 1.2.2 pygtk missing gnome-screenshot 3.30.0 #-#
Wayland
On Wayland only the gnome-screenshot back-end works:
im = ImageGrab.grab(backend='gnome-screenshot')
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file rpaframework-screenshot-0.3.0.tar.gz
.
File metadata
- Download URL: rpaframework-screenshot-0.3.0.tar.gz
- Upload date:
- Size: 19.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.0 CPython/3.8.0 Darwin/19.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea6cbe4384f63f82abfa8ba419487c750f54ccbf846f10d59cdcf2a23b672a85 |
|
MD5 | 54be775425a3f3b29f904601e674a9e1 |
|
BLAKE2b-256 | 6432ee5e731fe911eb6669e74b6ca04b6a6c4b155dac885186dd62bd778948a1 |
Provenance
File details
Details for the file rpaframework_screenshot-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: rpaframework_screenshot-0.3.0-py3-none-any.whl
- Upload date:
- Size: 29.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.0 CPython/3.8.0 Darwin/19.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ce155ebbb298d153200408066d21e32d2b808975c90590b87043c087f502953 |
|
MD5 | 1d2928079643c253a6df7f76c533fce0 |
|
BLAKE2b-256 | f3a2510c4782e849fddddc35a5e17f4161d5c043cd75a505ba19f639ad8b8d72 |