Skip to content

Arch Linux Image Editing

Mattscreative edited this page Dec 5, 2025 · 2 revisions

Arch Linux Image Editing Guide

Complete beginner-friendly guide to image editing on Arch Linux, including GIMP, Inkscape, Krita, and image manipulation tools.


Table of Contents

  1. Raster Image Editors
  2. Vector Image Editors
  3. Image Viewers
  4. Image Conversion
  5. Troubleshooting

Raster Image Editors

GIMP

Install GIMP:

# Install GIMP
sudo pacman -S gimp

# Launch
gimp

Krita

Install Krita:

# Install Krita
sudo pacman -S krita

# Launch
krita

Pinta

Install Pinta:

# Install Pinta
sudo pacman -S pinta

# Launch
pinta

Vector Image Editors

Inkscape

Install Inkscape:

# Install Inkscape
sudo pacman -S inkscape

# Launch
inkscape

LibreOffice Draw

Install Draw:

# Install LibreOffice
sudo pacman -S libreoffice-fresh

# Launch Draw
libreoffice --draw

Image Viewers

ImageMagick

Install ImageMagick:

# Install ImageMagick
sudo pacman -S imagemagick

# View image
display image.jpg

# Convert
convert image.jpg image.png

feh

Install feh:

# Install feh
sudo pacman -S feh

# View image
feh image.jpg

# Slideshow
feh -D 2 *.jpg

Image Conversion

Convert Images

Using ImageMagick:

# Convert format
convert image.jpg image.png

# Resize
convert image.jpg -resize 50% resized.jpg

# Rotate
convert image.jpg -rotate 90 rotated.jpg

Using FFmpeg

Convert with FFmpeg:

# Install FFmpeg
sudo pacman -S ffmpeg

# Convert
ffmpeg -i input.jpg output.png

Troubleshooting

Image Not Opening

Check format:

# Check file type
file image.jpg

# Install codecs
sudo pacman -S imagemagick

Summary

This guide covered raster/vector editors, image viewers, conversion, and troubleshooting.


Next Steps


This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.

Clone this wiki locally