Skip to content

Instantly share code, notes, and snippets.

@deltheil
Last active September 29, 2015 05:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deltheil/1555692 to your computer and use it in GitHub Desktop.
Save deltheil/1555692 to your computer and use it in GitHub Desktop.
Print out the width x height of a given image via ImageMagick identify
# ImageMagick `identify` format features is handy
# e.g. to obtain the width x height of a given image (360x480)
#
# See http://www.imagemagick.org/script/escape.php
# for a complete list of supported format characters
identify -format "%wx%h" myimage.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment