web-dev-qa-db-fra.com

Quelle est la commande Shell pour l'application de capture d'écran dash?

Je sais que dans Ubuntu, je peux utiliser l'application Capture d'écran à l'aide de laquelle je peux prendre une capture d'écran pour la fenêtre sélectionnée. Cela signifie que l'application est déjà sur Ubuntu. Quelle est la commande en ligne de commande pour cette application? (Je sais que gnome-screenshot nous permet de prendre toute la capture d'écran, mais je veux sélectionner une région lors de la prise de vue.)

2
Chan Kim

Afin de prendre une capture d'écran de la fenêtre, utilisez cette commande
gnome-screenshot -w

Afin de saisir une zone, utilisez cette commande
gnome-screenshot -a

enter image description here

enter image description here

voici le lien pour la source http://manpages.ubuntu.com/manpages/bionic/man1/gnome-screenshot.1.html

   -c, --clipboard
          Send the grab directly to the clipboard.

   -w, --window
          Grab the current active window instead of the entire screen.

   -a, --area
          Grab an area of the screen instead of the entire screen.

   -b, --include-border
          Include the window border within the screenshot.

   -B, --remove-border
          Remove the window border from the screenshot.

   -p, --include-pointer
          Include the pointer with the screenshot.

   -d, --delay=SECONDS,
          Take the screenshot after the specified delay [in seconds].

   -e, --border-effect=EFFECT,
          Add an effect to the outside of the screenshot border.  EFFECT  can  be  ``shadow''
          (adding  drop  shadow), ``border'' (adding rectangular space around the screenshot)
          or ``none'' (no effect).  Default is ``none''.

   -i, --interactive
          Interactively set options in a dialog.

   -f, --file=FILENAME
          Save screenshot directly to this file.

   --display=DISPLAY
          X display to use.

   -?, -h, --help
          Show a summary of the available options.
2
PRATAP