Decompresses a source buffer into a target buffer, using the ZLib library.
Namespace:
FreeImageAPI
Assembly:
FreeImageNET (in FreeImageNET.dll)
Syntax
C# |
---|
public static uint ZLibUncompress(
byte[] target,
uint target_size,
byte[] source,
uint source_size
) |
Visual Basic (Declaration) |
---|
Public Shared Function ZLibUncompress ( _
target As Byte(), _
target_size As UInteger, _
source As Byte(), _
source_size As UInteger _
) As UInteger |
Return Value
The actual size of the uncompressed buffer, or 0 if an error occurred.
Version Information
FreeImage.NET
Supported in: 3.11.0, 3.12.0, 3.13.0, 3.13.1
See Also