GIMP is most popular open-source and cross platform application for image manipulation. It’s used to optimize images, convert the types of images and much more. GIMP is available for Linux, Windows, macOS, and FreeBSD etc. This tutorial will show you how to install the latest Gimp on Ubuntu 20.04.
Prerequisites
You must logged in as root or user account with sudo privileges.
Step 1 – Update Package Index
First of all update the package index by running below command:
sudo apt update
Step 2 – Installing GIMP
By default, the Ubuntu standard repository includes the gimp
package on Ubuntu 20.04. So we will install it using the apt package manager. You would simply execute the below command to install:
sudo apt install gimp
Step 3 – Start GIMP Application
At this stage, GIMP application is installed on your Ubuntu system. You can start it by the clicking on Activities and search gimp
keyword and click on GIMP icon. If you are familiar with command line than you can start it by typing gimp
on your terminal.
It will show like at initially:
Upgrade GIMP
You can upgrade GIMP package whenever the new update is available, run the following command.
sudo apt-get install --only-upgrade
Uninstall GIMP
If you would like to uninstall the GIMP application you can do it easily. Use the below command to remove the GIMP application and all dependencies from your system.
sudo apt-get purge gimp gimp-plugin-registry
At last, you can run the below command to remove any unused files and free up disk space.
sudo apt-get autoremove
GIMP Features
Following the few important features of GIMP:
- File Formats
- SVG path import/export
- Load, display, convert, save to many file formats
- File formats supported include bmp, gif, jpeg, mng, pcx, pdf, png, ps, psd, svg, tiff, tga, xpm, and many others
- Animation
- Load and save animations in a convenient frame-as-layer format
- Photo enhancement, digital retouching, and customizable Interface.
- Advanced Manipulation
- Layers and channels
- Multiple Undo/Redo
- Fully alpha channel support
- Transformation tools including rotate, scale, shear and flip
- Selection tools including rectangle, rounded rectangle, ellipse, free, fuzzy
- Extensible
- Advanced scripting capabilities (Scheme, Python, Perl).
- More Than 100 plugins already available.
- Hardware Support
Conclusion
You have learned how to install the GIMP application on the Ubuntu 20.04 system. To know more about GIMP 2.1 visit release note.
If you have any questions or feedback, please leave a comment below.