tifftopnm

Convert TIFF images to PNM format

TLDR

Convert TIFF to PNM
$ tifftopnm [input.tiff] > [output.pnm]
Convert specific page
$ tifftopnm -page [2] [input.tiff] > [output.pnm]
List pages in TIFF
$ tifftopnm -headerdump [input.tiff]

SYNOPSIS

tifftopnm [options] [file]

DESCRIPTION

tifftopnm converts TIFF images to PNM format. Part of Netpbm toolkit. Supports multi-page TIFF files and alpha channel extraction.

PARAMETERS

-page n

Extract specific page.
-headerdump
Dump TIFF headers.
-alphaout file
Write alpha channel to file.
-respectfillorder
Respect fill order tag.

INSTALL

sudo apt install netpbm
sudo dnf install netpbm
sudo pacman -S netpbm
sudo apk add netpbm
sudo zypper install netpbm
brew install netpbm
nix profile install nixpkgs#netpbm

SEE ALSO

pnmtotiff(1), pngtopnm(1)