Created
September 2, 2020 11:13
-
-
Save shsteven/34b871a67d09008e4bc1c7deaeaea0e8 to your computer and use it in GitHub Desktop.
Dump All Image Dimensions to a Text File
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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