1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/pcxtoppm.md

472 B

pcxtoppm

Convert a PCX file to a PPM image. More information: https://netpbm.sourceforge.net/doc/pcxtoppm.html.

  • Convert a PCX file to a PPM image:

pcxtoppm {{path/to/file.pcx}} > {{path/to/file.ppm}}

  • Use a predefined standard palette even if the PCX file provides one:

pcxtoppm -stdpalette {{path/to/file.pcx}} > {{path/to/file.ppm}}

  • Print information on the PCX header to stdout:

pcxtoppm -verbose {{path/to/file.pcx}} > {{path/to/file.ppm}}