矩形屏幕区域几何形状
项目描述
python-xrectsel
矩形屏幕区域几何形状
该项目基于xrectsel。它是Python的变种,具有一些增强功能。
安装
pip install python-xrectsel
用法
❯ xrectsel --help
Usage: xrectsel [OPTIONS]
Options:
-f, --format TEXT Format output string with fallowing options:
%x - start x-coordinate
%y - start y-coordinate
%X - start
%Y - end
%w - width
%h - height
Note: default output is in "%wx%h+%x+%y"
format.
-ci, --cursor-icon [crosshair|cross|pencil|dotbox]
Select cursor icon
-cf, --cursor-foreground <INTEGER INTEGER INTEGER>...
Select cursor foreground color
-cb, --cursor-background <INTEGER INTEGER INTEGER>...
Select cursor background color
-h, --help Show this message and exit.
- 我们只需使用
xrectsel
命令即可收集所选区域几何形状。默认格式为%wx%h+%x+%y
$ xrectsel
$ # select rectangle on sreen
901x634+44+7 #(x-coordinate, y-coordinate, width, height)
- 我们可以格式化输出几何字符串
$ xrectsel -f "--x=%x --y=%y --width=%w --height=%h"
--x=264 --y=387 --width=1204 --height=519