• Home
  • pcDuino
  • WiKi
  • Store
  • Distributors
  • Home
  • pcDuino
  • WiKi
  • Store
  • Distributors
HomepcDuinoLinux ApplicationsHow to take a screenshot from the command line on ...
Previous Next

How to take a screenshot from the command line on pcDuino Ubuntu

Posted by: Yang , June 16, 2014

There are various flavors of Linux screenshot utilities, including desktop-specific screenshot programs (e.g., KSnapshot for KDE, gnome-screenshot for GNOME, Screenshooter for Xfce), or general screenshot utilities (e.g., Shutter). One of unique screenshot utilities is Scrot (short for “SCReen shOT”), which is a command-line screenshot utility. While its interface is minimalistic, Scrot is, feature-wise, as powerful as other dedicated GUI-based screen capture tools. For example, Scrot supports delayed screenshot, adjustable quality/size, command line pipelining, etc. If you are one of those command line junkies, Scrot is a useful tool to add to your arsenal. In this tutorial, I will describe how to take a screenshot from the command line with Scrot.

Install Scrot on pcDuino Ubuntu

To install Scrot on pcDuino Ubuntu

$ sudo apt-get install scrot

Take Screenshots with Scrot

In the rest of the tutorial, I will describe how to use Scrot to take screenshots in various ways.

1. Take a screenshot of the entire desktop

Screen-capturing the entire desktop is easy. Simply run Scrot command without any argument, and it will save a screenshot of the entire desktop as a (date-stamped) .png file in the current directory.

$ scrot

You can also specify a destination folder and image file name.

$ scrot  my_desktop.png

2. Take a screenshot of a particular window or a rectangular region

Scrot allows you to choose a specific window or define a rectangular region in your desktop to take a screenshot of. For that, use the following command.

$ scrot -s

After running this command, go ahead and click on any window or draw a rectangle with your mouse, which will trigger screen capture of the selected window/region.

Sometimes the chosen region or window may be partially blocked by other windows of the desktop. In that case, you need some time to clear the area before taking a shot. That is when “delayed” screenshot can help you, as described next.

3. Take a delayed screenshot

Delayed capture can be useful under various circumstances. Right before taking a shot, you may want to move windows around, activate a menu, or trigger a certain event (e.g., notification), etc. With “-d N” option, we can delay a screenshot process by N seconds.

$ scrot -s -d 5

4. Adjust quality of a screenshot

You can adjust the image quality of a screenshot in the range of 1 to 100 (the higher the better quality). Default quality is 75.

$ scrot -q 50

5. Adjust the size of a screenshot

You can adjust the size of a screenshot in the range of 1 to 100 (the higher the bigger). To reduce screenshot size to 10% of the original:

$ scrot -t 10

6. Pipeline a captured screenshot to another command

Scrot allows you to send a saved screenshot image to any arbitrary command as an input. This option can be useful when you want to do any post-processing on a screenshot image. The filename/path of a screenshot is stored as “$f” string.

$ scrot -e 'mv $f ~/screenshot'

Tags: Linux Applications, Uncategorized

Share!
Tweet

Yang

About the author

Leave a Reply Cancel reply

You must be logged in to post a comment.

Category

  • Home
  • pcDuino
  • WiKi
  • Store
  • Distributors