/// <summary>
        /// Calculates the binding rectangle for the given text string when the font is used
        /// </summary>
        /// <param name="text">Input string</param>
        /// <param name="baseline">y-coordinate of the baseline relatively to the bottom-most text point</param>
        /// <returns>size of the text string. Height of the text does not include the height of character parts that are below the baseline</returns>
        public Size GetTextSize(string text, int baseline)
        {
            var size = new Size();

            CvCoreInvoke.cvGetTextSize(text, ref this, ref size, ref baseline);
            return(size);
        }