我想在Windows 10上使用python3(更精确的Python 3.6)代码安装.ttf字体文件,我用Google搜索了一下,但发现的唯一东西是这个Install TTF fonts on windows with python,我对其进行了测试,但没有这样做任何东西。有没有办法用python3代码安装.ttf?
谢谢。
答案 0 :(得分:1)
This库似乎很有希望(我还没有尝试过)。
安装
pip install --user fonttools
或
pip3 install --user fonttools
代码
from fontTools.ttLib import TTFont
font = TTFont('/path/to/font.ttf')
然后使用font.save
方法:
定义:font.save(自身,文件,reorderTables = True)
文档字符串:保存 字体到磁盘。与构造函数类似,“文件”参数 可以是路径名或可写文件对象。
答案 1 :(得分:0)
这可能对您有帮助,它会尝试将所有字体安装在一个文件夹中,但您可以修改它以仅使用 install_font
函数安装 1 种字体:https://gist.github.com/tushortz/598bf0324e37033ed870c4e46461fb1e
import os
import shutil
import ctypes
from ctypes import wintypes
import sys
import ntpath
try:
import winreg
except ImportError:
import _winreg as winreg
user32 = ctypes.WinDLL('user32', use_last_error=True)
gdi32 = ctypes.WinDLL('gdi32', use_last_error=True)
FONTS_REG_PATH = r'Software\Microsoft\Windows NT\CurrentVersion\Fonts'
HWND_BROADCAST = 0xFFFF
SMTO_ABORTIFHUNG = 0x0002
WM_FONTCHANGE = 0x001D
GFRI_DESCRIPTION = 1
GFRI_ISTRUETYPE = 3
def install_font(src_path):
# copy the font to the Windows Fonts folder
dst_path = os.path.join(os.environ['SystemRoot'], 'Fonts',
os.path.basename(src_path))
shutil.copy(src_path, dst_path)
# load the font in the current session
if not gdi32.AddFontResourceW(dst_path):
os.remove(dst_path)
raise WindowsError('AddFontResource failed to load "%s"' % src_path)
# notify running programs
user32.SendMessageTimeoutW(HWND_BROADCAST, WM_FONTCHANGE, 0, 0,
SMTO_ABORTIFHUNG, 1000, None)
# store the fontname/filename in the registry
filename = os.path.basename(dst_path)
fontname = os.path.splitext(filename)[0]
# try to get the font's real name
cb = wintypes.DWORD()
if gdi32.GetFontResourceInfoW(filename, ctypes.byref(cb), None,
GFRI_DESCRIPTION):
buf = (ctypes.c_wchar * cb.value)()
if gdi32.GetFontResourceInfoW(filename, ctypes.byref(cb), buf,
GFRI_DESCRIPTION):
fontname = buf.value
is_truetype = wintypes.BOOL()
cb.value = ctypes.sizeof(is_truetype)
gdi32.GetFontResourceInfoW(filename, ctypes.byref(cb),
ctypes.byref(is_truetype), GFRI_ISTRUETYPE)
if is_truetype:
fontname += ' (TrueType)'
with winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, FONTS_REG_PATH, 0,
winreg.KEY_SET_VALUE) as key:
winreg.SetValueEx(key, fontname, 0, winreg.REG_SZ, filename)
本质上,使用 Windows 的 gdi32
API 中的 AddFontResourceW
加载字体并使用 SendMessage
API 通知正在运行的程序 - 这将使字体在运行的程序中可见。
要将字体永久安装到 Windows,您需要将字体文件复制到 Fonts 文件夹(C:\Windows\Fonts,或 %userprofile%\AppData\Local\Microsoft\Windows\Fonts for per-user 文件夹)和然后在注册表中的 HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Fonts
(或 HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts 为每个用户安装)添加一个键。