1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/pnmshear.md

17 lines
485 B
Markdown
Raw Normal View History

2023-12-15 19:08:07 +01:00
# 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 -background {{blue}} {{angle}} {{path/to/input.pnm}} > {{path/to/output.pnm}}`
- Do not perform anti-aliasing:
`pnmshear -noantialias {{angle}} {{path/to/input.pnm}} > {{path/to/output.pnm}}`