本文整理汇总了Python中fontTools.ttLib.tables._f_v_a_r.NamedInstance.flags方法的典型用法代码示例。如果您正苦于以下问题:Python NamedInstance.flags方法的具体用法?Python NamedInstance.flags怎么用?Python NamedInstance.flags使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类fontTools.ttLib.tables._f_v_a_r.NamedInstance
的用法示例。
在下文中一共展示了NamedInstance.flags方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_toXML_withoutPostScriptName
# 需要导入模块: from fontTools.ttLib.tables._f_v_a_r import NamedInstance [as 别名]
# 或者: from fontTools.ttLib.tables._f_v_a_r.NamedInstance import flags [as 别名]
def test_toXML_withoutPostScriptName(self):
font = MakeFont()
inst = NamedInstance()
inst.flags = 0xABC
inst.subfamilyNameID = AddName(font, "Light Condensed").nameID
inst.coordinates = {"wght": 0.7, "wdth": 0.5}
writer = XMLWriter(BytesIO())
inst.toXML(writer, font)
self.assertEqual([
'',
'<!-- Light Condensed -->',
'<NamedInstance flags="0xABC" subfamilyNameID="%s">' %
inst.subfamilyNameID,
'<coord axis="wght" value="0.7"/>',
'<coord axis="wdth" value="0.5"/>',
'</NamedInstance>'
], xml_lines(writer))
示例2: test_toXML
# 需要导入模块: from fontTools.ttLib.tables._f_v_a_r import NamedInstance [as 别名]
# 或者: from fontTools.ttLib.tables._f_v_a_r.NamedInstance import flags [as 别名]
def test_toXML(self):
font = MakeFont()
inst = NamedInstance()
inst.nameID = AddName(font, "Light Condensed").nameID
inst.flags = 0x1234
inst.coordinates = {"wght": 0.7, "wdth": 0.5}
writer = XMLWriter(StringIO())
inst.toXML(writer, font)
self.assertEqual(
[
"",
"<!-- Light Condensed -->",
'<NamedInstance flags="00010010 00110100" nameID="%s">' % inst.nameID,
'<coord axis="wght" value="0.7"/>',
'<coord axis="wdth" value="0.5"/>',
"</NamedInstance>",
],
xml_lines(writer),
)
示例3: test_compile
# 需要导入模块: from fontTools.ttLib.tables._f_v_a_r import NamedInstance [as 别名]
# 或者: from fontTools.ttLib.tables._f_v_a_r.NamedInstance import flags [as 别名]
def test_compile(self):
inst = NamedInstance()
inst.nameID = 345
inst.flags = 0x1234
inst.coordinates = {"wght": 0.7, "wdth": 0.5}
self.assertEqual(FVAR_INSTANCE_DATA, inst.compile(["wght", "wdth"]))