C# 클래스 Alexandria.Compression.LZW

Lempel-Ziv-Welch compression support.
파일 보기 프로젝트 열기: Burton-Radons/Alexandria

공개 메소드들

메소드 설명
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