2013-10-13 04:22:02 +04:00
|
|
|
.. py:module:: PIL.ImageGrab
|
|
|
|
.. py:currentmodule:: PIL.ImageGrab
|
|
|
|
|
2020-06-22 06:52:50 +03:00
|
|
|
:py:mod:`~PIL.ImageGrab` Module
|
|
|
|
===============================
|
2013-10-13 04:22:02 +04:00
|
|
|
|
2020-06-22 06:52:50 +03:00
|
|
|
The :py:mod:`~PIL.ImageGrab` module can be used to copy the contents of the screen
|
2013-10-13 04:22:02 +04:00
|
|
|
or the clipboard to a PIL image memory.
|
|
|
|
|
|
|
|
.. versionadded:: 1.1.3
|
|
|
|
|
2020-06-13 05:01:38 +03:00
|
|
|
.. py:function:: grab(bbox=None, include_layered_windows=False, all_screens=False, xdisplay=None)
|
2013-10-13 20:56:33 +04:00
|
|
|
|
|
|
|
Take a snapshot of the screen. The pixels inside the bounding box are
|
2020-05-03 06:06:25 +03:00
|
|
|
returned as an "RGBA" on macOS, or an "RGB" image otherwise.
|
2015-08-01 10:44:13 +03:00
|
|
|
If the bounding box is omitted, the entire screen is copied.
|
2013-10-13 20:56:33 +04:00
|
|
|
|
2020-02-15 07:35:12 +03:00
|
|
|
.. versionadded:: 1.1.3 (Windows), 3.0.0 (macOS), 7.1.0 (Linux (X11))
|
2013-10-13 20:56:33 +04:00
|
|
|
|
|
|
|
:param bbox: What region to copy. Default is the entire screen.
|
2019-09-20 18:35:08 +03:00
|
|
|
Note that on Windows OS, the top-left point may be negative if ``all_screens=True`` is used.
|
2019-04-26 13:09:46 +03:00
|
|
|
:param include_layered_windows: Includes layered windows. Windows OS only.
|
2019-09-27 01:58:32 +03:00
|
|
|
|
|
|
|
.. versionadded:: 6.1.0
|
2019-09-20 18:35:08 +03:00
|
|
|
:param all_screens: Capture all monitors. Windows OS only.
|
2019-09-27 01:58:32 +03:00
|
|
|
|
|
|
|
.. versionadded:: 6.2.0
|
2019-12-09 17:55:15 +03:00
|
|
|
|
2020-06-13 05:01:38 +03:00
|
|
|
:param xdisplay:
|
2020-07-10 00:50:57 +03:00
|
|
|
X11 Display address. Pass :data:`None` to grab the default system screen. Pass ``""`` to grab the default X11 screen on Windows or macOS.
|
2020-06-13 05:01:38 +03:00
|
|
|
|
|
|
|
You can check X11 support using :py:func:`PIL.features.check_feature` with ``feature="xcb"``.
|
2019-12-09 17:55:15 +03:00
|
|
|
|
2020-02-15 07:35:12 +03:00
|
|
|
.. versionadded:: 7.1.0
|
2013-10-13 20:56:33 +04:00
|
|
|
:return: An image
|
|
|
|
|
2020-06-13 05:01:38 +03:00
|
|
|
.. py:function:: grabclipboard()
|
2013-10-13 20:56:33 +04:00
|
|
|
|
2020-05-03 06:06:25 +03:00
|
|
|
Take a snapshot of the clipboard image, if any. Only macOS and Windows are currently supported.
|
2013-10-13 20:56:33 +04:00
|
|
|
|
2016-09-23 14:12:03 +03:00
|
|
|
.. versionadded:: 1.1.4 (Windows), 3.3.0 (macOS)
|
2013-10-13 20:56:33 +04:00
|
|
|
|
2015-08-01 10:44:13 +03:00
|
|
|
:return: On Windows, an image, a list of filenames,
|
|
|
|
or None if the clipboard does not contain image data or filenames.
|
|
|
|
Note that if a list is returned, the filenames may not represent image files.
|
|
|
|
|
2016-04-18 14:40:52 +03:00
|
|
|
On Mac, an image,
|
|
|
|
or None if the clipboard does not contain image data.
|