HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

pnmtofiasco — Convert a PNM image to a compressed FIASCO file. More information: <https://netpbm.sourceforge.net/d

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandfiascoconvertcompressedcliimagepnmpnmtofiasco

Problem

How to use the pnmtofiasco command: Convert a PNM image to a compressed FIASCO file. More information: <https://netpbm.sourceforge.net/doc/pnmtofiasco.html>.

Solution

pnmtofiasco — Convert a PNM image to a compressed FIASCO file. More information: <https://netpbm.sourceforge.net/doc/pnmtofiasco.html>.

Convert a PNM image to a compressed FIASCO file:
pnmtofiasco {{path/to/file.pnm}} > {{path/to/file.fiasco}}


Specify the input files through a pattern:
pnmtofiasco {{[-i|--image-name]}} "{{img[01-09+1].pnm}}" > {{path/to/file.fiasco}}


Specify the compression quality:
pnmtofiasco {{[-q|--quality]}} {{quality_level}} {{path/to/file.pnm}} > {{path/to/file.fiasco}}


Load the options to be used from the specified configuration file:
pnmtofiasco {{[-f|--config]}} {{path/to/fiascorc}} {{path/to/file.pnm}} > {{path/to/file.fiasco}}

Code Snippets

Convert a PNM image to a compressed FIASCO file

pnmtofiasco {{path/to/file.pnm}} > {{path/to/file.fiasco}}

Specify the input files through a pattern

pnmtofiasco {{[-i|--image-name]}} "{{img[01-09+1].pnm}}" > {{path/to/file.fiasco}}

Specify the compression quality

pnmtofiasco {{[-q|--quality]}} {{quality_level}} {{path/to/file.pnm}} > {{path/to/file.fiasco}}

Load the options to be used from the specified configuration file

pnmtofiasco {{[-f|--config]}} {{path/to/fiascorc}} {{path/to/file.pnm}} > {{path/to/file.fiasco}}

Context

tldr-pages: common/pnmtofiasco

Revisions (0)

No revisions yet.