mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 23:42:42 +00:00
19 lines
534 B
Plaintext
19 lines
534 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# pamdeinterlace
|
|
|
|
> Remove every other row in a Netpbm image.
|
|
> See also: `pammixinterlace`.
|
|
> More information: <https://netpbm.sourceforge.net/doc/pamdeinterlace.html>.
|
|
|
|
- Produce an image consisting of the input's even-numbered rows:
|
|
|
|
`pamdeinterlace {{path/to/image.ppm}} > {{path/to/output.ppm}}`
|
|
|
|
- Produce an image consisting of the input's odd-numbered rows:
|
|
|
|
`pamdeinterlace -takeodd {{path/to/image.ppm}} > {{path/to/output.ppm}}`
|