DicomObjects.NET8 Documentation
DicomObjects.DicomWeb Namespace / IWadoWebClient Interface / RetrieveRendered Method
The Requested StudyUID
The Requested series UID (may be null/absent)
The Requested instance UID (may be null/absent)
The desired output size of the render. This specifies the width (vw) and height (vh) to which the image should be scaled.
An optional rectangular area of the source image to crop before scaling. If specified, this defines the source x (sx), y (sy), width (sw), and height (sh).



In This Topic
    RetrieveRendered Method (IWadoWebClient)
    In This Topic
    Retrieve Rendered images
    Syntax
    'Declaration
     
    
    Function RetrieveRendered( _
       ByVal StudyUID As String, _
       Optional ByVal SeriesUID As String, _
       Optional ByVal InstanceUID As String, _
       Optional ByVal Frames As IEnumerable(Of Integer), _
       Optional ByVal Viewport As Nullable(Of SKSizeI), _
       Optional ByVal Area As Nullable(Of SKRectI) _
    ) As Dictionary(Of HttpContentHeaders,Byte())
    'Usage
     
    
    Dim instance As IWadoWebClient
    Dim StudyUID As String
    Dim SeriesUID As String
    Dim InstanceUID As String
    Dim Frames As IEnumerable(Of Integer)
    Dim Viewport As Nullable(Of SKSizeI)
    Dim Area As Nullable(Of SKRectI)
    Dim value As Dictionary(Of HttpContentHeaders,Byte())
     
    value = instance.RetrieveRendered(StudyUID, SeriesUID, InstanceUID, Frames, Viewport, Area)

    Parameters

    StudyUID
    The Requested StudyUID
    SeriesUID
    The Requested series UID (may be null/absent)
    InstanceUID
    The Requested instance UID (may be null/absent)
    Frames
    Viewport
    The desired output size of the render. This specifies the width (vw) and height (vh) to which the image should be scaled.
    Area
    An optional rectangular area of the source image to crop before scaling. If specified, this defines the source x (sx), y (sy), width (sw), and height (sh).

    Return Value

    List of images as byte[] and their media types
    Remarks
    This method is experimental and incomplete as the DICOM specificaiton is ambiguous. There is currently no suport for rendering parameters
    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