I am looking for a simple screenshot annotation tool with the following features:
- Crop
- Resize
- Blur
- Draw shapes and lines
- Add text
I am looking for a simple screenshot annotation tool with the following features:
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:
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...