LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

imgtoppm

converts an Img-whatnot image file to PPM format

TLDR

Convert IMG to PPM
$ imgtoppm [file.img] > [output.ppm]
copy
Convert from stdin
$ cat [file.img] | imgtoppm > [output.ppm]
copy

SYNOPSIS

imgtoppm [imgfile]

DESCRIPTION

imgtoppm converts an Img-whatnot image file to PPM (Portable Pixmap) format. Part of the Netpbm package of graphics manipulation tools. Reads from stdin if no file is specified.

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

SEE ALSO

ppmtogif(1), netpbm(1)

Copied to clipboard
Kai