How to take a screenshot on Raspberry Pi working with Debian Squeeze and LXDE?

Question Noob ...

But the shutter is not installed, the print screen does not work, the screen is not installed, etc.

+6
source share
2 answers

This can be achieved with ImageMagick. Install by running the command

sudo apt-get install imagemagick 

To capture the entire desktop, just type

 import -window root screen.png 

Or you can do it with a delay of 5 seconds

 sleep 5; import -window root screen.png 
+7
source

For a lower weight screenshot tool, use scrot

 sudo apt-get install scrot 

To take a screenshot, simply type

 scrot 

Take a screenshot after, say, 5 seconds

 scrot -d 5 
+5
source

Source: https://habr.com/ru/post/915655/


All Articles