LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

hipstopgm

converts a HIPS image file to PGM format

TLDR

Convert HIPS file to PGM
$ hipstopgm [file.hip] > [output.pgm]
copy
Convert from stdin
$ cat [file.hip] | hipstopgm > [output.pgm]
copy

SYNOPSIS

hipstopgm [hipsfile]

DESCRIPTION

hipstopgm converts a HIPS (Human Information Processing Laboratory, NYU) image file to PGM (Portable Graymap) format. Part of the Netpbm package of graphics manipulation tools. If the HIPS file contains multiple frames, they are concatenated vertically in the output. The tool has no command-specific options beyond standard Netpbm options.

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

pgm(1), pgmtoppm(1), ppmtogif(1), netpbm(1)

Copied to clipboard
Kai