DicomObjects.NET.V8
DicomObjects Namespace / DicomImage Class / Bitmap Method / Bitmap(Size,PixelFormat,Matrix,Int32) Method
The size of the image to generate
The requested format
The Matrix to apply to convert from DICOM coordinates to Bitmap coordinates

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




In This Topic
    Bitmap(Size,PixelFormat,Matrix,Int32) Method
    In This Topic
    Creates a new Bitmap object, in the chosen format representing the appearance of a DicomImage
    Syntax
    'Declaration
     
    Public Overloads Function Bitmap( _
       ByVal Size As Size, _
       ByVal Format As PixelFormat, _
       ByVal Matrix As Matrix, _
       ByVal frame As Integer _
    ) As Bitmap
    'Usage
     
    Dim instance As DicomImage
    Dim Size As Size
    Dim Format As PixelFormat
    Dim Matrix As Matrix
    Dim frame As Integer
    Dim value As Bitmap
     
    value = instance.Bitmap(Size, Format, Matrix, frame)
    public Bitmap Bitmap( 
       Size Size,
       PixelFormat Format,
       Matrix Matrix,
       int frame
    )
    public:
    Bitmap^ Bitmap( 
       Size Size,
       PixelFormat Format,
       Matrix^ Matrix,
       int frame
    ) 

    Parameters

    Size
    The size of the image to generate
    Format
    The requested format
    Matrix
    The Matrix to apply to convert from DICOM coordinates to Bitmap coordinates
    frame

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

    Return Value

    A Bitmap object
    Remarks
    Only some formats are allowed by Windows - only those supported by System.Drawing.Graphics.FromImage(System.Drawing.Image)
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also