我想在我的系统中安装一个新字体,但我的代码有问题,我无法找出我犯的错误。在我调用CopyFile之后,该文件在C:\ Windows \中不存在字体。你能给我一些建议吗?谢谢。 这是我的代码:
`//the source file
string sSourceDir = "F:\\my_job\\font\\";
//the file name
string sFontFileName = "jdqw.TTF";
string sFontName = "jdqw";
TCHAR sWinDir[MAX_PATH];
GetWindowsDirectory(sWinDir, MAX_PATH);
string sFontDir(sWinDir);
//make the path like C:\\Windows\\Fonts
sFontDir += "\\Fonts\\";
string sFOTFile = sFontDir;
sFOTFile += sFontFileName.substr(0, sFontFileName.length() - 4);
sFOTFile += ".FOT";
string source = sSourceDir;
string dest = sFontDir;
source += sFontFileName;
dest += sFontFileName;
//copy file
cout << source.c_str() << " " << dest.c_str() << endl;
cout << CopyFile(source.c_str(), dest.c_str(), FALSE) << endl;
cout << GetLastError() << endl;`
答案 0 :(得分:1)
有一个pretty good description by Michael Kaplan。简而言之,您不能也不应该在那里复制文件,因为它是虚拟视图。相反,使用适当的方法:调用AddFontResourceEx
,传递适当的标志。如果字体在系统范围内可用,则广播WM_FONTCHANGE
。要永久安装字体,您需要管理员权限(即UAC提升),因为您需要列出HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts
下的字体文件名。
您可能需要考虑从安装程序执行这些步骤,因为这通常以必要的权限运行。