Decompresses given array which contains data compressed with the deflate algorithm (ZIP).
Namespace:
Aurigma.GraphicsMill
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Shared Function Decompress ( _ compressedData As IntPtr, _ compressedDataSize As UInteger, _ decompressedData As IntPtr, _ decompressedDataSize As UInteger _ ) As UInteger
public static uint Decompress( IntPtr compressedData, uint compressedDataSize, IntPtr decompressedData, uint decompressedDataSize )
Type: System.IntPtr
The pointer to unmanaged byte array which stores the ZIP-compressed data.Type: System.UInt32
The integer value which specifies the length of the input buffer.Type: System.IntPtr
The pointer to the unmanaged byte array which will get the decompressed data. The memory should be allocated by caller.Type: System.UInt32
The integer value which specifies the lenght of the output buffer.You should guaranty that the length of the output buffer enough to hold the result of decompression.