image-manipulation-image-magick

Solid

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.

AI & Automation 34,887 stars 4287 forks Updated today MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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: Resolve `magick` executable **PowerShell (Windows):** ```powershell # Prefer ImageMagick on PATH $magick = (Get-Command magick -ErrorAction SilentlyContinue)?.Source # Fallback: common install pattern under Program Files if (-not $magick) { $magick = Get-ChildItem "C:\\Program Files...

Details

Author
github
Repository
github/awesome-copilot
Created
1 years ago
Last Updated
today
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category