pbmnoise, pgmhist, pgmkernel, pgmnoise, pgmramp, pgmtexture: add pages; ppmhist: modify page (#12202)

This commit is contained in:
Juri Dispan
2024-02-06 15:15:34 +01:00
committed by GitHub
parent 0d32539122
commit 5bdf79a65d
7 changed files with 109 additions and 2 deletions

24
pages/common/pgmramp.md Normal file
View File

@@ -0,0 +1,24 @@
# pgmramp
> Generate a greyscale map.
> More information: <https://netpbm.sourceforge.net/doc/pgmramp.html>.
- Generate a left-to-right greyscale map:
`pgmtexture -lr > {{path/to/output.pgm}}`
- Generate a top-to-bottom greyscale map:
`pgmtexture -tb > {{path/to/output.pgm}}`
- Generate a rectangular greyscale map:
`pgmtexture -rectangle > {{path/to/output.pgm}}`
- Generate a elliptical greyscale map:
`pgmtexture -ellipse {{path/to/image.pgm}} > {{path/to/output.pgm}}`
- Generate a greyscale map from the top-left corner to the bottom-right corner:
`pgmtexture -diagonal {{path/to/image.pgm}} > {{path/to/output.pgm}}`