Snipping tool in Ubuntu
For quite some time, I’ve been looking for a tool some kind of a “portion-of-a-desktop-screen-grabber” rather than just the print-screen-then-edit-using-Gimp here in Ubuntu. In Windows Vista or Windows 7, there is a built-in snipping tool which is used to grab a specific portion of a screen selected by the user. Well here in Ubuntu, there is also a snipping tool! You just need to fire up your favorite command line and just type in this command:
kenan@kenan-laptop:~$ import filename [dot] whatever_image_format
An example would be kenan@kenan-laptop:~$ import image.png
It must turn your cursor to a cross, or a plus sign. Now, you’re ready to grab and save any portion of your screen just press and drag. :)
If ever there is an error that the command is not found, you should install the ImageMagick package.
kenan@kenan-laptop:~ sudo apt-get update
kenan@kenan-laptop:~ sudo apt-get install imagemagick
import – saves any visible window on an X server and outputs it as an image file. You can capture a single window, the entire screen, or any rectangular portion of the screen.
There are a lot of options available in this command. You can just read its manual pages.
I would just like to share this page, What’s the Difference Between JPG, PNG, and GIF?. It’s fun and cool to read that article, very informative for me, who doesn’t know anything. :P

