温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

如何C#程序安装windows系统字体

发布时间:2020-11-07 16:08:36 来源:亿速云 阅读:283 作者:Leah 栏目:开发技术

如何C#程序安装windows系统字体?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。

  1.1、使用代码安装字体

  注意:安装字体时,需要windows的管理员权限。

[DllImport("kernel32.dll", SetLastError = true)]
 public static extern int WriteProfileString(string lpszSection, string lpszKeyName, string lpszString);

 [DllImport("gdi32")]
 public static extern int AddFontResource(string lpFileName);

 /// <summary>
 /// 安装字体
 /// </summary>
 /// <param name="fontFilePath">字体文件全路径</param>
 /// <returns>是否成功安装字体</returns>
 /// <exception cref="UnauthorizedAccessException">不是管理员运行程序</exception>
 /// <exception cref="Exception">字体安装失败</exception>
 public static bool InstallFont(string fontFilePath)
 {
   try
   {
     System.Security.Principal.WindowsIdentity identity = System.Security.Principal.WindowsIdentity.GetCurrent();

     System.Security.Principal.WindowsPrincipal principal = new System.Security.Principal.WindowsPrincipal(identity);
     //判断当前登录用户是否为管理员
     if (principal.IsInRole(System.Security.Principal.WindowsBuiltInRole.Administrator) == false)
     {
       throw new UnauthorizedAccessException("当前用户无管理员权限,无法安装字体。");
     }
     //获取Windows字体文件夹路径
     string fontPath=Path.Combine(System.Environment.GetEnvironmentVariable("WINDIR") , "fonts",Path.GetFileName(fontFilePath));
     //检测系统是否已安装该字体
     if (!File.Exists(fontPath))
     {
       // File.Copy(System.Windows.Forms.Application.StartupPath + "\\font\\" + FontFileName, FontPath); //font是程序目录下放字体的文件夹
       //将某路径下的字体拷贝到系统字体文件夹下
       File.Copy(fontFilePath, fontPath); //font是程序目录下放字体的文件夹
       AddFontResource(fontPath);

       //Res = SendMessage(HWND_BROADCAST, WM_FONTCHANGE, 0, 0); 
       //WIN7下编译会出错,不清楚什么问题。注释就行了。 
       //安装字体
       WriteProfileString("fonts", Path.GetFileNameWithoutExtension(fontFilePath) + "(TrueType)", Path.GetFileName(fontFilePath));
     }
   }
   catch (Exception ex)
   {
     throw new Exception(string.Format($"[{Path.GetFileNameWithoutExtension(fontFilePath)}] 字体安装失败!原因:{ex.Message}" ));
   }
   return true;
 }

  1.2、从项目资源文件中加载字体

  该方法需要开发者将字体文件以资源的形式放入项目资源文件中。不用安装到字体库中,其他程序如果需要使用,就需要自己安装或者加载。此时可以使用以下代码创建程序所需字体:

/// <summary>
/// 如何使用资源文件中的字体,无安装无释放
/// </summary>
/// <param name="bytes">资源文件中的字体文件</param>
/// <returns></returns>
public Font GetResoruceFont(byte[] bytes)
{
  System.Drawing.Text.PrivateFontCollection pfc = new System.Drawing.Text.PrivateFontCollection();
  IntPtr MeAdd = Marshal.AllocHGlobal(bytes.Length);
  Marshal.Copy(bytes, 0, MeAdd, bytes.Length);
  pfc.AddMemoryFont(MeAdd, bytes.Length);
  return new Font(pfc.Families[0], 15, FontStyle.Regular);
}

 1.3、加载某个字体文件,加载字体

 设置好某个字体的路径,然后加载字体文件,从而创建字体。不用安装到字体库中,其他程序如果需要使用,就需要自己安装或者加载。 

/// <summary>
/// 通过文件获取字体
/// </summary>
/// <param name="filePath">文件全路径</param>
/// <returns>字体</returns>
public Font GetFontByFile(string filePath)
{
  //程序直接调用字体文件,不用安装到系统字库中。
  System.Drawing.Text.PrivateFontCollection pfc = new System.Drawing.Text.PrivateFontCollection();
  pfc.AddFontFile(filePath);//字体文件的路径
  Font font = new Font(pfc.Families[0], 24, FontStyle.Regular, GraphicsUnit.Point, 0);//font就是通过文件创建的字体对象
  return font;
}

    1.4、#动态加载和卸载字体(以文件的方式)
     因为是在CE里,所以是用Coredll PC机用的不是这个,可查MSDN

[System.Runtime.InteropServices.DllImport("coredll", EntryPoint = "AddFontResource")]
 private static extern int AddFontResource([In,MarshalAs(UnmanagedType.LPWStr)]string fontSource);

 [DllImport("coredll", EntryPoint = "SendMessage")]
 private static extern int SendMessage(IntPtr hWnd, int Msg, IntPtr wParam, IntPtr lParam);
 private void Fun()
 {
   int installFont = AddFontResource(@"/SDMEM/MSYH.TTF"); //这是字体的安装 返回不为0即成功
   SendMessage((IntPtr)0xffff, 0x001d, IntPtr.Zero, IntPtr.Zero); //通知其它正在运行的应用程序,有新字体注册了           
   InstalledFontCollection enumFonts = new InstalledFontCollection();
   FontFamily[] fonts = enumFonts.Families;
   foreach (FontFamily font in fonts)
   {
     MessageBox.Show(font.Name);
   }
 }

  2、检测系统中是否包含某种字体

  对于检测是否已经安装了某种字体的方法有很多,这里只介绍检测是否有该文件的方式:

/// <summary>
/// 检查字体是否存在
/// </summary>
/// <param name="familyName">字体名称</param>
/// <returns></returns>
public static bool CheckFont(string familyName)
{
  string FontPath = Path.Combine(System.Environment.GetEnvironmentVariable("WINDIR"), "fonts", Path.GetFileName(familyName));
  //检测系统是否已安装该字体
  return File.Exists(FontPath);
}

   检测某种字体样式是否可用: 

/// <summary>
/// 检测某种字体样式是否可用
/// </summary>
/// <param name="familyName">字体名称</param>
/// <param name="fontStyle">字体样式</param>
/// <returns></returns>
public bool CheckFont(string familyName, FontStyle fontStyle= FontStyle.Regular )
{
  InstalledFontCollection installedFontCollection = new InstalledFontCollection();
  FontFamily[] fontFamilies = installedFontCollection.Families;
  foreach(var item in fontFamilies)
  {
    if (item.Name.Equals(familyName))
    {
      return item.IsStyleAvailable(fontStyle);
    }
  }
  return false;
}

关于如何C#程序安装windows系统字体问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注亿速云行业资讯频道了解更多相关知识。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI