C# Класс Alexandria.Compression.LZW

Lempel-Ziv-Welch compression support.
Показать файл Открыть проект

Открытые методы

Метод Описание
Decompress ( Stream source, byte output ) : int

Decompress the LZW-compressed Stream source into the output, returning the number of bytes decompressed.

Decompress ( Stream source, byte output, int start, int count ) : int

Decompress the LZW-compressed Stream source into the output, returning the number of bytes decompressed.

Описание методов

Decompress() публичный статический метод

Decompress the LZW-compressed Stream source into the output, returning the number of bytes decompressed.
public static Decompress ( Stream source, byte output ) : int
source Stream The to decompress from.
output byte The byte array to write into.
Результат int

Decompress() публичный статический метод

Decompress the LZW-compressed Stream source into the output, returning the number of bytes decompressed.
public static Decompress ( Stream source, byte output, int start, int count ) : int
source Stream The to decompress from.
output byte The byte array to write into.
start int The first byte offset in to write into.
count int The number of bytes in to write to at a maximum.
Результат int