zoukankan      html  css  js  c++  java
  • 黄聪:使用c#代码安装系统字体

    使用c#代码安装系统字体
            [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, // handle to destination window 
            uint Msg, // message 
            int wParam, // first message parameter 
            int lParam // second message parameter 
            );

            [DllImport("gdi32")]
            
    public static extern int AddFontResource(string lpFileName);
              
            
    private void installFont()
            {

                string WinFontDir = "C:\\windows\\fonts";
                
    string FontFileName = "DS-Digital Bold Italic.TTF";
                
    string FontName = "DS-Digital Bold Italic";
                
    int Ret;
                
    int Res;
                
    string FontPath;
                
    const int WM_FONTCHANGE = 0x001D;
                
    const int HWND_BROADCAST = 0xffff;
                FontPath 
    = WinFontDir + "\\" + FontFileName;
                
    if (!File.Exists(FontPath))
                {
                    File.Copy(System.Windows.Forms.Application.StartupPath 
    + "\\DS-Digital Bold Italic.TTF"FontPath);
                    Ret 
    = AddFontResource(FontPath);

                    Res = SendMessage(HWND_BROADCAST, WM_FONTCHANGE, 00);
                    Ret 
    = WriteProfileString("fonts"FontName + "(TrueType)"FontFileName);
                }
            }

  • 相关阅读:
    素数筛相关
    ACM-ICPC 2017 Asia Shenyang
    codeforces/contest/1228
    Python 支持的编码格式列表
    Python——json格式数据与字典相互转换
    mysql 数据查询基本语法
    Python 奇葩问题总结;
    Python中的Subprocess模块 python 命令行操作 系统任务管理 执行系统命令
    C++ Json打包数据 查看数据
    mysql数据无法读出 idb文件恢复数据
  • 原文地址:https://www.cnblogs.com/huangcong/p/1696603.html
Copyright © 2011-2022 走看看