Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the simply-static domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/html/wp-includes/functions.php on line 6121
树莓派上实现截屏

树莓派上实现截屏

在树莓派上截屏的方法很简单。首先在终端中用下面的命令安装名叫“scrot”的截屏工具。

sudo apt-get install scrot

截取全屏幕执行:

sudo scrot

用鼠标选区屏幕区域截取执行:

sudo scrot -s

20秒后截取,参数可以自定义:

sudo scrot -d20

执行下面的指令可以查看更多用法:

sudo scrot -h