image-manipulator

Automate image rotation, resizing, cropping, and format conversion with ImageMagick.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/smorand/claude-config --skill image-manipulator
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: image-manipulator
Source: https://github.com/smorand/claude-config/tree/main/skills/image-manipulator
Command: npx skills add https://github.com/smorand/claude-config --skill image-manipulator

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill enables rotation, resizing, cropping, format conversion, filters, watermarks, and batch processing of images using ImageMagick.

Core Features & Use Cases

  • Rotation, resizing, cropping, format conversion
  • Filters and effects (blur, grayscale, etc.)
  • Watermarks, overlays, and batch processing
  • EXIF metadata read/edit

Quick Start

Example: rotate an image: magick input.jpg -rotate 90 output.jpg

Frequently Asked Questions about image-manipulator

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

FAQPage Schema
How do I resize and batch process multiple images with ImageMagick?

Batch resize images using ImageMagick's command-line tools with wildcard syntax or loops. ImageMagick supports resize operations across JPG, PNG, WEBP, GIF, and PDF formats while preserving aspect ratios and applying quality settings to all files in one workflow.

Can I rotate, crop, and convert images to different formats at once?

Yes, ImageMagick combines rotation, cropping, and format conversion in a single command. Chain operations like magick input.jpg -rotate 90 -crop 100x100 output.png to transform and export across multiple formats simultaneously.

Does ImageMagick support adding watermarks and editing metadata?

ImageMagick handles watermarks via overlays and composite operations, plus EXIF and metadata read/edit functionality. Apply watermarks during batch processing while preserving or modifying image metadata across supported formats.

What image formats does ImageMagick support for automation?

ImageMagick processes JPG, PNG, WEBP, GIF, and PDF formats. Use magick commands to convert, filter, and manipulate any of these formats with full support for compression, quality settings, and advanced transformations.

Can I apply filters and effects like blur or grayscale to images automatically?

ImageMagick applies filters and effects including blur and grayscale through command-line operations. Integrate these effects into batch workflows to transform multiple images with consistent settings and quality control.

Do I need special knowledge to use ImageMagick's magick command syntax?

ImageMagick 7's magick command uses straightforward syntax for common tasks. Basic operations like rotation and resizing require minimal setup; advanced features like metadata handling and aspect-ratio preservation are built-in without additional configuration.