magick-identify

displays information about image files

TLDR

Show image information
$ magick identify [image.png]
Show verbose information
$ magick identify -verbose [image.png]
Show specific property
$ magick identify -format "%wx%h" [image.png]
Show all images in directory
$ magick identify [*.jpg]

SYNOPSIS

magick identify [options] image...

DESCRIPTION

magick identify displays information about image files. Part of ImageMagick. Shows format, dimensions, color space, file size, and other metadata. Supports format strings for custom output.

PARAMETERS

-verbose

Show detailed information.
-format string
Output format string.
-quiet
Suppress warnings.
-ping
Only read basic attributes.

INSTALL

sudo pacman -S imagemagick
sudo apk add imagemagick
brew install imagemagick
nix profile install nixpkgs#imagemagick

SEE ALSO

magick(1), file(1)