Created
January 19, 2021 06:52
-
-
Save samyakb/ebccb99421c4a105af8a1c69b51ace11 to your computer and use it in GitHub Desktop.
Check if an image is progressive or not
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
| for file in ./*.jpg; | |
| do | |
| echo "$file"; | |
| identify -verbose "$file" | grep Interlace; | |
| done |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If output is JPEG then image is progressive