System Grab Bag

View all TLDR pages from common (or from all pages)

identify

Command-line utility of Image Magick project to describe the format and characteristics of one or more image files. More information: https://imagemagick.org/script/identify.php.
  • Describe the format and basic characteristics of an image:
    identify {{path/to/image}}
  • Describe the format and verbose characteristics of an image:
    identify -verbose {{path/to/image}}
  • Collect dimensions of all JPEG files under current directory:
    identify -format "%f,%w,%h\n" *.{{jpg}} > {{path/to/filelist.csv}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.