-
-
Notifications
You must be signed in to change notification settings - Fork 2
Arch Linux Image Editing
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to image editing on Arch Linux, including GIMP, Inkscape, Krita, and image manipulation tools.
Install GIMP:
# Install GIMP
sudo pacman -S gimp
# Launch
gimpInstall Krita:
# Install Krita
sudo pacman -S krita
# Launch
kritaInstall Pinta:
# Install Pinta
sudo pacman -S pinta
# Launch
pintaInstall Inkscape:
# Install Inkscape
sudo pacman -S inkscape
# Launch
inkscapeInstall Draw:
# Install LibreOffice
sudo pacman -S libreoffice-fresh
# Launch Draw
libreoffice --drawInstall ImageMagick:
# Install ImageMagick
sudo pacman -S imagemagick
# View image
display image.jpg
# Convert
convert image.jpg image.pngInstall feh:
# Install feh
sudo pacman -S feh
# View image
feh image.jpg
# Slideshow
feh -D 2 *.jpgUsing ImageMagick:
# Convert format
convert image.jpg image.png
# Resize
convert image.jpg -resize 50% resized.jpg
# Rotate
convert image.jpg -rotate 90 rotated.jpgConvert with FFmpeg:
# Install FFmpeg
sudo pacman -S ffmpeg
# Convert
ffmpeg -i input.jpg output.pngCheck format:
# Check file type
file image.jpg
# Install codecs
sudo pacman -S imagemagickThis guide covered raster/vector editors, image viewers, conversion, and troubleshooting.
- Arch Linux Multimedia - Multimedia
- Arch Linux Office Software - Office
- ArchWiki Image Editing: https://wiki.archlinux.org/title/List_of_applications/Multimedia#Image_editing
This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.