imagemagick

Installation
SKILL.md

ImageMagick Commands

ImageMagick v7 uses magick as the main command. On older systems (v6), use convert, mogrify, identify, montage directly.

Image Info

# Dimensions, format, colorspace, filesize
magick identify image.png
magick identify -verbose image.png

# Just dimensions
magick identify -format "%wx%h" image.png

# Format, dimensions, filesize, colorspace in one line
magick identify -format "Format: %m, Size: %wx%h, Filesize: %b, Colorspace: %[colorspace]\n" image.png

# List all images in a directory
magick identify *.jpg
Related skills

More from 1mangesh1/dev-skills-collection

Installs
1
GitHub Stars
3
First Seen
Apr 14, 2026