pyscreenshot icon indicating copy to clipboard operation
pyscreenshot copied to clipboard

Python screenshot library, replacement for the Pillow ImageGrab module on Linux.

Results 7 pyscreenshot issues
Sort by recently updated
recently updated
newest added

sane as the all_screens param of PIL.ImageGrab

We can not use `pyscreenshot` on GNOME 42, I believe because the lack of the `gnome-screenshot` app. Do you know some command line we can use instead? If so maybe...

Could pyside6 be supported? The api should be very similar and maybe identical to pyside2

There are small typos in: - README.md - pyscreenshot/examples/virtdisp.py - pyscreenshot/plugins/mac_screencapture.py - tests/fillscreen.py Fixes: - Should read `displaying` rather than `diplaying`. - Should read `slightly` rather than `slighly`. - Should...

Hello, There is some problem after type: `import pyscreenshot as ImageGrab` error message: No module named 'PIL' So i have to do: pip install Pillow After i looked it is:...

See https://developer.apple.com/documentation/avfoundation/cameras_and_media_capture/requesting_authorization_for_media_capture_on_macos A Mac-specific code, maybe in PIL or the Python Launcher itself, needs to be added to allow the app to request the screen capture permission BEFORE the code...

I want to convert clipboard image content into an image I tried ``` from PIL import ImageGrab im = ImageGrab.grabclipboard() is macOS and Windows only im.save(filename) ``` it says `ImageGrab.grabclipboard()...