DicomObjects.NET.V8
DicomObjects.DicomCodecs Namespace / CodecFactory Class / Decompressor Method
The transfer syntax of the data to be decompressed
The data to be decompressed
The DicomDataSet containing the data to be decompressed
The Frame number (as per DICOM rules, numbered from 1)



In This Topic
    Decompressor Method
    In This Topic
    Create a Decompressor object
    Syntax
    'Declaration
     
    Public MustOverride Function Decompressor( _
       ByVal TransferSyntax As String, _
       ByVal Data As Stream, _
       ByVal DataSet As DicomDataSet, _
       ByVal Frame As Integer _
    ) As IDecompressor
    'Usage
     
    Dim instance As CodecFactory
    Dim TransferSyntax As String
    Dim Data As Stream
    Dim DataSet As DicomDataSet
    Dim Frame As Integer
    Dim value As IDecompressor
     
    value = instance.Decompressor(TransferSyntax, Data, DataSet, Frame)
    public abstract IDecompressor Decompressor( 
       string TransferSyntax,
       Stream Data,
       DicomDataSet DataSet,
       int Frame
    )
    public:
    abstract IDecompressor^ Decompressor( 
       String^ TransferSyntax,
       Stream^ Data,
       DicomDataSet^ DataSet,
       int Frame
    ) 

    Parameters

    TransferSyntax
    The transfer syntax of the data to be decompressed
    Data
    The data to be decompressed
    DataSet
    The DicomDataSet containing the data to be decompressed
    Frame
    The Frame number (as per DICOM rules, numbered from 1)

    Return Value

    The new Decompressor object
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also