zoukankan      html  css  js  c++  java
  • c#代码安装字体文件

     public class FontOperate
        {
            [DllImport("kernel32.dll", SetLastError = true)]
            static extern int WriteProfileString(string lpszSection, string lpszKeyName, string lpszString);
    
            [DllImport("user32.dll")]
            public static extern int SendMessage(int hWnd,
            uint Msg,
            int wParam,
            int lParam
            );
            [DllImport("gdi32")]
            public static extern int AddFontResource(string lpFileName);
    
    
            public static bool InstallFont(string sFontFileName, string sFontName)
            {
                string _sTargetFontPath = string.Format(@"{0}fonts{1}", System.Environment.GetEnvironmentVariable("WINDIR"), sFontFileName);//系统FONT目录
                string _sResourceFontPath = string.Format(@"{0}Font{1}", System.Windows.Forms.Application.StartupPath, sFontFileName);//需要安装的FONT目录
                try
                {
                    if (!File.Exists(_sTargetFontPath) && File.Exists(_sResourceFontPath))
                    {
                        int _nRet;
                        File.Copy(_sResourceFontPath, _sTargetFontPath);
                        _nRet = AddFontResource(_sTargetFontPath);
                        _nRet = WriteProfileString("fonts", sFontName + "(TrueType)", sFontFileName);
                    }
                }
                catch
                {
                    return false;
                }
                return true;
            }
        }
    使用
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using UtilityHelper;
    
    namespace LHCity_LMS_Client.Test
    {
        class Program
        {
            static void Main(string[] args)
            {
                FontOperate.InstallFont("simfang.ttf", "simfang");
                Console.ReadLine();
            }
        }
    }
    

      

  • 相关阅读:
    机器分配
    搭建免费私有音乐云
    ngnix相关
    idea常用插件
    notepad++ 实用插件
    liunx 新建自启服务
    scala 语法特性小计
    spring boot 静态资源 访问 配置
    SVN-Unable to create pristine install stream
    idea 编译 错误 Error:java: Compilation failed: internal java compiler error 解决方案
  • 原文地址:https://www.cnblogs.com/congqiandehoulai/p/9451376.html
Copyright © 2011-2022 走看看