imagemagick

Automate image processing tasks using ImageMagick command-line tools.

1|Updated Dec 19, 2025
One-click install
npx skills add https://github.com/evolv3-ai/vibe-skills --skill imagemagick
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: imagemagick
Source: https://github.com/evolv3-ai/vibe-skills/tree/main/skills/imagemagick
Command: npx skills add https://github.com/evolv3-ai/vibe-skills --skill imagemagick

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

A practical guide to using ImageMagick commands to convert, resize, crop, and apply effects to images in shell scripts.

Core Features & Use Cases

  • Format conversion, resizing, cropping, and applying visual effects.
  • Batch processing and montage composition for image sets.
  • Clear command examples for common transformations.

Quick Start

Use the magick tool to convert an image or apply a simple resize, e.g., convert.png to convert.jpg or resize to 800x600.

Frequently Asked Questions about imagemagick

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I resize and convert images using ImageMagick commands?

ImageMagick's convert or magick command resizes and converts images across formats in a single operation. Use geometry syntax like `magick convert input.png -resize 800x600 output.jpg` to scale and change format simultaneously, applicable to web and print workflows.

Can I batch process multiple images with ImageMagick?

Yes, batch processing automates operations on image sets using shell loops or ImageMagick's mogrify command. Iterate over files to apply resizing, cropping, or effects to entire directories, reducing manual per-image work in web and print pipelines.

What's the difference between the magick and convert commands in ImageMagick?

Magick is the ImageMagick v7+ unified interface replacing the legacy convert command. Both perform identical transformations—format conversion, resizing, cropping, effects—but magick represents the current standard with improved syntax and performance.

How do I crop and apply effects to images from the command line?

ImageMagick's command-line syntax chains operations using geometry specifications and effect parameters. Use `-crop` for region extraction and effect flags like `-blur` or `-rotate` in operation order: `magick input.png -crop 200x200+0+0 -blur 0x2 output.png`.

Does ImageMagick work on macOS, Linux, and Windows?

ImageMagick installs and runs across macOS, Linux, and Windows platforms. The magick and convert commands execute identically across supported systems, making shell scripts portable for image processing across operating environments.

Can I create image montages or composite multiple images together?

Yes, ImageMagick's montage command and composite operations combine multiple images into single output files. Arrange thumbnails, apply backgrounds, or layer images—useful for galleries, proofs, and multi-format output in design workflows.