• 黄聪:使用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);
                }
            }

  • 相关阅读:
    ubuntu下安装配置apache2(含虚拟主机配置)
    ubuntu安装软件包apt-get和dpkg方法
    python日期,时间函数
    python多线程
    截取utf8中文字符串
    python解析json
    sqlite读写
    lambda,map,filter,reduce
    pyinstaller生成exe可执行程序
    对象练习
  • 原文地址:https://www.cnblogs.com/huangcong/p/1696603.html
Copyright © 2020-2023  润新知