Decompress Method (CodecGlobal)
Experimental independent decompression method
public static void Decompress(
System.IO.Stream ,
System.Array ,
System.Drawing.Size ,
System.int ,
System.int ,
System.string
)
public procedure Decompress(
: System.IO.Stream;
: System.Array;
: System.Drawing.Size;
: System.Integer;
: System.Integer;
: System.String
); static;
public static function Decompress(
: System.IO.Stream,
: System.Array,
: System.Drawing.Size,
: System.int,
: System.int,
: System.String
);
public: static void Decompress(
System.IO.Stream* ,
System.Array* ,
System.Drawing.Size ,
System.int ,
System.int ,
System.string*
)
public:
static void Decompress(
System.IO.Stream^ ,
System.Array^ ,
System.Drawing.Size ,
System.int ,
System.int ,
System.String^
)
'Declaration
Public Shared Sub Decompress( _
ByVal As System.IO.Stream, _
ByVal As System.Array, _
ByVal As System.Drawing.Size, _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As System.String _
)
'Usage
Dim CompressedData As System.IO.Stream
Dim DestinationData As System.Array
Dim Size As System.Drawing.Size
Dim Bits As System.Integer
Dim Planes As System.Integer
Dim TransferSyntax As System.String
CodecGlobal.Decompress(CompressedData, DestinationData, Size, Bits, Planes, TransferSyntax)
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
Target Platforms: .NET CLR 4.8 or higher