Options (5)
-wbooleanRemove white borders on a PNM image
Example:
pnmcrop {{[-w|-white]}} {{path/to/image.pnm}} > {{path/to/output.pnm}}-tbooleanRemove borders of the specified color that are on the top and left side of the image
Example:
pnmcrop -bg-color {{color}} {{[-t|-top]}} {{[-l|-left]}} {{path/to/image.pnm}} > {{path/to/output.pnm}}-lbooleanRemove borders of the specified color that are on the top and left side of the image
Example:
pnmcrop -bg-color {{color}} {{[-t|-top]}} {{[-l|-left]}} {{path/to/image.pnm}} > {{path/to/output.pnm}}-mbooleanLeave a border with a width of `n` pixels. Additionally, specify the behavior if the image is entirely made out of background
Example:
pnmcrop {{[-m|-margin]}} {{n}} {{[-blan|-blank-image]}} {{pass|minimize|maxcrop}} {{path/to/image.pnm}} > {{path/to/output.pnm}}booleanLeave a border with a width of `n` pixels. Additionally, specify the behavior if the image is entirely made out of background
Example:
pnmcrop {{[-m|-margin]}} {{n}} {{[-blan|-blank-image]}} {{pass|minimize|maxcrop}} {{path/to/image.pnm}} > {{path/to/output.pnm}}Examples (4)
Remove white borders on a PNM image
pnmcrop [-w|-white] path/to/image.pnm > path/to/output.pnmRemove borders of the specified color that are on the top and left side of the image
pnmcrop -bg-color color [-t|-top] [-l|-left] path/to/image.pnm > path/to/output.pnmDetermine 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.pnmmade by @shridhargupta | data from tldr-pages