Skip to content

Instantly share code, notes, and snippets.

@shsteven
Created September 2, 2020 11:13
Show Gist options
  • Save shsteven/34b871a67d09008e4bc1c7deaeaea0e8 to your computer and use it in GitHub Desktop.
Save shsteven/34b871a67d09008e4bc1c7deaeaea0e8 to your computer and use it in GitHub Desktop.
Dump All Image Dimensions to a Text File
find . -type f -print0 | sort -z | xargs -0 identify -format '%t %w %h\n' > ../images-dimension.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment