Uses of Interface
Compressor.Lossless.Lossless_Compressor

Packages that use Lossless_Compressor
Compressor.Lossless 

Uses of Lossless_Compressor in Compressor.Lossless
 

Subinterfaces of Lossless_Compressor in Compressor.Lossless
interface Huffman
          This method uses a small number of bits to represent the most used
characters and a large number of bits to represent the less used characters.
interface LZW
          This method builds a dictionary of sentences (one or more characters)
for encoding the input data.
interface Run_Length
          This method replaces sequences of the same characters with the character
and the number of ocurrences of it.