DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImage Class / DisplaySize Method / DisplaySize(Matrix) Method
The transformation to apply to the original image size.






In This Topic
    DisplaySize(Matrix) Method
    In This Topic
    The display size in output coordinates
    Syntax
    'Declaration
     
    
    Public Overloads Function DisplaySize( _
       ByVal Matrix As System.Drawing.Drawing2D.Matrix _
    ) As System.Drawing.Size
    'Usage
     
    
    Dim instance As DicomImage
    Dim Matrix As System.Drawing.Drawing2D.Matrix
    Dim value As System.Drawing.Size
     
    value = instance.DisplaySize(Matrix)
    public System.Drawing.Size DisplaySize( 
       System.Drawing.Drawing2D.Matrix Matrix
    )
    public function DisplaySize( 
        Matrix: System.Drawing.Drawing2D.Matrix
    ): System.Drawing.Size; 
    public function DisplaySize( 
       Matrix : System.Drawing.Drawing2D.Matrix
    ) : System.Drawing.Size;
    public: System.Drawing.Size DisplaySize( 
       System.Drawing.Drawing2D.Matrix* Matrix
    ) 
    public:
    System.Drawing.Size DisplaySize( 
       System.Drawing.Drawing2D.Matrix^ Matrix
    ) 

    Parameters

    Matrix
    The transformation to apply to the original image size.

    Return Value

    The transformed Size
    Remarks
    This method takes the user provided Matrix, perform Transformation on the Image and returns the Image display size in output (normally screen) coordinates.
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also