LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

wbmptopbm

Convert Wireless Bitmap to PBM format

TLDR

Convert WBMP to PBM
$ wbmptopbm [input.wbmp] > [output.pbm]
copy

SYNOPSIS

wbmptopbm [file]

DESCRIPTION

wbmptopbm converts WBMP (Wireless Bitmap) format images to PBM (Portable Bitmap) format. WBMP is a monochrome bitmap format that was used in WAP (Wireless Application Protocol) mobile web pages. Part of the Netpbm toolkit.The output is written to stdout.

PARAMETERS

file

Input WBMP file (reads from stdin if omitted)

INSTALL

sudo apt install netpbm
copy
sudo dnf install netpbm
copy
sudo pacman -S netpbm
copy
sudo apk add netpbm
copy
sudo zypper install netpbm
copy
brew install netpbm
copy
nix profile install nixpkgs#netpbm
copy

CAVEATS

WBMP only supports monochrome (1-bit) images, so the output PBM is always black and white.

SEE ALSO

pbmtowbmp(1), netpbm(1)

Copied to clipboard
Kai