Метод | Описание | |
---|---|---|
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.
|
public static Decompress ( Stream source, byte output ) : int | ||
source | Stream | The |
output | byte | The byte array to write into. |
Результат | int |
public static Decompress ( Stream source, byte output, int start, int count ) : int | ||
source | Stream | The |
output | byte | The byte array to write into. |
start | int | The first byte offset in |
count | int | The number of bytes in |
Результат | int |