diff --git a/pages/common/pamtoxvmini.md b/pages/common/pamtoxvmini.md new file mode 100644 index 0000000000..c94cf8d7c6 --- /dev/null +++ b/pages/common/pamtoxvmini.md @@ -0,0 +1,8 @@ +# pamtoxvmini + +> Convert a Netpbm image to an XV thumbnail picture. +> More information: . + +- Convert a PAM image to an XV thumbnail picture: + +`pamtoxvmini {{path/to/input_file.pam}} > {{path/to/output_file}}` diff --git a/pages/common/pbmtoybm.md b/pages/common/pbmtoybm.md new file mode 100644 index 0000000000..b6f08bf234 --- /dev/null +++ b/pages/common/pbmtoybm.md @@ -0,0 +1,8 @@ +# pbmtoybm + +> Convert a PBM file to a Bennet Yee "face" file. +> More information: . + +- Convert a PBM image file to YBM: + +`pbmtoybm {{path/to/input_file.pbm}} > {{path/to/output_file.ybm}}` diff --git a/pages/common/pnmtoxwd.md b/pages/common/pnmtoxwd.md new file mode 100644 index 0000000000..d3608126dc --- /dev/null +++ b/pages/common/pnmtoxwd.md @@ -0,0 +1,16 @@ +# pnmtoxwd + +> Convert a PNM file into an X11 window dump file. +> More information: . + +- 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}}` diff --git a/pages/common/xvminitoppm.md b/pages/common/xvminitoppm.md new file mode 100644 index 0000000000..17fd98c521 --- /dev/null +++ b/pages/common/xvminitoppm.md @@ -0,0 +1,8 @@ +# xvminitoppm + +> Convert an XV thumbnail picture to PPM. +> More information: . + +- Convert an XV thumbnail image file to PPM: + +`xvminitoppm {{path/to/input_file}} > {{path/to/output_file.ppm}}` diff --git a/pages/common/xwdtopnm.md b/pages/common/xwdtopnm.md new file mode 100644 index 0000000000..a6d81f2965 --- /dev/null +++ b/pages/common/xwdtopnm.md @@ -0,0 +1,16 @@ +# xwdtopnm + +> Convert an X11 or X10 window dump file to PNM. +> More information: . + +- 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}}` diff --git a/pages/common/ybmtopbm.md b/pages/common/ybmtopbm.md new file mode 100644 index 0000000000..7d3231ae85 --- /dev/null +++ b/pages/common/ybmtopbm.md @@ -0,0 +1,8 @@ +# ybmtopbm + +> Convert a Bennet Yee "face" file to PBM. +> More information: . + +- Convert a YBM image file to PBM: + +`ybmtopbm {{path/to/input_file.ybm}} > {{path/to/output_file.pbm}}`