Decompresses a source buffer into a target buffer, using the ZLib library.
Namespace:
FreeImageAPIAssembly: FreeImageNET (in FreeImageNET.dll)
Syntax
C# |
---|
public static uint ZLibGUnzip( byte[] target, uint target_size, byte[] source, uint source_size ) |
Visual Basic (Declaration) |
---|
Public Shared Function ZLibGUnzip ( _ target As Byte(), _ target_size As UInteger, _ source As Byte(), _ source_size As UInteger _ ) As UInteger |
Visual C++ |
---|
public: static unsigned int ZLibGUnzip( array<unsigned char>^ target, unsigned int target_size, array<unsigned char>^ source, unsigned int source_size ) |
Parameters
- target
- Type: array<
System..::.Byte
>[]()[]
Pointer to the target buffer.
- target_size
- Type: System..::.UInt32
Size of the target buffer. Must have been saved outlide of zlib.
- source
- Type: array<
System..::.Byte
>[]()[]
Pointer to the source buffer.
- source_size
- Type: System..::.UInt32
Size of the source buffer.