LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

qoitopam

Convert QOI images to PAM format

TLDR

Convert a QOI file to PAM
$ qoitopam [input.qoi] > [output.pam]
copy
Convert from stdin
$ qoitopam < [input.qoi] > [output.pam]
copy
Convert and pipe to another Netpbm tool
$ qoitopam [input.qoi] | pamtopng > [output.png]
copy

SYNOPSIS

qoitopam [qoifile]

DESCRIPTION

qoitopam converts images from QOI (Quite OK Image) format to PAM (Portable Arbitrary Map) format. QOI is a fast lossless image compression format designed for simplicity and speed, and PAM is the flexible container format used by the Netpbm image processing toolkit.The tool reads a QOI file from the specified argument or from standard input if no file is given. It writes PAM data to standard output, making it easy to chain with other Netpbm tools for further image processing and format conversion.This program is part of Netpbm.

PARAMETERS

qoifile

Input QOI file. If omitted, reads from standard input.
-quiet
Common libnetpbm option; suppress informational messages.

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

Only format-agnostic libnetpbm options are accepted (notably -quiet). For conversion to common formats like PNG or JPEG, pipe through another Netpbm tool such as pamtopng.

SEE ALSO

Copied to clipboard
Kai