如何C#程序安装windows系统字体?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
创新互联专注于喀什企业网站建设,响应式网站,星空体育app最新版本(2024已更新)建设。喀什网站建设公司,为喀什等地区提供建站服务。全流程按需定制,专业设计,全程项目跟踪,创新互联专业和态度为您提供的服务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; }
新闻标题:如何C#程序安装windows系统字体-创新互联
文章出自:/article16/dhiigg.html
成都网站建设公司_创新互联,为您提供网站设计、建站公司、自适应网站、网站排名、搜索引擎优化、网站设计公司
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联