DicomObjects.NET.8.48 Documentation
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 System.String, _
       ByVal Data As System.IO.Stream, _
       ByVal DataSet As DicomDataSet, _
       ByVal Frame As System.Integer _
    ) As IDecompressor
    public abstract IDecompressor Decompressor( 
       System.string TransferSyntax,
       System.IO.Stream Data,
       DicomDataSet DataSet,
       System.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.8 or higher

    See Also