Biomedical Image Analysis Library
The Biomedical Image Analysis Library is a poweful tool for developers, physicians, researchers, engineers, and so on.
|
Classes | |
class | AdlerChecksum |
Implements a checksum generator that computes the Adler checksum on data More... | |
interface | ChecksumGenerator |
Declares methods and properties that enables a running checksum to be calculated More... | |
class | ChecksumGeneratorBase |
Implements the common functionality needed for all ChecksumGenerators More... | |
class | CircularBuffer |
This class implements a circular buffer | |
interface | Codec |
Declares methods and events for implementing compressors/decompressors More... | |
class | CodecBase |
Implements the common functionality needed for all Codecs More... | |
class | CRC32Checksum |
Implements a CRC32 checksum generator More... | |
class | Deflater |
Implements a data compressor, using the deflate algorithm in the ZLib dll More... | |
class | GZipStream |
Implements a compressed Stream, in GZip (.gz) format. More... | |
class | Inflater |
Implements a data decompressor, using the inflate algorithm in the ZLib dll More... | |
class | Info |
Encapsulates general information about the ZLib library More... | |
class | ZLibException |
The exception that is thrown when an error occurs on the zlib dll More... | |
struct | ZStream |
Enumerations | |
enum | CompressLevel : int { CompressLevel.Default = -1, CompressLevel.None = 0, CompressLevel.Best = 9, CompressLevel.Fastest = 1 } |
Defines constants for the available compression levels in zlib More... | |
Functions | |
delegate void | DataAvailableHandler (byte[] data, int startIndex, int count) |
Represents the method that will be called from a codec when new data are available. More... | |
|
strong |
Defines constants for the available compression levels in zlib
Definition at line 61 of file DotZLib.cs.
delegate void DotZLib.DataAvailableHandler | ( | byte[] | data, |
int | startIndex, | ||
int | count | ||
) |
Represents the method that will be called from a codec when new data are available.
data The byte array containing the processed data startIndex The index of the first processed byte in data
count The number of processed bytes available
On return from this method, the data may be overwritten, so grab it while you can. You cannot assume that startIndex will be zero.