4

I need often to create Slides from portions of screen. I've found several tools like Shutter which are able to capture an image, however my need is to put the image directly in the Clipboard so that I can paste in in my LibreOffice quickly. Any idea ? Thanks!

Braiam
  • 67,791
  • 32
  • 179
  • 269
  • Why not just use PrtScr, paste that in and crop it there? – TheWanderer Apr 14 '16 at 12:41
  • 1
    cropping needs some variables to be set. How to decide what will stay? – Jacob Vlijm Apr 14 '16 at 12:43
  • But Printscreen stores the image in the Pictures folder. I need to manually open and crop – Francesco Marchioni Apr 14 '16 at 12:45
  • Hi Jacob. I'm looking for a tool which lets you select the cropping area on the screen (like shutter) which however stores in the image directly on the Clipboard. With dozens of images to be grabbed that would help me a lot – Francesco Marchioni Apr 14 '16 at 12:56
  • 3
    The default shift+prnscr shortcut allows selecting an area to grab and then popup appears which has option to copy to clipboard. That's twostep process but works. Let me know if that's an acceptable answer for you – Sergiy Kolodyazhnyy Apr 14 '16 at 12:59
  • @serg, that's awesome! I wish I knew this before. – Shahbaz Apr 14 '16 at 13:51
  • By the way, the normal PrtSc pop up as well as shift+PrtSc both have a "Copy to Clipboard" option (on 14.04 at least). – Shahbaz Apr 14 '16 at 13:52
  • @Serg depends the windows/desktop manager. ie. xfce doesn't. It would be helpful if OP says which DE he's using. – Braiam Apr 14 '16 at 14:32
  • @Braiam Typically users specify if they use different DE ; if not - assume Unity. That's my default protocol and I've never had issue with it so far – Sergiy Kolodyazhnyy Apr 14 '16 at 14:54

4 Answers4

9

Press Shift + Prt Scr.

Then you will be able to select a portion of a screen.

After that you will be able to choose either to copy it to clipboard or save as a file.

Pilot6
  • 90,100
  • 91
  • 213
  • 324
7

Use gnome-screenshot (already on your system if you use Unity or Gnome)

The easiest is to use good old gnome-screenshot, by default installed. Simply put the command:

gnome-screenshot -ac

under a shortcut key. The cursor will change into a cross, and your selection is copied to the clipboard directly.

Add it to a shortcut

Choose: System Settings > "Keyboard" > "Shortcuts" > "Custom Shortcuts". Click the "+" and add the command:

gnome-screenshot -ac

Explanation

From man screenshot:

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

and:

   -c, --clipboard
          Send the grab directly to the clipboard.
Jacob Vlijm
  • 83,767
1

Install shutter. Once installed, run it; you can snap a selection of screen directly (1) (and copy and paste immediatly with CTRL-C CTRL-V), or edit it (2) and add markers, labels, highlights and crops:

shutter's own screenshot

It has extensive configuration and can reside in your panel (3).

It's in the Universe repository, so it's just a

sudo apt-get install shutter 

away.

Rmano
  • 31,947
0

Ctrl + Shift + Print Screen is working for me.

Without any additional installations.

Michael D
  • 211