picttoppm, pnmtops, ppmtopict, ppmtopuzz, ppmtosixel, psidtopgm, pstopnm, qrttoppm: add pages (#11413)

This commit is contained in:
Juri Dispan
2023-11-09 10:30:02 +01:00
committed by GitHub
parent e099ecd04e
commit 22f009639f
8 changed files with 100 additions and 0 deletions

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

@@ -0,0 +1,16 @@
# pnmtops
> Convert a PNM image to a PostScript file.
> More information: <https://netpbm.sourceforge.net/doc/pnmtops.html>.
- Convert a PNM image to a PS file:
`pnmtops {{path/to/file.pnm}} > {{path/to/file.ps}}`
- Specify the dimensions of the output image in inches:
`pnmtops -imagewidth {{imagewidth}} -imageheight {{imageheight}} {{path/to/file.pnm}} > {{path/to/file.ps}}`
- Specify the dimensions of the page the output image resides on in inches:
`pnmtops -width {{width}} -height {{height}} {{path/to/file.pnm}} > {{path/to/file.ps}}`