Linux command
magick-identify 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
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]
说明
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.
参数
- -verbose
- Show detailed information.
- -format _string_
- Output format string.
- -quiet
- Suppress warnings.
- -ping
- Only read basic attributes.
FAQ
What is the magick-identify command used for?
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.
How do I run a basic magick-identify example?
Run `magick identify [image.png]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -verbose do in magick-identify?
Show detailed information.