Last active
December 12, 2015 15:59
-
-
Save dkam/4793655 to your computer and use it in GitHub Desktop.
Image quality
This file contains hidden or 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
| # Smallest images: | |
| dkam@Nervous-Energy ~/booko (master) $ find public/images/covers/* -type f -print0 | xargs -0 du -s | sort -n | head -10 | cut -f2 | xargs -I{} du -sh {} | awk '{ print $2 }' | xargs identify -verbose | grep Quality | |
| Quality: 85 | |
| Quality: 85 | |
| Quality: 79 | |
| Quality: 85 | |
| Quality: 77 | |
| Quality: 70 | |
| Quality: 85 | |
| Quality: 85 | |
| Quality: 85 | |
| Quality: 85 | |
| # Largest images: | |
| dkam@Nervous-Energy ~/booko (master) $ find public/images/covers/* -type f -print0 | xargs -0 du -s | sort -n | tail -10 | cut -f2 | xargs -I{} du -sh {} | awk '{ print $2 }' | xargs identify -verbose | grep Quality | |
| Quality: 99 | |
| Quality: 99 | |
| Quality: 99 | |
| Quality: 99 | |
| Quality: 99 | |
| Quality: 99 | |
| Quality: 99 | |
| Quality: 99 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment