2010-07-31 06:52:47 +04:00
|
|
|
#
|
|
|
|
# The Python Imaging Library
|
|
|
|
# $Id$
|
|
|
|
#
|
2015-10-26 11:33:02 +03:00
|
|
|
# screen grabber (OS X 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.
|
|
|
|
#
|
|
|
|
|
2013-03-07 20:20:28 +04:00
|
|
|
from PIL import Image
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2014-09-16 17:05:22 +04:00
|
|
|
import sys
|
2015-08-01 10:44:13 +03:00
|
|
|
if sys.platform not in ["win32", "darwin"]:
|
|
|
|
raise ImportError("ImageGrab is OS X and Windows only")
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2015-08-01 10:44:13 +03:00
|
|
|
if sys.platform == "win32":
|
2015-10-24 16:23:24 +03:00
|
|
|
grabber = Image.core.grabscreen
|
2015-08-01 10:44:13 +03:00
|
|
|
elif sys.platform == "darwin":
|
|
|
|
import os
|
|
|
|
import tempfile
|
|
|
|
import subprocess
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
|
|
|
|
def grab(bbox=None):
|
2015-08-01 10:44:13 +03:00
|
|
|
if sys.platform == "darwin":
|
2016-04-19 10:39:59 +03:00
|
|
|
fh, filepath = tempfile.mkstemp('.png')
|
|
|
|
os.close(fh)
|
|
|
|
subprocess.call(['screencapture', '-x', filepath])
|
|
|
|
im = Image.open(filepath)
|
2015-08-01 10:44:13 +03:00
|
|
|
im.load()
|
2016-04-19 10:39:59 +03:00
|
|
|
os.unlink(filepath)
|
2015-08-01 10:44:13 +03:00
|
|
|
else:
|
|
|
|
size, data = grabber()
|
|
|
|
im = Image.frombytes(
|
|
|
|
"RGB", size, data,
|
|
|
|
# RGB, 32-bit line padding, origo in lower left corner
|
|
|
|
"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():
|
2015-08-01 10:44:13 +03:00
|
|
|
if sys.platform == "darwin":
|
2016-04-19 10:39:59 +03:00
|
|
|
fh, filepath = tempfile.mkstemp('.jpg')
|
|
|
|
os.close(fh)
|
2016-04-18 14:40:52 +03:00
|
|
|
commands = [
|
2016-04-19 10:39:59 +03:00
|
|
|
"set theFile to (open for access POSIX file \""+filepath+"\" with write permission)",
|
2016-04-18 14:40:52 +03:00
|
|
|
"try",
|
|
|
|
"write (the clipboard as JPEG picture) to theFile",
|
|
|
|
"end try",
|
|
|
|
"close access theFile"
|
|
|
|
]
|
|
|
|
script = ["osascript"]
|
|
|
|
for command in commands:
|
|
|
|
script += ["-e", command]
|
|
|
|
subprocess.call(script)
|
|
|
|
|
|
|
|
im = None
|
2016-04-19 10:39:59 +03:00
|
|
|
if os.stat(filepath).st_size != 0:
|
|
|
|
im = Image.open(filepath)
|
2016-04-18 14:40:52 +03:00
|
|
|
im.load()
|
2016-04-19 10:39:59 +03:00
|
|
|
os.unlink(filepath)
|
2016-04-18 14:40:52 +03:00
|
|
|
return im
|
|
|
|
else:
|
|
|
|
debug = 0 # temporary interface
|
|
|
|
data = Image.core.grabclipboard(debug)
|
|
|
|
if isinstance(data, bytes):
|
|
|
|
from PIL import BmpImagePlugin
|
|
|
|
import io
|
|
|
|
return BmpImagePlugin.DibImageFile(io.BytesIO(data))
|
|
|
|
return data
|