1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-09 18:55:53 +02:00

pgmramp: fix typo (#17316)

This commit is contained in:
Managor 2025-07-22 19:38:27 +03:00 committed by GitHub
parent beb5805540
commit 6772c73d8d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,20 +5,20 @@
- Generate a left-to-right greyscale map:
`pgmtexture -lr > {{path/to/output.pgm}}`
`pgmramp -lr > {{path/to/output.pgm}}`
- Generate a top-to-bottom greyscale map:
`pgmtexture -tb > {{path/to/output.pgm}}`
`pgmramp -tb > {{path/to/output.pgm}}`
- Generate a rectangular greyscale map:
`pgmtexture -rectangle > {{path/to/output.pgm}}`
`pgmramp -rectangle > {{path/to/output.pgm}}`
- Generate a elliptical greyscale map:
`pgmtexture -ellipse {{path/to/image.pgm}} > {{path/to/output.pgm}}`
`pgmramp -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}}`
`pgmramp -diagonal {{path/to/image.pgm}} > {{path/to/output.pgm}}`