processing-images

Installation
SKILL.md

Image Processing Tools

This container has a rich image processing toolkit. Before writing any image code, scan this inventory to pick the best tool for the job — don't default to Pillow for everything.

Tool Selection by Task

Format Conversion & Batch Operations

ImageMagick convert is the default choice. Handles 260+ formats, single command, no code needed.

convert input.png output.webp
convert input.png -quality 85 output.jpg
mogrify -format webp *.png          # batch in-place

For animated formats (GIF↔WebP↔APNG, video↔frames), prefer ffmpeg.

Resize, Crop, Thumbnails

ImageMagick for CLI one-liners. Pillow when already in Python pipeline.

convert input.jpg -resize 800x600 output.jpg          # fit within box
Related skills

More from oaustegard/claude-skills

Installs
7
GitHub Stars
120
First Seen
Mar 29, 2026