image-manipulation-image-magick

Resize, convert, and extract metadata from images using ImageMagick.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/lzc0901/vibe_coding_template --skill image-manipulation-image-magick-lzc0901
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: image-manipulation-image-magick
Source: https://github.com/lzc0901/vibe_coding_template/tree/main/skills/design-visualization/image-manipulation-image-magick
Command: npx skills add https://github.com/lzc0901/vibe_coding_template --skill image-manipulation-image-magick-lzc0901

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill automates image processing tasks using ImageMagick to resize, convert formats, and extract or create metadata. It enables consistent image transformations across platforms and reduces manual editing time.

Core Features & Use Cases

  • Image Information: Retrieve dimensions and detailed metadata for individual images.
  • Image Resizing & Thumbnails: Resize single or multiple images and generate thumbnails while preserving aspect ratio.
  • Format Conversion: Convert between formats (e.g., JPG, PNG, WEBP) and perform batch conversions for catalogs or galleries.
  • Use Case: Prepare a folder of product images by resizing to uniform dimensions and exporting web-optimized assets for an online storefront.

Quick Start

To resize a single image: magick input.jpg -resize 800x600 output.jpg To batch process a directory: for img in images/; do magick "$img" -resize 800x600 "converted/${img##/}"; done

Frequently Asked Questions about image-manipulation-image-magick

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

FAQPage Schema
How do I batch resize images and generate thumbnails while preserving aspect ratio?

Batch resize images and generate thumbnails while preserving aspect ratio by executing ImageMagick commands across a directory. This skill automates single-image operations and batch processing for uniform dimensions using magick on PATH.

What is the best way to convert a folder of images to WEBP format for web optimization?

Converting a folder of images to WEBP format for web optimization is handled by this skill's batch format conversion feature. It automates transformations between JPG, PNG, and WEBP for catalogs or galleries.

Do I need ImageMagick installed to resize images and extract metadata on Windows?

Yes, you need ImageMagick installed and available as magick on PATH to resize images and extract metadata. This skill provides cross-platform support across Windows, Linux, and macOS.

Can I retrieve image dimensions and detailed metadata for individual images using ImageMagick?

You can retrieve image dimensions and detailed metadata for individual images using this skill's image information feature. It automates the extraction of metadata using ImageMagick commands.

How do I prepare a folder of product images by resizing to uniform dimensions?

Prepare a folder of product images by applying batch processing to resize to uniform dimensions and exporting web-optimized assets. This skill automates consistent image transformations for online storefronts.

Does this skill support cross-platform batch image processing for bulk conversions?

This skill supports cross-platform batch image processing for bulk conversions across Windows, Linux, and macOS. It provides PowerShell and Bash usage examples for executing batch operations with ImageMagick.