Game Framework
2021.05.31
|
压缩解压缩相关的实用函数。 更多...
类 | |
interface | ICompressionHelper |
压缩解压缩辅助器接口。 更多... | |
静态 Public 成员函数 | |
static void | SetCompressionHelper (ICompressionHelper compressionHelper) |
设置压缩解压缩辅助器。 更多... | |
static byte[] | Compress (byte[] bytes) |
压缩数据。 更多... | |
static bool | Compress (byte[] bytes, Stream compressedStream) |
压缩数据。 更多... | |
static byte[] | Compress (byte[] bytes, int offset, int length) |
压缩数据。 更多... | |
static bool | Compress (byte[] bytes, int offset, int length, Stream compressedStream) |
压缩数据。 更多... | |
static byte[] | Compress (Stream stream) |
压缩数据。 更多... | |
static bool | Compress (Stream stream, Stream compressedStream) |
压缩数据。 更多... | |
static byte[] | Decompress (byte[] bytes) |
解压缩数据。 更多... | |
static bool | Decompress (byte[] bytes, Stream decompressedStream) |
解压缩数据。 更多... | |
static byte[] | Decompress (byte[] bytes, int offset, int length) |
解压缩数据。 更多... | |
static bool | Decompress (byte[] bytes, int offset, int length, Stream decompressedStream) |
解压缩数据。 更多... | |
static byte[] | Decompress (Stream stream) |
解压缩数据。 更多... | |
static bool | Decompress (Stream stream, Stream decompressedStream) |
解压缩数据。 更多... | |
压缩解压缩相关的实用函数。
|
static |
压缩数据。
bytes | 要压缩的数据的二进制流。 |
|
static |
压缩数据。
bytes | 要压缩的数据的二进制流。 |
offset | 要压缩的数据的二进制流的偏移。 |
length | 要压缩的数据的二进制流的长度。 |
|
static |
压缩数据。
bytes | 要压缩的数据的二进制流。 |
offset | 要压缩的数据的二进制流的偏移。 |
length | 要压缩的数据的二进制流的长度。 |
compressedStream | 压缩后的数据的二进制流。 |
|
static |
压缩数据。
bytes | 要压缩的数据的二进制流。 |
compressedStream | 压缩后的数据的二进制流。 |
|
static |
压缩数据。
stream | 要压缩的数据的二进制流。 |
|
static |
压缩数据。
stream | 要压缩的数据的二进制流。 |
compressedStream | 压缩后的数据的二进制流。 |
|
static |
解压缩数据。
bytes | 要解压缩的数据的二进制流。 |
|
static |
解压缩数据。
bytes | 要解压缩的数据的二进制流。 |
offset | 要解压缩的数据的二进制流的偏移。 |
length | 要解压缩的数据的二进制流的长度。 |
|
static |
解压缩数据。
bytes | 要解压缩的数据的二进制流。 |
offset | 要解压缩的数据的二进制流的偏移。 |
length | 要解压缩的数据的二进制流的长度。 |
decompressedStream | 解压缩后的数据的二进制流。 |
|
static |
解压缩数据。
bytes | 要解压缩的数据的二进制流。 |
decompressedStream | 解压缩后的数据的二进制流。 |
|
static |
解压缩数据。
stream | 要解压缩的数据的二进制流。 |
|
static |
解压缩数据。
stream | 要解压缩的数据的二进制流。 |
decompressedStream | 解压缩后的数据的二进制流。 |
|
static |
设置压缩解压缩辅助器。
compressionHelper | 要设置的压缩解压缩辅助器。 |