检查是字体等宽

时间:2014-02-23 07:13:39

标签: c# .net fonts system.drawing

我有一个System.Drawing.Font对象。我怎么检查这个字体是等宽字体? 我试过像font.FontFamily == FontFamily.GenericMonospace这样的东西,但它没有正常工作。

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

在C#WPF中,一种简单但有点昂贵的方法是这样的:

    private static char[] charSizes = new char[] { 'i', 'a', 'Z', '%', '#', 'a', 'B', 'l', 'm', ',', '.' };

    private bool IsMonospaced(FontFamily family)
    {
        foreach (Typeface typeface in family.GetTypefaces())
        {
            double firstWidth = 0d;

            foreach (char ch in charSizes)
            {
                FormattedText formattedText = new FormattedText(
                    ch.ToString(),
                    CultureInfo.CurrentCulture,
                    FlowDirection.LeftToRight,
                    typeface,
                    10d,
                    Brushes.Black,
                    new NumberSubstitution(),
                    1);
                if (ch == 'i')  // first char in list
                {
                    firstWidth = formattedText.Width;
                }
                else
                {
                    if (formattedText.Width != firstWidth)
                        return false;
                }
            }
        }

        return true;
    }