1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/pbmtoxbm.md

13 lines
395 B
Markdown
Raw Normal View History

# pbmtoxbm
> Convert a PBM image to a X11 or X10 bitmap.
> More information: <https://netpbm.sourceforge.net/doc/pbmtoxbm.html>.
- Convert a PPM image to a X11 XBM file:
`pbmtoxbm {{path/to/input_file.pbm}} > {{path/to/output_file.xbm}}`
- Explicitly specify whether an X11 or X10 bitmap should be generated:
`pbmtoxbm -{{x11|x10}} {{path/to/input_file.pbm}} > {{path/to/output_file.xbm}}`