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

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

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

Problem

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

Solution

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

Convert a compressed FIASCO file to a PNM file or in the case of video streams multiple PNM files:
fiascotopnm {{path/to/file.fiasco}} {{[-o|--output]}} {{output_file_basename}}


Use fast decompression, resulting in a slightly decreased quality of the output file(s):
fiascotopnm {{[-z|--fast]}} {{path/to/file.fiasco}} {{[-o|--output]}} {{output_file_basename}}


Load the options to be used from the specified configuration file:
fiascotopnm {{[-f|--config]}} {{path/to/fiascorc}} {{path/to/file.fiasco}} {{[-o|--output]}} {{output_file_basename}}


Magnify the decompressed image(s) by a factor of 2^n:
fiascotopnm {{[-m|--magnify]}} {{n}} {{path/to/file.fiasco}} {{[-o|--output]}} {{output_file_basename}}


Smooth the decompressed image by the specified amount:
fiascotopnm {{[-s|--smoothing]}} {{n}} {{path/to/file.fiasco}} {{[-o|--output]}} {{output_file_basename}}

Code Snippets

Convert a compressed FIASCO file to a PNM file or in the case of video streams multiple PNM files

fiascotopnm {{path/to/file.fiasco}} {{[-o|--output]}} {{output_file_basename}}

Use fast decompression, resulting in a slightly decreased quality of the output file(s)

fiascotopnm {{[-z|--fast]}} {{path/to/file.fiasco}} {{[-o|--output]}} {{output_file_basename}}

Load the options to be used from the specified configuration file

fiascotopnm {{[-f|--config]}} {{path/to/fiascorc}} {{path/to/file.fiasco}} {{[-o|--output]}} {{output_file_basename}}

Magnify the decompressed image(s) by a factor of 2^n

fiascotopnm {{[-m|--magnify]}} {{n}} {{path/to/file.fiasco}} {{[-o|--output]}} {{output_file_basename}}

Smooth the decompressed image by the specified amount

fiascotopnm {{[-s|--smoothing]}} {{n}} {{path/to/file.fiasco}} {{[-o|--output]}} {{output_file_basename}}

Context

tldr-pages: common/fiascotopnm

Revisions (0)

No revisions yet.