Pillow/src/PIL/ImageGrab.py

89 lines
2.2 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 sys
2019-06-11 11:42:05 +03:00
from . import Image
if sys.platform == "win32":
2015-10-24 16:23:24 +03:00
grabber = Image.core.grabscreen
elif sys.platform == "darwin":
import os
import tempfile
import subprocess
2019-04-25 09:56:18 +03:00
else:
raise ImportError("ImageGrab is macOS and Windows only")
2010-07-31 06:52:47 +04:00
def grab(bbox=None, include_layered_windows=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)
else:
size, data = grabber(include_layered_windows)
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,
)
2010-07-31 06:52:47 +04:00
if bbox:
im = im.crop(bbox)
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