mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
14 lines
417 B
Plaintext
14 lines
417 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# ppmtoeyuv
|
|
|
|
> Convert a PPM image to an Berkeley YUV file.
|
|
> More information: <https://netpbm.sourceforge.net/doc/ppmtoeyuv.html>.
|
|
|
|
- Read a PPM image from the input file, convert it to a Berkeley YUV image, and store it in the specified output file:
|
|
|
|
`ppmtoeyuv {{path/to/input_file.ppm}} > {{path/to/output_file.eyuv}}`
|