■ 폰트 설치 여부를 구하는 방법을 보여준다.
▶ 폰트 설치 여부 구하기 예제 (C#)
1 2 3 4 5 |
using System; Console.WriteLine(IsFontInstalled("나눔고딕코딩")); |
▶ 폰트 설치 여부 구하기 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
using System.Drawing; using System.Drawing.Text; #region 폰트 설치 여부 구하기 - IsFontInstalled(fontName) /// <summary> /// 폰트 설치 여부 구하기 /// </summary> /// <param name="fontName">폰트명</param> /// <returns>폰트 설치 여부</returns> public bool IsFontInstalled(string fontName) { InstalledFontCollection collection = new InstalledFontCollection(); foreach(FontFamily fontFamily in collection.Families) { if(fontFamily.Name.Equals(fontName)) { return true; } } return false; } #endregion |