mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 21:42:41 +00:00
18 lines
381 B
Plaintext
18 lines
381 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# jpegtopnm
|
|
|
|
> Convert a JPEG/JFIF file to the PPM or PGM format.
|
|
> More information: <https://netpbm.sourceforge.net/doc/jpegtopnm.html>.
|
|
|
|
- Convert JPEG/JFIF image to a PPM or PGM image:
|
|
|
|
`jpegtopnm {{path/to/file.jpg}} > {{path/to/file.pnm}}`
|
|
|
|
- Display version:
|
|
|
|
`jpegtopnm -version`
|