GIMP Basics: Complete Beginner's Guide
Everything you need to start editing images in GIMP 3.2.4 - From installation to your first completed project.
What is GIMP?
GIMP (GNU Image Manipulation Program) is a free, open-source raster graphics editor available for Windows, macOS, and Linux. First released in 1995, it has grown into one of the most capable free image editors available - Rivalling commercial tools like Adobe Photoshop for many workflows.
GIMP 3.2.4 is the current stable release, bringing GEGL-based colour management, an improved plugin API, better tablet support, and a refreshed interface. Because it is open-source (GPL licence), it costs nothing to download, use, or share.
GIMP Users by Operating System (2025 survey)
Installing GIMP 3.2.4
Download GIMP from the official project at download.gimp.org - Or use the links on our Download page. Never download GIMP from third-party sites, as bundled installers may contain adware.
- Download the
.exeinstaller (x64 recommended for most users) - Double-click to run - Accept the UAC prompt
- Follow the setup wizard - Accept default install location
- Launch GIMP from the Start menu
- Choose ARM64 (Apple Silicon M1/M2/M3/M4) or x86_64 (Intel)
- Mount the
.dmgand drag GIMP to Applications - First launch: right-click → Open to bypass Gatekeeper
- If blocked: System Settings → Privacy & Security → Open Anyway
- Download the AppImage for the easiest setup
- Mark executable:
chmod +x GIMP-3.2.4*.AppImage - Run:
./GIMP-3.2.4*.AppImage - Or via Flatpak:
flatpak install flathub org.gimp.GIMP
The GIMP Interface
GIMP's interface consists of several key areas. Understanding each one is the first step to efficient editing.
| Panel / Area | Location | Purpose |
|---|---|---|
| Toolbox | Left sidebar | Select the active tool - Paint, select, transform, etc. |
| Tool Options | Below toolbox | Settings for the currently selected tool |
| Canvas | Centre | The image you are editing |
| Layers panel | Right side | Manage layers - Create, delete, reorder, set opacity |
| Channels panel | Right side | View and edit individual colour channels (R, G, B, Alpha) |
| Paths panel | Right side | Manage vector paths for precise selections and shapes |
| History panel | Right side | Undo history - Click any step to revert |
| Menu bar | Top | All GIMP commands: File, Edit, Image, Layer, Filters… |
| Status bar | Bottom | Zoom level, cursor position, active layer name |
The Toolbox - Every Tool Explained
GIMP has over 40 tools organised into groups. Here are the most important ones for beginners - See the full toolbox guide for shortcuts and advanced options.
Most-Used Tool Keyboard Shortcuts
Understanding Layers
Layers are the single most important concept in GIMP. Think of them as transparent sheets stacked on top of each other - Each layer can contain different content, and you can edit any layer independently without affecting others.
Key Layer Operations
- Create new layer: Layer menu → New Layer, or click + in Layers panel
- Duplicate layer: Layer → Duplicate Layer (Shift+Ctrl+D)
- Delete layer: Click the trash icon in the Layers panel
- Reorder layers: Drag layers up/down in the Layers panel
- Change opacity: Use the Opacity slider at the top of the Layers panel
- Flatten image: Image → Flatten Image - Merges all layers
- Merge down: Layer → Merge Down - Combines with the layer below
Why Use Layers?
Non-destructive editing: Changes to one layer never damage another.
Easy experimentation: Try effects on a duplicate layer and discard if you don't like them.
Complex compositing: Combine multiple photos, text, and graphics in one file.
Organisation: Name layers clearly and use groups for complex projects.
Common Blend Modes Reference
| Mode | Effect | Best Used For |
|---|---|---|
| Normal | Default - Shows layer at set opacity | Everything; full control via opacity |
| Multiply | Darkens by multiplying pixel values | Shadows, tinting, darkening photos |
| Screen | Lightens by inverting and multiplying | Highlights, glows, lightening |
| Overlay | Increases contrast - Darks get darker, lights get lighter | Adding contrast and vibrance |
| Soft Light | Subtle contrast and saturation boost | Gentle colour grading |
| Hard Light | Strong contrast, like Overlay but punchier | Dramatic lighting effects |
| Dodge | Brightens the layers below | Highlight enhancement |
| Burn | Darkens the layers below | Shadow deepening |
Opening & Saving Files
GIMP distinguishes between saving (to its native .xcf format, which preserves all layers and editing history) and exporting (to a web-compatible format like PNG, JPG, or WebP).
Save = .xcf Only
Use File → Save (Ctrl+S) to save your working file in GIMP's .xcf format. This preserves all layers, paths, channels, and undo history. Always save an .xcf if you plan to continue editing.
Export = PNG / JPG / WebP
Use File → Export As (Shift+Ctrl+E) to save to a web or print format. Export flattens the image. You can export multiple times without losing your layered .xcf.
File Format Comparison
| Format | Transparency | Compression | Best For |
|---|---|---|---|
| .xcf | Full alpha | None (lossless) | Working file - Preserves all layers |
| PNG | Full alpha | Lossless | Web graphics, logos, icons, screenshots |
| JPG | None | Lossy | Photos, large images where file size matters |
| WebP | Full alpha | Lossy or lossless | Web images - Best size/quality balance |
| GIF | 1-bit (on/off) | Lossless (256 colours) | Simple animations, flat-colour images |
| TIFF | Full alpha | Lossless | Print, archiving, professional workflows |
| BMP | None | None | Legacy Windows applications |
File Size Comparison at Equal Quality
Your First Edit: Crop, Adjust, Export
Let's walk through a complete beginner workflow: open a photo, crop it, improve the colours, and export it as a PNG.
-
1Open your imageFile → Open (Ctrl+O). Navigate to your photo. GIMP creates a new image window with the photo as a background layer.
-
2Zoom to fitPress Shift+Ctrl+E (or View → Zoom → Fit Image in Window) to see the whole image.
-
3Crop the imageSelect the Crop tool (Shift+C). Drag a rectangle over the area you want to keep. Press Enter to confirm the crop.
-
4Adjust brightness/contrastGo to Colors → Brightness-Contrast. Drag the sliders to improve the image. Click OK.
-
5Improve coloursGo to Colors → Hue-Saturation. Increase Saturation by +15 to +25 for more vivid colours. Click OK.
-
6Save your work fileFile → Save As (Shift+Ctrl+S) - Save as .xcf so you can re-edit later.
-
7Export the final imageFile → Export As (Shift+Ctrl+E) - Choose PNG or JPG. Click Export, then Export again to confirm.