pnmshear: add page (#11758)

pull/23/head
Juri Dispan 2023-12-15 19:08:07 +01:00 committed by GitHub
parent 948c5232c8
commit 43da64b365
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

16
pages/common/pnmshear.md Normal file
View File

@ -0,0 +1,16 @@
# 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}}`