asd
This commit is contained in:
30
venv/lib/python3.12/site-packages/pyscreenshot/cli/grab.py
Normal file
30
venv/lib/python3.12/site-packages/pyscreenshot/cli/grab.py
Normal file
@ -0,0 +1,30 @@
|
||||
from entrypoint2 import entrypoint
|
||||
|
||||
import pyscreenshot
|
||||
from pyscreenshot.imcodec import codec
|
||||
|
||||
|
||||
@entrypoint
|
||||
def main(filename="", bbox="", backend="", show=False):
|
||||
"""Copy the contents of the screen to file.
|
||||
|
||||
:param filename: output file
|
||||
:param show: show image
|
||||
:param bbox: bounding box coordinates x1:y1:x2:y2
|
||||
:param backend: back-end can be forced if set (example:scrot, wx,..),
|
||||
otherwise back-end is automatic
|
||||
"""
|
||||
backend = backend if backend else None
|
||||
if bbox:
|
||||
x1, y1, x2, y2 = map(int, bbox.split(":"))
|
||||
bbox = x1, y1, x2, y2
|
||||
else:
|
||||
bbox = None
|
||||
|
||||
im = pyscreenshot.grab(bbox=bbox, childprocess=False, backend=backend)
|
||||
if filename:
|
||||
b = codec[0](im)
|
||||
with open(filename, "wb") as f:
|
||||
f.write(b)
|
||||
if show:
|
||||
im.show()
|
||||
Reference in New Issue
Block a user