1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:22:08 +02:00
tldr/pages/common/ppmdither.md
Juri Dispan 0638b8d95d
pamdepth, ppmdither, pamditherbw, pnmdepth: add pages (#11379)
* pamdepth, pamdither, pamditherbw: add pages

* pnmdepth: add alias page
2023-11-06 14:02:33 +05:30

547 B

ppmdither

Reduce the number of colors in an image by applying dithering. More information: https://netpbm.sourceforge.net/doc/ppmdither.html.

  • Read a PPM image, apply dithering and save it to a file:

ppmdither {{path/to/image.ppm}} > {{path/to/file.ppm}}

  • Specify the desired number of shades for each primary color:

ppmdither -red {{2}} -green {{3}} -blue {{2}} {{path/to/image.ppm}} > {{path/to/file.ppm}}

  • Specify the dimensions of the dithering matrix:

ppmdither -dim {{2}} {{path/to/image.ppm}} > {{path/to/file.ppm}}