Is there an easy way (in .Net) to test if a Font is installed on the current machine?
Going off of GvS' answer:
private static bool IsFontInstalled(string fontName) { using (var testFont = new Font(fontName, 8)) return fontName.Equals(testFont.Name, StringComparison.InvariantCultureIgnoreCase); }