ilbmtoppm, pcxtoppm, ppmtoilbm, ppmtoleaf, ppmtomitsu, ppmtompeg, ppmtoneo, ppmtopcx: add pages (#11432)

This commit is contained in:
Juri Dispan
2023-11-10 05:18:42 +01:00
committed by GitHub
parent c2a18714a5
commit 83d378125b
8 changed files with 120 additions and 0 deletions

20
pages/common/ppmtoilbm.md Normal file
View File

@@ -0,0 +1,20 @@
# ppmtoilbm
> Convert a PPM image to an ILBM file.
> More information: <https://netpbm.sourceforge.net/doc/ppmtoilbm.html>.
- Convert a PPM image to an ILBM file:
`ppmtoilbm {{path/to/file.ppm}} > {{path/to/file.ilbm}}`
- Write a maximum of n planes to the ILBM file and produce a HAM/24bit/direct color file if this number is exceeded:
`ppmtoilbm -maxplanes {{n}} -{{hamif|24if|dcif}} {{path/to/file.ppm}} > {{path/to/file.ilbm}}`
- Produce a ILBM file with exactly n planes:
`ppmtoilbm -fixplanes {{n}} {{path/to/file.ppm}} > {{path/to/file.ilbm}}`
- Select the compression method to be used:
`ppmtoilbm -{{compress|nocompress|savemem}} {{path/to/file.ppm}} > {{path/to/file.ilbm}}`