LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

sirtopnm

Convert Solitaire image recorder files to PNM format

TLDR

Convert a Solitaire image to PNM
$ sirtopnm [input.sir] > [output.pnm]
copy
Convert and pipe to a PNG encoder
$ sirtopnm [input.sir] | pnmtopng > [output.png]
copy

SYNOPSIS

sirtopnm [sirfile]

DESCRIPTION

sirtopnm reads a Solitaire Image Recorder file (`.sir`) as input and produces a PNM (Portable Any Map) image as output on standard output. The Solitaire Image Recorder was a high-resolution film recorder used for producing slides and transparencies from digital images.If no input file is specified, sirtopnm reads from standard input. The output format (PBM, PGM, or PPM) depends on the content of the input image.This tool is part of the Netpbm toolkit, a collection of image manipulation utilities for converting between various image formats.

PARAMETERS

sirfile

Path to the Solitaire Image Recorder file to convert. Reads from standard input 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

SEE ALSO

Copied to clipboard
Kai