Forrest logo
back to context overview

pngcheck

List of commands for pngcheck:

  • pngcheck:tldr:1d583 pngcheck: Print a summary for an image (width, height, and color depth).
    $ pngcheck ${image-png}
    try on your machine
    explain this command
  • pngcheck:tldr:353a1 pngcheck: [s]earch for PNGs within a specific file and display information about them.
    $ pngcheck -s ${image-png}
    try on your machine
    explain this command
  • pngcheck:tldr:5b897 pngcheck: Receive an image from `stdin` and display detailed information.
    $ cat ${path-to-image-png} | pngcheck -cvt
    try on your machine
    explain this command
  • pngcheck:tldr:68a6c pngcheck: Display contents of [t]ext chunks and [s]earch for PNGs within a specific file.
    $ pngcheck -ts ${filename-png}
    try on your machine
    explain this command
  • pngcheck:tldr:7912e pngcheck: Print information for an image with [c]olorized output.
    $ pngcheck -c ${image-png}
    try on your machine
    explain this command
  • pngcheck:tldr:a6016 pngcheck: Print [v]erbose information for an image.
    $ pngcheck -cvt ${image-png}
    try on your machine
    explain this command
  • pngcheck:tldr:d55b6 pngcheck: Check the file with [v]erbose and [c]olorized output.
    $ pngcheck -vc ${filename-png}
    try on your machine
    explain this command
  • pngcheck:tldr:e11f6 pngcheck: Search for PNGs within another file and e[x]tract them.
    $ pngcheck -x ${image-png}
    try on your machine
    explain this command
back to context overview