tldr/pages/common/pngcheck.md

29 lines
760 B
Markdown
Raw Normal View History

2021-02-28 20:11:59 +03:00
# pngcheck
> Print detailed information about and verify PNG, JNG, and MNG files.
> More information: <http://www.libpng.org/pub/png/apps/pngcheck.html>.
- Print a summary for an image (width, height, and color depth):
`pngcheck {{path/to/image.png}}`
2021-02-28 20:11:59 +03:00
- Print information for an image with [c]olorized output:
`pngcheck -c {{path/to/image.png}}`
2021-02-28 20:11:59 +03:00
- Print [v]erbose information for an image:
`pngcheck -cvt {{path/to/image.png}}`
2021-02-28 20:11:59 +03:00
- Receive an image from `stdin` and display detailed information:
2021-02-28 20:11:59 +03:00
`cat {{path/to/image.png}} | pngcheck -cvt`
- [s]earch for PNGs within a specific file and display information about them:
`pngcheck -s {{path/to/image.png}}`
2021-02-28 20:11:59 +03:00
- Search for PNGs within another file and e[x]tract them:
`pngcheck -x {{path/to/image.png}}`