LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

fstopgm

Usenix FaceSaver to PGM converter

TLDR

Convert Usenix FaceSaver to PGM
$ fstopgm < [input.fs] > [output.pgm]
copy

SYNOPSIS

fstopgm [input]

DESCRIPTION

fstopgm converts Usenix FaceSaver format images to PGM (Portable Graymap) format. The Usenix FaceSaver was an early format used for storing grayscale face images in online directory systems. This tool is part of the Netpbm image processing toolkit, which provides utilities for converting between numerous graphics formats.The conversion reads from standard input and writes to standard output, making it suitable for pipeline operations with other Netpbm tools.

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

The Usenix FaceSaver format is obsolete and rarely encountered today. This tool is part of the Netpbm suite and may not be included in all Netpbm distributions. Input must be in valid FaceSaver format or the conversion will fail.

SEE ALSO

pgmtofs(1), netpbm(1)

Copied to clipboard
Kai