■ 폰트를 설치하는 방법을 보여준다.
▶ Program.cs
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
using Microsoft.Win32; using System; using System.Drawing.Text; using System.IO; using System.Runtime.InteropServices; namespace TestProject { /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Import ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 폰트 리소스 추가하기 - AddFontResource(fontFilePath) /// <summary> /// 폰트 리소스 추가하기 /// </summary> /// <param name="fontFilePath">폰트 파일 경로</param> /// <returns>처리 결과</returns> [DllImport("gdi32.dll")] private static extern int AddFontResource(string fontFilePath); #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 키 명칭 /// </summary> private static string _keyName = @"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts"; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 프로그램 시작하기 - Main() /// <summary> /// 프로그램 시작하기 /// </summary> private static void Main() { RegisterFont(@"c:\tvN 즐거운이야기 Bold.ttf"); } #endregion #region 폰트 등록하기 - RegisterFont(fontFileName) /// <summary> /// 폰트 등록하기 /// </summary> /// <param name="sourceFontFilePath">소스 폰트 파일 경로</param> private static void RegisterFont(string sourceFontFilePath) { string targetFontFileName = Path.GetFileName(sourceFontFilePath); string targetFontFilePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Fonts), targetFontFileName); if(!File.Exists(targetFontFilePath)) { File.Copy(sourceFontFilePath, targetFontFilePath); PrivateFontCollection collection = new PrivateFontCollection(); collection.AddFontFile(targetFontFilePath); string actualFontName = collection.Families[0].Name; AddFontResource(targetFontFilePath); Registry.SetValue(_keyName, actualFontName, targetFontFileName, RegistryValueKind.String); } } #endregion } } |
※ 첨부 프로젝트는 관리자 권한으로 실행되도록 설정되어 있다.