This content has moved - please find it at https://devblog.cyotek.com.

Although these pages remain accessible, some content may not display correctly in future as the new blog evolves.

Visit https://devblog.cyotek.com.

Detecting if a given font style exists in C#

In a previous article, Creating a WYSIWYG font ComboBox using C#, there is a hacky bit of code which uses a try catch block to handle processing when a given font style doesn't exist. This article describes a better way of handling this requirement without relying on the exception handler.

Originally we used the following code to determine if a font style exists: (Some of the additional code has been removed for clarity)

// bad code do not use!

protected virtual Font GetFont(string fontFamilyName)
{
  Font font;

  font = this.GetFont(fontFamilyName, FontStyle.Regular);
  if (font == null)
    font = this.GetFont(fontFamilyName, FontStyle.Bold);
  if (font == null)
    font = this.GetFont(fontFamilyName, FontStyle.Italic);
  if (font == null)
    font = this.GetFont(fontFamilyName, FontStyle.Bold | FontStyle.Italic);

  return font;
}

protected virtual Font GetFont(string fontFamilyName, FontStyle fontStyle)
{
  Font font;

  try
  {
    font = new Font(fontFamilyName, this.PreviewFontSize, fontStyle);
  }
  catch
  {
    font = null;
  }

  return font;
}

This code essentially "tests" each style by attempting to create a font instance of a given style. If the style doesn't exist, an exception is thrown and the code moves onto the next style.

A better way is to use the IsStyleAvailable function of the FontFamily object. You simply create an instance of this object with the name of the font you wish to query, then call the method with the style to test. Note that the constructor for FontFamily will throw an exception if the font you try to create doesn't exist.

Switching the GetFont method above to use IsStyleAvailable ends up looking like this:

protected virtual Font GetFont(string fontFamilyName)
{
  Font font;

  using (FontFamily family = new FontFamily(fontFamilyName))
  {
    if (family.IsStyleAvailable(FontStyle.Regular))
      font = this.GetFont(fontFamilyName, FontStyle.Regular);
    else if (family.IsStyleAvailable(FontStyle.Bold))
      font = this.GetFont(fontFamilyName, FontStyle.Bold);
    else if (family.IsStyleAvailable(FontStyle.Italic))
      font = this.GetFont(fontFamilyName, FontStyle.Italic);
    else if (family.IsStyleAvailable(FontStyle.Bold | FontStyle.Italic))
      font = this.GetFont(fontFamilyName, FontStyle.Bold | FontStyle.Italic);
    else
      font = null;
  }

  return font;
}

protected virtual Font GetFont(string fontFamilyName, FontStyle fontStyle)
{
  return new Font(fontFamilyName, this.PreviewFontSize, fontStyle);
}

Based on this, a simple method to check if a given font name and style exists is presented below. As the constructor for FontFamily throws an ArgumentException if the given font doesn't exist, we can trap that and return false. Any other error will be thrown, rather than being silently ignored as in our earlier solution.

public bool DoesFontExist(string fontFamilyName, FontStyle fontStyle)
{
  bool result;

  try
  {
    using (FontFamily family = new FontFamily(fontFamilyName))
      result = family.IsStyleAvailable(fontStyle);
  }
  catch (ArgumentException)
  {
    result = false;
  }

  return result;
}

Update History

  • 2011-08-07 - First published
  • 2020-11-21 - Updated formatting

About The Author

Gravatar

The founder of Cyotek, Richard enjoys creating new blog content for the site. Much more though, he likes to develop programs, and can often found writing reams of code. A long term gamer, he has aspirations in one day creating an epic video game. Until that time, he is mostly content with adding new bugs to WebCopy and the other Cyotek products.

Leave a Comment

While we appreciate comments from our users, please follow our posting guidelines. Have you tried the Cyotek Forums for support from Cyotek and the community?

Styling with Markdown is supported

Comments

Gravatar

Jason

# Reply

Okay... so is the following "wrong"?...

///

/// Performs a case-insensitive lookup against the installed Window's fonts /// /// /// public static bool IsFontInstalled(string fontName) { if (string.IsNullOrWhiteSpace(fontName)) return false;

        bool isFontInstalled = false;

        using (InstalledFontCollection installedFontCollection = new InstalledFontCollection())
        {
            foreach (FontFamily fontFamily in installedFontCollection.Families)
            {
                if (0 == string.Compare(fontFamily.Name, fontName, ignoreCase: true))
                {
                    isFontInstalled = true;
                    break;
                }
            }
        }

        return isFontInstalled;
    }
}
Gravatar

Richard Moss

# Reply

Hello,

No, there's nothing wrong with your approach. The only real difference is you are just checking that any style in a given font exists whereas I am checking that a specific style exists. But either way, your code is fine.

Regards; Richard Moss

Gravatar

yetaland

# Reply

thank you !

Franc

# Reply

Thanks.