DicomObjects.NET8 Documentation
DicomObjects Namespace / DicomImage Class / Bitmap Method / Bitmap(Int32) Method

The frame number to use. This is 1-index, i.e. first frame is 1 not 0




In This Topic
    Bitmap(Int32) Method
    In This Topic
    Creates a SKBitmap Image from DicomImage
    Syntax
    'Declaration
     
    
    Public Overloads Function Bitmap( _
       Optional ByVal frame As Integer _
    ) As SkiaSharp.SKBitmap
    'Usage
     
    
    Dim instance As DicomImage
    Dim frame As Integer
    Dim value As SkiaSharp.SKBitmap
     
    value = instance.Bitmap(frame)
    public SkiaSharp.SKBitmap Bitmap( 
       int frame
    )
    public:
    SkiaSharp.SKBitmap^ Bitmap( 
       int frame
    ) 

    Parameters

    frame

    The frame number to use. This is 1-index, i.e. first frame is 1 not 0

    Return Value

    Bitmap
    Remarks
    Returns a SKBitmap image of the RenderedSize of the first Frame by default of the DicomImage
    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