mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 14:42:00 +00:00
22 lines
644 B
Plaintext
22 lines
644 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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}}`
|