mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 17:22:08 +02:00

* fitstopnm, pamcut, pamdeinterlace, pamdice, pammixinterlace, pamtofits, pamundice, pnmtofits: add pages * Apply suggestions from code review Co-authored-by: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com> * Update pages/common/pamdice.md * Update pages/common/fitstopnm.md Co-authored-by: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com> * Update pages/common/fitstopnm.md Co-authored-by: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com> * Update pages/common/pamundice.md --------- Co-authored-by: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com>
17 lines
759 B
Markdown
17 lines
759 B
Markdown
# pamcut
|
|
|
|
> Cut out a rectangular region from a Netpbm image.
|
|
> See also: `pamcrop`, `pamdice`, `pamcomp`.
|
|
> More information: <https://netpbm.sourceforge.net/doc/pamcut.html>.
|
|
|
|
- Discard the specified number of columns/rows on each side of the image:
|
|
|
|
`pamcut -cropleft {{value}} -cropright {{value}} -croptop {{value}} -cropbottom {{value}} {{path/to/image.ppm}} > {{path/to/output.ppm}}`
|
|
|
|
- Keep only the columns between the specified columns (inclusively):
|
|
|
|
`pamcut -left {{value}} -right {{value}} {{path/to/image.ppm}} > {{path/to/output.ppm}}`
|
|
|
|
- Fill missing areas with black pixels if the specified rectangle does not entirely lie within the input image:
|
|
|
|
`pamcut -top {{value}} -bottom {{value}} -pad {{path/to/image.ppm}} > {{path/to/output.ppm}}`
|