DicomObjects.NET Core Documentation
DicomObjects.Codecs 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)

    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: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also