pamcomp, pnmcomp, pnmconvol, pnmcrop, pnmgamma: add pages (#12197)

* pamcomp, pnmcomp, pnmconvol, pnmcrop, pnmgamma: add pages

* Update pages/common/pnmgamma.md

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Juri Dispan
2024-02-06 16:12:53 +01:00
committed by GitHub
parent 14ea45723b
commit a47af264de
5 changed files with 88 additions and 0 deletions

20
pages/common/pnmcrop.md Normal file
View File

@@ -0,0 +1,20 @@
# pnmcrop
> Crop PNM images.
> More information: <https://netpbm.sourceforge.net/doc/pnmcrop.html>.
- Remove white borders on a PNM image:
`pnmcrop -white {{path/to/image.pnm}} > {{path/to/output.pnm}}`
- Remove borders of the specified color that are on the top and left side of the image:
`pnmcrop -bg-color {{color}} -top -left {{path/to/image.pnm}} > {{path/to/output.pnm}}`
- Determine the color of the borders to be removed by the color of the pixel in the specified corner:
`pnmcrop -bg-corner {{topleft|topright|bottomleft|bottomright}} {{path/to/image.pnm}} > {{path/to/output.pnm}}`
- Leave a border with a width of `n` pixels. Additionally, specify the behaviour if the image is entirely made out of background:
`pnmcrop -margins {{n}} -blank-image {{pass|minimize|maxcrop}} {{path/to/image.pnm}} > {{path/to/output.pnm}}`