eyuvtoppm, ppmtoeyuv, ppmtoyuv, ppmtoyufsplitm, yuvsplittoppm, yuvtoppm: add pages (#11380)

pull/23/head
Juri Dispan 2023-11-04 15:15:25 +01:00 committed by K.B.Dharun Krishna
parent 6bfbb2136f
commit 96a6099652
No known key found for this signature in database
GPG Key ID: 1B8ECA406788AFA4
6 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,8 @@
# eyuvtoppm
> Convert a Berkeley YUV file to PPM.
> More information: <https://netpbm.sourceforge.net/doc/eyuvtoppm.html>.
- Read a Berkeley YUV file from the specified input file, convert it to a PPM image and store it in the specified output file:
`eyuvtoppm --width {{width}} --height {{height}} {{path/to/input_file.eyuv}} > {{path/to/output_file.ppm}}`

View File

@ -0,0 +1,8 @@
# 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}}`

8
pages/common/ppmtoyuv.md Normal file
View File

@ -0,0 +1,8 @@
# ppmtoyuv
> Convert a PPM image to an Abekas YUV file.
> More information: <https://netpbm.sourceforge.net/doc/ppmtoyuv.html>.
- Read a PPM image from the input file, convert it to an Abekas YUV image and store it in the specified output file:
`ppmtoyuv {{path/to/input_file.ppm}} > {{path/to/output_file.yuv}}`

View File

@ -0,0 +1,8 @@
# ppmtoyuvsplit
> Convert a PPM image to three subsampled Abekas YUV files.
> More information: <https://netpbm.sourceforge.net/doc/ppmtoyuvsplit.html>.
- Read a PPM image from the input file, convert it to three subsampled Abekas YUV image and store these images to output files starting with the specified basename:
`ppmtoyuvsplit {{basename}} {{path/to/input_file.ppm}}`

View File

@ -0,0 +1,8 @@
# yuvsplittoppm
> Convert three subsampled Abekas YUV files to one PPM image.
> More information: <https://netpbm.sourceforge.net/doc/yuvsplittoppm.html>.
- Read Akebas YUV bytes from three files starting with basename, merge them into a single PPM image and store it in the specified output file:
`yuvsplittoppm {{basename}} {{width}} {{height}} > {{path/to/output_file.ppm}}`

8
pages/common/yuvtoppm.md Normal file
View File

@ -0,0 +1,8 @@
# yuvtoppm
> Convert Abekas YUV bytes to PPM.
> More information: <https://netpbm.sourceforge.net/doc/yuvtoppm.html>.
- Read Akebas YUV bytes from the specified input file, convert them to a PPM image and store them in the specified output file:
`yuvtoppm {{width}} {{height}} {{path/to/input_file.yuv}} > {{path/to/output_file.ppm}}`