mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-02 20:43:10 +00:00
26 lines
688 B
Plaintext
26 lines
688 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# pamslice
|
|
|
|
> Extract one line of values out of a PAM image.
|
|
> More information: <https://netpbm.sourceforge.net/doc/pamslice.html>.
|
|
|
|
- Print the values of the pixels in the n'th row in a table:
|
|
|
|
`pamslice -row {{n}} {{path/to/image.pam}}`
|
|
|
|
- Print the values of the pixels in the n'th column in a table:
|
|
|
|
`pamslice -column {{n}} {{path/to/image.pam}}`
|
|
|
|
- Consider the m'th plane of the input image only:
|
|
|
|
`pamslice -row {{n}} -plane {{m}} {{path/to/image.pam}}`
|
|
|
|
- Produce output in a format suitable for input to an `xmgr` for visualisation:
|
|
|
|
`pamslice -row {{n}} -xmgr {{path/to/image.pam}}`
|