mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-04 03:43:39 +00:00
22 lines
596 B
Plaintext
22 lines
596 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# pnmshear
|
|
|
|
> Shear a PNM image.
|
|
> More information: <https://netpbm.sourceforge.net/doc/pnmshear.html>.
|
|
|
|
- Shear a PNM image by the specified angle:
|
|
|
|
`pnmshear {{angle}} {{path/to/input.pnm}} > {{path/to/output.pnm}}`
|
|
|
|
- Specify the color of the background in the sheared image:
|
|
|
|
`pnmshear {{[-b|-background]}} {{blue}} {{angle}} {{path/to/input.pnm}} > {{path/to/output.pnm}}`
|
|
|
|
- Do not perform anti-aliasing:
|
|
|
|
`pnmshear {{[-n|-noantialias]}} {{angle}} {{path/to/input.pnm}} > {{path/to/output.pnm}}`
|