Retrieves a DICOM image from a DICOM object.
            
            
            
            
            
            
            
            'Declaration
 
Public Function GetDicomImage( _
   ByVal  As String, _
   ByVal  As String, _
   ByVal  As Integer, _
   ByVal  As String _
) As Leadtools.RasterImage
             
        
            
            'Usage
 
Dim instance As DicomWCFStreamer
Dim sopInstanceUID As String
Dim transferSyntax As String
Dim qualityFactor As Integer
Dim extraData As String
Dim value As Leadtools.RasterImage
 
value = instance.GetDicomImage(sopInstanceUID, transferSyntax, qualityFactor, extraData)
             
        
            
            public Leadtools.RasterImage GetDicomImage( 
   string ,
   string ,
   int ,
   string 
)
             
        
            
            public:
Leadtools.RasterImage^ GetDicomImage( 
   String^ ,
   String^ ,
   int ,
   String^ 
) 
             
        
             
        
            Parameters
- sopInstanceUID
 
- The SOP Instance UID for the DICOM object to match.
 - transferSyntax
 
- An optional System.String to change the DICOM object Transfer Syntax. This value can be null or System.String.Empty.
 - qualityFactor
 
- An optional number to specify the compression loss of the image,Set 0 for lossless compression. This value is valid only when the  parameter is set to a Transfer Syntax the supports image compression.
 - extraData
 
- User custom data.
 
            
            Return Value
The RasterImage for the requested DICOM image.