image-manipulation-image-magick
Process and manipulate images using ImageMagick. Supports resizing, format conversion, batch processing, and retrieving image metadata. Use when working with images, creating thumbnails, resizing wallpapers, or performing batch image operations.
npx skills add github/awesome-copilot --skill image-manipulation-image-magick --agent copilot
Same command for any agent — swap --agent for claude-code, codex, cursor.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Image Manipulation with ImageMagick This skill enables image processing and manipulation tasks using ImageMagick across Windows, Linux, and macOS systems. ## When to Use This Skill Use this skill when you need to: - Resize images (single or batch) - Get image dimensions and metadata - Convert between image formats - Create thumbnails - Process wallpapers for different screen sizes - Batch process multiple images with specific criteria ## Prerequisites - ImageMagick installed on the system - **Windows**: PowerShell with ImageMagick available as `magick` (or at `C:\Program Files\ImageMagick-*\magick.exe`) - **Linux/macOS**: Bash with ImageMagick installed via package manager (`apt`, `brew`, etc.) ## Core Capabilities ### 1. Image Information - Get image dimensions (width x height) - Retrieve detailed metadata (format, color space, etc.) - Identify image format ### 2. Image Resizing - Resize single images - Batch resize multiple images - Create thumbnails with specific dimensions - Maintain aspect ratios ### 3. Batch Processing - Process images based on dimensions - Filter and process specific file types - Apply transformations to multiple files ## Usage Examples ### Example 0: Reso
- When to Use This Skill
- Prerequisites
- Core Capabilities
- 1. Image Information
- 2. Image Resizing
- 3. Batch Processing
- Usage Examples
- Example 0: Resolve magick executable
- Example 1: Get Image Dimensions
- Example 2: Resize Images
- Example 3: Get Detailed Image Information
- Example 4: Process Images Based on Dimensions
- Guidelines
- Common Patterns
Check if magick is available on PATH if ! command -v magick &> /dev/null; then echo "ImageMagick not found. Install it using your package manager:" echo " Ubuntu/Debian: sudo apt install imagemagick" echo " macOS: brew install imagemagick" exit 1 fi For a single image magick identify -format "%wx%h" path/to/image.jpg For multiple images
What does the image-manipulation-image-magick skill do?
Process and manipulate images using ImageMagick. Supports resizing, format conversion, batch processing, and retrieving image metadata. Use when working with images, creating thumbnails, resizing wallpapers, or performing batch image operations.
How do I install it?
Run `npx skills add github/awesome-copilot --skill image-manipulation-image-magick --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From github/awesome-copilot, a repository with 37,432 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.