From 43da64b365abdc0a267808b562d373be465bbc81 Mon Sep 17 00:00:00 2001 From: Juri Dispan Date: Fri, 15 Dec 2023 19:08:07 +0100 Subject: [PATCH] pnmshear: add page (#11758) --- pages/common/pnmshear.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/common/pnmshear.md diff --git a/pages/common/pnmshear.md b/pages/common/pnmshear.md new file mode 100644 index 000000000..8cd96428a --- /dev/null +++ b/pages/common/pnmshear.md @@ -0,0 +1,16 @@ +# pnmshear + +> Shear a PNM image. +> More information: . + +- 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}}`