ppmtoterm, ppmtoascii, pbmto4425: add pages; pbmtoascii: edit page (#12426)

pull/23/head
Juri Dispan 2024-03-02 17:28:40 +01:00 committed by GitHub
parent 509dcea0d3
commit 50d5c647b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# pbmto4425
> Display a PBM image on an AT&T 4425 terminal.
> See also: `ppmtoterm`, `pbmtoascii`.
> More information: <https://netpbm.sourceforge.net/doc/pbmto4425.html>.
- Display a PBM image on an AT&T 4425 terminal using the terminal's mosaic graphics character set:
`pbmto4425 {{path/to/image.pbm}}`

View File

@ -1,6 +1,7 @@
# pbmtoascii
> Convert a PBM image to ASCII graphics.
> See also: `ppmtoascii`, `asciitopgm`, `ppmtoterm`.
> More information: <https://netpbm.sourceforge.net/doc/pbmtoascii.html>.
- Read a PBM file as input and produce an ASCII output:

View File

@ -0,0 +1,13 @@
# ppmtoascii
> Convert a PPM image to an ASCII image using ANSI terminal color codes.
> See also: `ppmtoterm`, `pbmtoascii`, `pbmto4425`.
> More information: <https://netpbm.sourceforge.net/doc/ppmtoascii.html>.
- Convert a PPM image to an ASCII image, combining an area of 1x2 pixels into a character:
`ppmtoascii {{path/to/input.ppm}} > {{path/to/output.txt}}`
- Convert a PPM image to an ASCII image, combining an area of 2x4 pixels into a character:
`ppmtoascii -2x4 {{path/to/input.ppm}} > {{path/to/output.txt}}`

View File

@ -0,0 +1,9 @@
# ppmtoterm
> Convert a PPM image to an ANSI ISO 6429 ASCII image.
> See also: `ppmtoascii`, `pbmtoascii`, `pbmto4425`.
> More information: <https://netpbm.sourceforge.net/doc/ppmtoterm.html>.
- Convert a PPM image to an ANSI ISO 6429 ASCII image, mapping each pixel to an individual character:
`ppmtoterm {{path/to/input.ppm}} > {{path/to/output.txt}}`