diff --git a/pages/common/macptopbm.md b/pages/common/macptopbm.md index d0b7869b51..7f699aa925 100644 --- a/pages/common/macptopbm.md +++ b/pages/common/macptopbm.md @@ -1,19 +1,20 @@ # macptopbm > Read a MacPaint file as input and produce a PBM image as output. +> See also: `pbmtomacp`. > More information: . - Convert a MacPaint file into a PGM image: -`macptopbm {{path/to/file.mac}}` +`macptopbm {{path/to/file.macp}} > {{path/to/output.pbm}}` - Skip over a specified number of bytes when reading the file: -`macptopbm -extraskip {{N}}` +`macptopbm -extraskip {{N}} > {{path/to/output.pbm}}` - Suppress all informational messages: -`macptopbm -quiet` +`macptopbm -quiet > {{path/to/output.pbm}}` - Display version: diff --git a/pages/common/mdatopbm.md b/pages/common/mdatopbm.md new file mode 100644 index 0000000000..ec571ee6df --- /dev/null +++ b/pages/common/mdatopbm.md @@ -0,0 +1,17 @@ +# mdatopbm + +> Convert a Microdesign MDA file to a PBM image. +> See also: `pbmtomda`. +> More information: . + +- Convert a MDA file to a PBM image: + +`mdatopbm {{path/to/image.mda}} > {{path/to/output.pbm}}` + +- Invert the colors in the input image: + +`mdatopbm -i {{path/to/image.mda}} > {{path/to/output.pbm}}` + +- Double the input image's height: + +`mdatopbm -d {{path/to/image.mda}} > {{path/to/output.pbm}}` diff --git a/pages/common/mgrtopbm.md b/pages/common/mgrtopbm.md new file mode 100644 index 0000000000..c234867b55 --- /dev/null +++ b/pages/common/mgrtopbm.md @@ -0,0 +1,9 @@ +# mgrtopbm + +> Convert a MGR bitmap into a PBM file. +> See also: `pbmtomgr`. +> More information: . + +- Convert a MGR bitmap into a PBM file: + +`mgrtopbm {{path/to/image.mgr}} > {{path/to/output.pbm}}` diff --git a/pages/common/pbmtomacp.md b/pages/common/pbmtomacp.md new file mode 100644 index 0000000000..a590a32704 --- /dev/null +++ b/pages/common/pbmtomacp.md @@ -0,0 +1,13 @@ +# pbmtomacp + +> Convert a PBM image to a MacPaint file. +> See also: `macptopbm`. +> More information: . + +- Convert a PBM image to a MACP file: + +`pbmtomacp {{path/to/image.pbm}} > {{path/to/output.macp}}` + +- Do not compress the output file: + +`pbmtomacp -norle {{path/to/image.pbm}} > {{path/to/output.macp}}` diff --git a/pages/common/pbmtomda.md b/pages/common/pbmtomda.md new file mode 100644 index 0000000000..e743c16b44 --- /dev/null +++ b/pages/common/pbmtomda.md @@ -0,0 +1,17 @@ +# pbmtomda + +> Convert a PBM image to a Microdesign MDA file. +> See also: `mdatopbm`. +> More information: . + +- Convert a PBM image to a MDA file: + +`pbmtomda {{path/to/image.pbm}} > {{path/to/output.mda}}` + +- Invert the colors in the input image: + +`pbmtomda -i {{path/to/image.pbm}} > {{path/to/output.mda}}` + +- Halve the input image's height: + +`pbmtomda -d {{path/to/image.pbm}} > {{path/to/output.mda}}` diff --git a/pages/common/pbmtomgr.md b/pages/common/pbmtomgr.md new file mode 100644 index 0000000000..1cceb07acd --- /dev/null +++ b/pages/common/pbmtomgr.md @@ -0,0 +1,9 @@ +# pbmtomgr + +> Convert a PBM image into a MGR bitmap. +> See also: `mgrtopbm`. +> More information: . + +- Convert a PBM image into a MGR bitmap: + +`pbmtomgr {{path/to/image.pbm}} > {{path/to/output.mgr}}` diff --git a/pages/common/pbmtonokia.md b/pages/common/pbmtonokia.md new file mode 100644 index 0000000000..addac7d1a9 --- /dev/null +++ b/pages/common/pbmtonokia.md @@ -0,0 +1,28 @@ +# pbmtonokia + +> Convert a PBM image to one of Nokia's Smart Messaging Formats . +> More information: . + +- Convert a PBM image into a Nokia Operator Logo as hexcode: + +`pbmtonokia -fmt NEX_NOL -net {{network_operator_code}} {{path/to/image.pbm}} > {{path/to/output.hex}}` + +- Convert a PBM image into a Nokia Group Graphic as hexcode: + +`pbmtonokia -fmt NEX_NGG {{path/to/image.pbm}} > {{path/to/output.hex}}` + +- Convert a PBM image into a Nokia Picture Message with the specified text as hexcode: + +`pbmtonokia -fmt NEX_NPM -txt {{text_message}} {{path/to/image.pbm}} > {{path/to/output.hex}}` + +- Convert a PBM image into a Nokia Operator Logo as a NOL file: + +`pbmtonokia -fmt NOL {{path/to/image.pbm}} > {{path/to/output.nol}}` + +- Convert a PBM image into a Nokia Group Graphic as an NGG file: + +`pbmtonokia -fmt NGG {{path/to/image.pbm}} > {{path/to/output.ngg}}` + +- Convert a PBM image into a Nokia Picture Message as an NPM file: + +`pbmtonokia -fmt NPM {{path/to/image.pbm}} > {{path/to/output.npm}}` diff --git a/pages/common/pbmtoxbm.md b/pages/common/pbmtoxbm.md index 4e9c620367..43bf3018db 100644 --- a/pages/common/pbmtoxbm.md +++ b/pages/common/pbmtoxbm.md @@ -3,7 +3,7 @@ > Convert a PBM image to a X11 or X10 bitmap. > More information: . -- Convert a PPM image to a X11 XBM file: +- Convert a PBM image to a X11 XBM file: `pbmtoxbm {{path/to/input_file.pbm}} > {{path/to/output_file.xbm}}`