Decompress Method (CodecGlobal)
In This Topic
Experimental independent decompression method
Syntax
'Declaration
Public Shared Sub Decompress( _
ByVal As Stream, _
ByVal As Array, _
ByVal As Size, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As String _
)
'Usage
Dim CompressedData As Stream
Dim DestinationData As Array
Dim Size As Size
Dim Bits As Integer
Dim Planes As Integer
Dim TransferSyntax As String
CodecGlobal.Decompress(CompressedData, DestinationData, Size, Bits, Planes, TransferSyntax)
public static void Decompress(
Stream ,
Array ,
Size ,
int ,
int ,
string
)
public:
static void Decompress(
Stream^ ,
Array^ ,
Size ,
int ,
int ,
String^
)
Parameters
- CompressedData
- The data to be decompressed
- DestinationData
- The destination to put the decompressed data into.
- Size
- Size of the image
- Bits
- Bit depth
- Planes
- 1 for monochrome, or 3 for colour
- TransferSyntax
- This indicates the decopmression metho to use
Requirements
Target Platforms: .NET CLR 4.0 or higher
See Also