36
36
from numbers import Number
37
37
import os
38
38
from pathlib import Path
39
+ import plistlib
39
40
import re
40
41
import subprocess
41
42
import sys
@@ -261,6 +262,14 @@ def _get_fontconfig_fonts():
261
262
return [Path (os .fsdecode (fname )) for fname in out .split (b'\n ' )]
262
263
263
264
265
+ @lru_cache
266
+ def _get_macos_fonts ():
267
+ """Cache and list the font paths known to ``system_profiler SPFontsDataType``."""
268
+ d , = plistlib .loads (
269
+ subprocess .check_output (["system_profiler" , "-xml" , "SPFontsDataType" ]))
270
+ return [Path (entry ["path" ]) for entry in d ["_items" ]]
271
+
272
+
264
273
def findSystemFonts (fontpaths = None , fontext = 'ttf' ):
265
274
"""
266
275
Search for fonts in the specified font paths. If no paths are
@@ -279,6 +288,7 @@ def findSystemFonts(fontpaths=None, fontext='ttf'):
279
288
else :
280
289
installed_fonts = _get_fontconfig_fonts ()
281
290
if sys .platform == 'darwin' :
291
+ installed_fonts += _get_macos_fonts ()
282
292
fontpaths = [* X11FontDirectories , * OSXFontDirectories ]
283
293
else :
284
294
fontpaths = X11FontDirectories
@@ -1011,7 +1021,7 @@ class FontManager:
1011
1021
# Increment this version number whenever the font cache data
1012
1022
# format or behavior has changed and requires an existing font
1013
1023
# cache files to be rebuilt.
1014
- __version__ = 330
1024
+ __version__ = 390
1015
1025
1016
1026
def __init__ (self , size = None , weight = 'normal' ):
1017
1027
self ._version = self .__version__
0 commit comments