3

I am looking for a simple screenshot annotation tool with the following features:

  • Crop
  • Resize
  • Blur
  • Draw shapes and lines
  • Add text
orschiro
  • 13,317
  • 17
  • 87
  • 161

1 Answers1

0

You could do worse than to use the screen capture tool scrot and open the resulting screenshot directly in gimp:

scrot -q 100 -e 'gimp $f'

You can set this particular commandline to a key, I illustrate here mapped to F6:

enter image description here

Or you can simply run it from the commandline with the glorious addition of a timer and delay:

scrot -d 10 -c -q 100 -e 'gimp $f'

The gimp should make short work of your image manipulation needs and there are many other scrot settings which you can tailor to your needs...

andrew.46
  • 38,003
  • 27
  • 156
  • 232