Files
cheatsheet-tldr/tldr/pgmramp
2025-07-23 00:21:53 +00:00

30 lines
713 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# pgmramp
> Generate a greyscale map.
> More information: <https://netpbm.sourceforge.net/doc/pgmramp.html>.
- Generate a left-to-right greyscale map:
`pgmramp -lr > {{path/to/output.pgm}}`
- Generate a top-to-bottom greyscale map:
`pgmramp -tb > {{path/to/output.pgm}}`
- Generate a rectangular greyscale map:
`pgmramp -rectangle > {{path/to/output.pgm}}`
- Generate a elliptical greyscale map:
`pgmramp -ellipse {{path/to/image.pgm}} > {{path/to/output.pgm}}`
- Generate a greyscale map from the top-left corner to the bottom-right corner:
`pgmramp -diagonal {{path/to/image.pgm}} > {{path/to/output.pgm}}`