iTextSharp.text.pdf.parser.ImageRenderInfo.GetArea C# (CSharp) Method

GetArea() public method

public GetArea ( ) : float
return float
        public float GetArea()
        {
            // the image space area is 1, so we multiply that by the determinant of the CTM to get the transformed area
            return ctm.GetDeterminant();
        }