当前位置: 首页>>代码示例>>Python>>正文


Python Font.newLayer方法代码示例

本文整理汇总了Python中defcon.Font.newLayer方法的典型用法代码示例。如果您正苦于以下问题:Python Font.newLayer方法的具体用法?Python Font.newLayer怎么用?Python Font.newLayer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在defcon.Font的用法示例。


在下文中一共展示了Font.newLayer方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_delitem

# 需要导入模块: from defcon import Font [as 别名]
# 或者: from defcon.Font import newLayer [as 别名]
    def test_delitem(self):
        font = Font(makeTestFontCopy())
        path = os.path.join(font.path, "glyphs.public.background")
        self.assertTrue(os.path.exists(path))
        layers = font.layers
        del layers["public.background"]
        layers.dirty = True
        self.assertEqual(layers.layerOrder, ["public.default", "Layer 1"])
        self.assertNotIn("public.background", layers)

        self.assertEqual(len(layers), 2)
        with self.assertRaisesRegex(KeyError, "public.background"):
            layers["public.background"]
        font.save()
        path = os.path.join(font.path, "glyphs.public.background")
        self.assertFalse(os.path.exists(path))
        tearDownTestFontCopy()

        font = Font(makeTestFontCopy())
        path = os.path.join(font.path, "glyphs.public.background")
        del font.layers["public.background"]
        layer = font.newLayer("public.background")
        layer.newGlyph("B")
        font.save()
        self.assertFalse(os.path.exists(os.path.join(path, "A_.glif")))
        self.assertTrue(os.path.exists(os.path.join(path, "B_.glif")))
开发者ID:typesupply,项目名称:defcon,代码行数:28,代码来源:test_layerSet.py

示例2: test_newLayer

# 需要导入模块: from defcon import Font [as 别名]
# 或者: from defcon.Font import newLayer [as 别名]
 def test_newLayer(self):
     font = Font(getTestFontPath())
     layers = font.layers
     layer = font.newLayer("Test")
     self.assertTrue(layer.dirty)
     self.assertTrue(layers.dirty)
     self.assertTrue(font.dirty)
     self.assertEqual(
         layers.layerOrder,
         ["public.default", "public.background", "Layer 1", "Test"])
开发者ID:typesupply,项目名称:defcon,代码行数:12,代码来源:test_layerSet.py


注:本文中的defcon.Font.newLayer方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。