The Computer Oracle

How to take screenshot of menu?

--------------------------------------------------
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Thinking It Over

--

Chapters
00:00 How To Take Screenshot Of Menu?
00:15 Accepted Answer Score 23
00:53 Answer 2 Score 1
01:18 Answer 3 Score 3
02:27 Thank you

--

Full question
https://superuser.com/questions/337097/h...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#linux

#avk47



ACCEPTED ANSWER

Score 23


You have the option to capture the entire screen or the active window.

Entire screen

Install a tool for making screenshots, such as scrot, gnome-screenshot or ImageMagick, which provides import. Then run it with a delay from terminal, using one of these commands:

$ sleep 5; import -window root menu.png

$ scrot -cd 5 menu.png

$ gnome-screenshot -d 5

After running it, quickly open the menu and wait.

Active window

Both gnome-screenshot and scrot support taking a screenshot of the active window:

$ gnome-screenshot -wd 5

$ scrot -ucd 5 menu.png

Note that overlapping menus won't be compensated for but rather cut off: enter image description here




ANSWER 2

Score 3


Capturing menus in open applications is what Shutter screenshot tool is designed to do (in Shutter's preferences, you can set it to take a screenshot after a few seconds, during which you can open the menu). Shutter can capture menus in their parent windows in any application, overlays, etc. as well as being able to capture everything that other screenshot tools can capture including entire screen, active window, selected area and webpage. Shutter is available in the repositories of most popular Linux distributions. In Debian-based distributions Shutter can be installed with this command:

sudo apt-get install shutter  

The shutter .deb has been discontinued in Ubuntu 20.04. It is still available as a snap package and can be installed by running sudo snap install shutter, but Shutter's grab a screenshot of the current window plus one of its menus feature no longer works in the Shutter snap package. Fortunately the default "Screenshot" app in Ubuntu 20.04 has the capability of taking screenshots of menus that Shutter used to have in Ubuntu 18.04. To capture a screenshot of a window together with one of its menus, take a full screen screenshot and then crop it down from a full screen screenshot to a single window in an image editor. The Screenshot app can also grab a screenshot of the current window of a GTK app plus one of its menus.




ANSWER 3

Score 1


Click on the menu that you would like to take a screenshot.

Then click "Print Screen" button (or the Fn+Print Screen) on the keyboard. Depending upon the version of linux open Tuxpaint (I assume using Debian), and paste the image.

This will actually save the entire screen. You may crop the extra areas now and save it in desired format.

This is one of the simplest ways that I use for snapshots...