mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 05:42:09 +02:00
pamtoxvmini, pbmtoybm, pnmtoxwd, xvminitoppm, xwdtopnm, ybmtopbm: add pages (#11406)
This commit is contained in:
parent
acb9cf419a
commit
7b88278d15
6 changed files with 64 additions and 0 deletions
8
pages/common/pamtoxvmini.md
Normal file
8
pages/common/pamtoxvmini.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# pamtoxvmini
|
||||
|
||||
> Convert a Netpbm image to an XV thumbnail picture.
|
||||
> More information: <https://netpbm.sourceforge.net/doc/pamtoxvmini.html>.
|
||||
|
||||
- Convert a PAM image to an XV thumbnail picture:
|
||||
|
||||
`pamtoxvmini {{path/to/input_file.pam}} > {{path/to/output_file}}`
|
8
pages/common/pbmtoybm.md
Normal file
8
pages/common/pbmtoybm.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# pbmtoybm
|
||||
|
||||
> Convert a PBM file to a Bennet Yee "face" file.
|
||||
> More information: <https://netpbm.sourceforge.net/doc/pbmtoybm.html>.
|
||||
|
||||
- Convert a PBM image file to YBM:
|
||||
|
||||
`pbmtoybm {{path/to/input_file.pbm}} > {{path/to/output_file.ybm}}`
|
16
pages/common/pnmtoxwd.md
Normal file
16
pages/common/pnmtoxwd.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# pnmtoxwd
|
||||
|
||||
> Convert a PNM file into an X11 window dump file.
|
||||
> More information: <https://netpbm.sourceforge.net/doc/pnmtoxwd.html>.
|
||||
|
||||
- Convert a PNM image file to XWD:
|
||||
|
||||
`pnmtoxwd {{path/to/input_file.pnm}} > {{path/to/output_file.xwd}}`
|
||||
|
||||
- Produce the output in the DirectColor format:
|
||||
|
||||
`pnmtoxwd -directcolor {{path/to/input_file.pnm}} > {{path/to/output_file.xwd}}`
|
||||
|
||||
- Set the color depth of the output to b bits:
|
||||
|
||||
`pnmtoxwd -pseudodepth {{b}} {{path/to/input_file.pnm}} > {{path/to/output_file.xwd}}`
|
8
pages/common/xvminitoppm.md
Normal file
8
pages/common/xvminitoppm.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# xvminitoppm
|
||||
|
||||
> Convert an XV thumbnail picture to PPM.
|
||||
> More information: <https://netpbm.sourceforge.net/doc/xvminitoppm.html>.
|
||||
|
||||
- Convert an XV thumbnail image file to PPM:
|
||||
|
||||
`xvminitoppm {{path/to/input_file}} > {{path/to/output_file.ppm}}`
|
16
pages/common/xwdtopnm.md
Normal file
16
pages/common/xwdtopnm.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# xwdtopnm
|
||||
|
||||
> Convert an X11 or X10 window dump file to PNM.
|
||||
> More information: <https://netpbm.sourceforge.net/doc/xwdtopnm.html>.
|
||||
|
||||
- Convert a XWD image file to PBM:
|
||||
|
||||
`xwdtopnm {{path/to/input_file.xwd}} > {{path/to/output_file.pnm}}`
|
||||
|
||||
- Display information about the conversion process:
|
||||
|
||||
`xwdtopnm -verbose {{path/to/input_file.xwd}} > {{path/to/output_file.pnm}}`
|
||||
|
||||
- Display the contents of the X11 header of the input file:
|
||||
|
||||
`xwdtopnm -headerdump {{path/to/input_file.xwd}} > {{path/to/output_file.pnm}}`
|
8
pages/common/ybmtopbm.md
Normal file
8
pages/common/ybmtopbm.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# ybmtopbm
|
||||
|
||||
> Convert a Bennet Yee "face" file to PBM.
|
||||
> More information: <https://netpbm.sourceforge.net/doc/ybmtopbm.html>.
|
||||
|
||||
- Convert a YBM image file to PBM:
|
||||
|
||||
`ybmtopbm {{path/to/input_file.ybm}} > {{path/to/output_file.pbm}}`
|
Loading…
Add table
Reference in a new issue