14 lines
272 B
Python
14 lines
272 B
Python
|
# robothon06
|
||
|
# get a particular glyph
|
||
|
|
||
|
from robofab.world import CurrentFont
|
||
|
font = CurrentFont()
|
||
|
|
||
|
font.info.familyName = "myFamilyName"
|
||
|
font.info.styleName = "myStyleName"
|
||
|
|
||
|
font.info.autoNaming()
|
||
|
|
||
|
print font.info.fullName
|
||
|
print font.info.fontName
|
||
|
print font.info.fondName
|