Pillow/src/PIL/ImageGrab.py

92 lines
2.4 KiB
Python
Raw Normal View History

2010-07-31 06:52:47 +04:00
#
# The Python Imaging Library
# $Id$
#
2016-09-23 14:12:03 +03:00
# screen grabber (macOS and Windows only)
2010-07-31 06:52:47 +04:00
#
# History:
# 2001-04-26 fl created
# 2001-09-17 fl use builtin driver, if present
# 2002-11-19 fl added grabclipboard support
#
# Copyright (c) 2001-2002 by Secret Labs AB
# Copyright (c) 2001-2002 by Fredrik Lundh
#
# See the README file for information on usage and redistribution.
#
import os
import subprocess
import sys
import tempfile
2019-06-11 11:42:05 +03:00
from . import Image
if sys.platform not in ["win32", "darwin"]:
2019-04-25 09:56:18 +03:00
raise ImportError("ImageGrab is macOS and Windows only")
2010-07-31 06:52:47 +04:00
2019-09-20 18:35:08 +03:00
def grab(bbox=None, include_layered_windows=False, all_screens=False):
if sys.platform == "darwin":
2019-03-21 16:28:20 +03:00
fh, filepath = tempfile.mkstemp(".png")
os.close(fh)
2019-03-21 16:28:20 +03:00
subprocess.call(["screencapture", "-x", filepath])
im = Image.open(filepath)
im.load()
os.unlink(filepath)
if bbox:
2020-02-18 12:49:05 +03:00
im_cropped = im.crop(bbox)
im.close()
return im_cropped
else:
offset, size, data = Image.core.grabscreen(include_layered_windows, all_screens)
im = Image.frombytes(
2019-03-21 16:28:20 +03:00
"RGB",
size,
data,
2016-10-07 12:43:54 +03:00
# RGB, 32-bit line padding, origin lower left corner
2019-03-21 16:28:20 +03:00
"raw",
"BGR",
(size[0] * 3 + 3) & -4,
-1,
)
if bbox:
x0, y0 = offset
left, top, right, bottom = bbox
im = im.crop((left - x0, top - y0, right - x0, bottom - y0))
2010-07-31 06:52:47 +04:00
return im
def grabclipboard():
if sys.platform == "darwin":
2019-03-21 16:28:20 +03:00
fh, filepath = tempfile.mkstemp(".jpg")
os.close(fh)
commands = [
2019-03-21 16:28:20 +03:00
'set theFile to (open for access POSIX file "'
+ filepath
+ '" with write permission)',
"try",
" write (the clipboard as JPEG picture) to theFile",
"end try",
2019-03-21 16:28:20 +03:00
"close access theFile",
]
script = ["osascript"]
for command in commands:
script += ["-e", command]
subprocess.call(script)
im = None
if os.stat(filepath).st_size != 0:
im = Image.open(filepath)
im.load()
os.unlink(filepath)
return im
else:
data = Image.core.grabclipboard()
if isinstance(data, bytes):
from . import BmpImagePlugin
import io
2019-03-21 16:28:20 +03:00
return BmpImagePlugin.DibImageFile(io.BytesIO(data))
return data