7 lines
184 B
Python
Executable File
7 lines
184 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
from mapnik import register_fonts, FontEngine
|
|
custom_fonts_dir = '/usr/share/fonts'
|
|
register_fonts(custom_fonts_dir)
|
|
for face in FontEngine.face_names(): print face
|