├── .coveragerc ├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── fonts ├── Zebrawood-Dots.otf ├── Zebrawood-Fill.otf ├── Zebrawood-Shadow.otf ├── Zebrawood.otf └── test.html ├── imgs ├── step1.png └── step2.png ├── lib └── opentypesvg │ ├── addsvg.py │ ├── dumpsvg.py │ ├── fonts2svg.py │ └── utils.py ├── pytest.ini ├── setup.py └── tests ├── conftest.py ├── dumpsvg_test.py ├── fixtures ├── 1.ttf ├── 12.ttf ├── 1234.ttf ├── 13.ttf ├── 14.ttf ├── 2.ttf ├── 23.ttf ├── 24.ttf ├── 3.ttf ├── 34.ttf ├── 4.ttf ├── A.svg ├── Y.svg ├── Z.svg ├── aA.ttf ├── ab.ttf ├── b.svg ├── bc.ttf ├── blank_glyph.ttf ├── cd.ttf ├── no_glyf_table.ttf └── no_head_table.ttf ├── fonts2svg_test.py ├── options_test.py └── shared_utils_test.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/README.md -------------------------------------------------------------------------------- /fonts/Zebrawood-Dots.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/fonts/Zebrawood-Dots.otf -------------------------------------------------------------------------------- /fonts/Zebrawood-Fill.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/fonts/Zebrawood-Fill.otf -------------------------------------------------------------------------------- /fonts/Zebrawood-Shadow.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/fonts/Zebrawood-Shadow.otf -------------------------------------------------------------------------------- /fonts/Zebrawood.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/fonts/Zebrawood.otf -------------------------------------------------------------------------------- /fonts/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/fonts/test.html -------------------------------------------------------------------------------- /imgs/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/imgs/step1.png -------------------------------------------------------------------------------- /imgs/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/imgs/step2.png -------------------------------------------------------------------------------- /lib/opentypesvg/addsvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/lib/opentypesvg/addsvg.py -------------------------------------------------------------------------------- /lib/opentypesvg/dumpsvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/lib/opentypesvg/dumpsvg.py -------------------------------------------------------------------------------- /lib/opentypesvg/fonts2svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/lib/opentypesvg/fonts2svg.py -------------------------------------------------------------------------------- /lib/opentypesvg/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/lib/opentypesvg/utils.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/dumpsvg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/dumpsvg_test.py -------------------------------------------------------------------------------- /tests/fixtures/1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/1.ttf -------------------------------------------------------------------------------- /tests/fixtures/12.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/12.ttf -------------------------------------------------------------------------------- /tests/fixtures/1234.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/1234.ttf -------------------------------------------------------------------------------- /tests/fixtures/13.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/13.ttf -------------------------------------------------------------------------------- /tests/fixtures/14.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/14.ttf -------------------------------------------------------------------------------- /tests/fixtures/2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/2.ttf -------------------------------------------------------------------------------- /tests/fixtures/23.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/23.ttf -------------------------------------------------------------------------------- /tests/fixtures/24.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/24.ttf -------------------------------------------------------------------------------- /tests/fixtures/3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/3.ttf -------------------------------------------------------------------------------- /tests/fixtures/34.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/34.ttf -------------------------------------------------------------------------------- /tests/fixtures/4.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/4.ttf -------------------------------------------------------------------------------- /tests/fixtures/A.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/A.svg -------------------------------------------------------------------------------- /tests/fixtures/Y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/Y.svg -------------------------------------------------------------------------------- /tests/fixtures/Z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/Z.svg -------------------------------------------------------------------------------- /tests/fixtures/aA.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/aA.ttf -------------------------------------------------------------------------------- /tests/fixtures/ab.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/ab.ttf -------------------------------------------------------------------------------- /tests/fixtures/b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/b.svg -------------------------------------------------------------------------------- /tests/fixtures/bc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/bc.ttf -------------------------------------------------------------------------------- /tests/fixtures/blank_glyph.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/blank_glyph.ttf -------------------------------------------------------------------------------- /tests/fixtures/cd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/cd.ttf -------------------------------------------------------------------------------- /tests/fixtures/no_glyf_table.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/no_glyf_table.ttf -------------------------------------------------------------------------------- /tests/fixtures/no_head_table.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fixtures/no_head_table.ttf -------------------------------------------------------------------------------- /tests/fonts2svg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/fonts2svg_test.py -------------------------------------------------------------------------------- /tests/options_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/options_test.py -------------------------------------------------------------------------------- /tests/shared_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-type-tools/opentype-svg/HEAD/tests/shared_utils_test.py --------------------------------------------------------------------------------