2024-02-06 16:41:26 +01:00
|
|
|
# pgmtoppm
|
|
|
|
|
|
|
|
> Colorize a PGM image.
|
|
|
|
> More information: <https://netpbm.sourceforge.net/doc/pgmtoppm.html>.
|
|
|
|
|
|
|
|
- Map all greyscale values of the input image to all colors between the two specified colors:
|
|
|
|
|
2025-04-01 06:42:14 +03:00
|
|
|
`pgmtoppm {{[-b|-black]}} {{red}} {{[-w|-white]}} {{blue}} {{path/to/input.pgm}} > {{path/to/output.ppm}}`
|
2024-02-06 16:41:26 +01:00
|
|
|
|
|
|
|
- Map all greyscale values of the input image to colors according to the specified colormap:
|
|
|
|
|
2025-04-01 06:42:14 +03:00
|
|
|
`pgmtoppm {{[-m|-map]}} {{path/to/colormap.ppm}} {{path/to/input.pgm}} > {{path/to/output.ppm}}`
|