• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1from fontTools.misc.testTools import FakeFont, getXML, parseXML
2from fontTools.misc.textTools import deHexStr, hexStr
3from fontTools.ttLib import newTable
4import unittest
5
6
7# Example: Format 0 Optical Bounds Table
8# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6opbd.html
9OPBD_FORMAT_0_DATA = deHexStr(
10    "0001 0000 0000 "  #  0: Version=1.0, Format=0
11    "0006 0004 0002 "  #  6: LookupFormat=6, UnitSize=4, NUnits=2
12    "0008 0001 0000 "  # 12: SearchRange=8, EntrySelector=1, RangeShift=0
13    "000A 001E "  # 18: Glyph=10(=C), OffsetOfOpticalBoundsDeltas=30
14    "002B 0026 "  # 22: Glyph=43(=A), OffsetOfOpticalBoundsDeltas=38
15    "FFFF 0000 "  # 26: Glyph=<end>, OffsetOfOpticalBoundsDeltas=0
16    "FFCE 0005 0037 FFFB "  # 30: Bounds[C].Left=-50 .Top=5 .Right=55 .Bottom=-5
17    "FFF6 000F 0000 0000 "  # 38: Bounds[A].Left=-10 .Top=15 .Right=0 .Bottom=0
18)  # 46: <end>
19assert len(OPBD_FORMAT_0_DATA) == 46
20
21
22OPBD_FORMAT_0_XML = [
23    '<Version value="0x00010000"/>',
24    '<OpticalBounds Format="0">',
25    "  <OpticalBoundsDeltas>",
26    '    <Lookup glyph="A">',
27    '      <Left value="-10"/>',
28    '      <Top value="15"/>',
29    '      <Right value="0"/>',
30    '      <Bottom value="0"/>',
31    "    </Lookup>",
32    '    <Lookup glyph="C">',
33    '      <Left value="-50"/>',
34    '      <Top value="5"/>',
35    '      <Right value="55"/>',
36    '      <Bottom value="-5"/>',
37    "    </Lookup>",
38    "  </OpticalBoundsDeltas>",
39    "</OpticalBounds>",
40]
41
42
43# Example: Format 1 Optical Bounds Table
44# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6opbd.html
45OPBD_FORMAT_1_DATA = deHexStr(
46    "0001 0000 0001 "  #  0: Version=1.0, Format=1
47    "0006 0004 0002 "  #  6: LookupFormat=6, UnitSize=4, NUnits=2
48    "0008 0001 0000 "  # 12: SearchRange=8, EntrySelector=1, RangeShift=0
49    "000A 001E "  # 18: Glyph=10(=C), OffsetOfOpticalBoundsPoints=30
50    "002B 0026 "  # 22: Glyph=43(=A), OffsetOfOpticalBoundsPoints=38
51    "FFFF 0000 "  # 26: Glyph=<end>, OffsetOfOpticalBoundsPoints=0
52    "0024 0025 0026 0027 "  # 30: Bounds[C].Left=36 .Top=37 .Right=38 .Bottom=39
53    "0020 0029 FFFF FFFF "  # 38: Bounds[A].Left=32 .Top=41 .Right=-1 .Bottom=-1
54)  # 46: <end>
55assert len(OPBD_FORMAT_1_DATA) == 46
56
57
58OPBD_FORMAT_1_XML = [
59    '<Version value="0x00010000"/>',
60    '<OpticalBounds Format="1">',
61    "  <OpticalBoundsPoints>",
62    '    <Lookup glyph="A">',
63    '      <Left value="32"/>',
64    '      <Top value="41"/>',
65    '      <Right value="-1"/>',
66    '      <Bottom value="-1"/>',
67    "    </Lookup>",
68    '    <Lookup glyph="C">',
69    '      <Left value="36"/>',
70    '      <Top value="37"/>',
71    '      <Right value="38"/>',
72    '      <Bottom value="39"/>',
73    "    </Lookup>",
74    "  </OpticalBoundsPoints>",
75    "</OpticalBounds>",
76]
77
78
79# This is the content of the Optical Bounds table in AppleChancery.ttf,
80# font version 8.0d1e1 of 2013-02-06. An early version of fontTools
81# was crashing when trying to decompile this table.
82# https://github.com/fonttools/fonttools/issues/1031
83OPBD_APPLE_CHANCERY_DATA = deHexStr(
84    "0001 0000 0000 "  #   0: Version=1.0, Format=0
85    "0004 0006 0011 "  #   6: LookupFormat=4, UnitSize=6, NUnits=17
86    "0060 0004 0006 "  #  12: SearchRange=96, EntrySelector=4, RangeShift=6
87    "017d 017d 0072 "  #  18: Seg[0].LastGlyph=381, FirstGlyph=381, Off=114(+6)
88    "0183 0180 0074 "  #  24: Seg[1].LastGlyph=387, FirstGlyph=384, Off=116(+6)
89    "0186 0185 007c "  #  30: Seg[2].LastGlyph=390, FirstGlyph=389, Off=124(+6)
90    "018f 018b 0080 "  #  36: Seg[3].LastGlyph=399, FirstGlyph=395, Off=128(+6)
91    "01a0 0196 008a "  #  42: Seg[4].LastGlyph=416, FirstGlyph=406, Off=138(+6)
92    "01a5 01a3 00a0 "  #  48: Seg[5].LastGlyph=421, FirstGlyph=419, Off=160(+6)
93    "01aa 01aa 00a6 "  #  54: Seg[6].LastGlyph=426, FirstGlyph=426, Off=166(+6)
94    "01ac 01ac 00a8 "  #  60: Seg[7].LastGlyph=428, FirstGlyph=428, Off=168(+6)
95    "01fb 01f1 00aa "  #  66: Seg[8].LastGlyph=507, FirstGlyph=497, Off=170(+6)
96    "0214 0209 00c0 "  #  72: Seg[9].LastGlyph=532, FirstGlyph=521, Off=192(+6)
97    "021d 0216 00d8 "  #  78: Seg[10].LastGlyph=541, FirstGlyph=534, Off=216(+6)
98    "0222 0220 00e8 "  #  84: Seg[11].LastGlyph=546, FirstGlyph=544, Off=232(+6)
99    "0227 0225 00ee "  #  90: Seg[12].LastGlyph=551, FirstGlyph=549, Off=238(+6)
100    "0229 0229 00f4 "  #  96: Seg[13].LastGlyph=553, FirstGlyph=553, Off=244(+6)
101    "023b 023b 00f6 "  # 102: Seg[14].LastGlyph=571, FirstGlyph=571, Off=246(+6)
102    "023e 023e 00f8 "  # 108: Seg[15].LastGlyph=574, FirstGlyph=574, Off=248(+6)
103    "ffff ffff 00fa "  # 114: Seg[16]=<end>
104    "0100 0108 0110 0118 0120 0128 0130 0138 0140 0148 0150 0158 "
105    "0160 0168 0170 0178 0180 0188 0190 0198 01a0 01a8 01b0 01b8 "
106    "01c0 01c8 01d0 01d8 01e0 01e8 01f0 01f8 0200 0208 0210 0218 "
107    "0220 0228 0230 0238 0240 0248 0250 0258 0260 0268 0270 0278 "
108    "0280 0288 0290 0298 02a0 02a8 02b0 02b8 02c0 02c8 02d0 02d8 "
109    "02e0 02e8 02f0 02f8 0300 0308 0310 0318 fd98 0000 0000 0000 "
110    "fdbc 0000 0000 0000 fdbc 0000 0000 0000 fdbf 0000 0000 0000 "
111    "fdbc 0000 0000 0000 fd98 0000 0000 0000 fda9 0000 0000 0000 "
112    "fd98 0000 0000 0000 fd98 0000 0000 0000 fd98 0000 0000 0000 "
113    "0000 0000 0205 0000 0000 0000 0205 0000 0000 0000 02a4 0000 "
114    "0000 0000 027e 0000 0000 0000 02f4 0000 0000 0000 02a4 0000 "
115    "0000 0000 0365 0000 0000 0000 0291 0000 0000 0000 0291 0000 "
116    "0000 0000 026a 0000 0000 0000 02b8 0000 0000 0000 02cb 0000 "
117    "0000 0000 02a4 0000 0000 0000 01a9 0000 0000 0000 0244 0000 "
118    "0000 0000 02a4 0000 0000 0000 02cb 0000 0000 0000 0244 0000 "
119    "0000 0000 0307 0000 0000 0000 0307 0000 0000 0000 037f 0000 "
120    "0000 0000 0307 0000 0000 0000 0307 0000 0000 0000 0307 0000 "
121    "0000 0000 0307 0000 0000 0000 0307 0000 0000 0000 03e3 0000 "
122    "0000 0000 030c 0000 0000 0000 0307 0000 fe30 0000 0000 0000 "
123    "fe7e 0000 0000 0000 fe91 0000 0000 0000 fe6a 0000 0000 0000 "
124    "fe6a 0000 0000 0000 fecb 0000 0000 0000 fe6a 0000 0000 0000 "
125    "fe7e 0000 0000 0000 fea4 0000 0000 0000 fe7e 0000 0000 0000 "
126    "fe44 0000 0000 0000 fea4 0000 0000 0000 feb8 0000 0000 0000 "
127    "fe7e 0000 0000 0000 fe5e 0000 0000 0000 fe37 0000 0000 0000 "
128    "fe37 0000 0000 0000 fcbd 0000 0000 0000 fd84 0000 0000 0000 "
129    "fd98 0000 0000 0000 fd82 0000 0000 0000 fcbd 0000 0000 0000 "
130    "fd84 0000 0000 0000 fcbd 0000 0000 0000 fcbd 0000 0000 0000 "
131    "fe72 0000 0000 0000 ff9d 0000 0000 0000 0000 0000 032f 0000 "
132    "0000 0000 03ba 0000 "
133)
134assert len(OPBD_APPLE_CHANCERY_DATA) == 800
135
136
137class OPBDTest(unittest.TestCase):
138    @classmethod
139    def setUpClass(cls):
140        cls.maxDiff = None
141        glyphs = [".notdef"] + ["X.alt%d" for g in range(1, 50)]
142        glyphs[10] = "C"
143        glyphs[43] = "A"
144        cls.font = FakeFont(glyphs)
145
146    def test_decompile_toXML_format0(self):
147        table = newTable("opbd")
148        table.decompile(OPBD_FORMAT_0_DATA, self.font)
149        self.assertEqual(getXML(table.toXML), OPBD_FORMAT_0_XML)
150
151    def test_compile_fromXML_format0(self):
152        table = newTable("opbd")
153        for name, attrs, content in parseXML(OPBD_FORMAT_0_XML):
154            table.fromXML(name, attrs, content, font=self.font)
155        self.assertEqual(hexStr(table.compile(self.font)), hexStr(OPBD_FORMAT_0_DATA))
156
157    def test_decompile_toXML_format1(self):
158        table = newTable("opbd")
159        table.decompile(OPBD_FORMAT_1_DATA, self.font)
160        self.assertEqual(getXML(table.toXML), OPBD_FORMAT_1_XML)
161
162    def test_compile_fromXML_format1(self):
163        table = newTable("opbd")
164        for name, attrs, content in parseXML(OPBD_FORMAT_1_XML):
165            table.fromXML(name, attrs, content, font=self.font)
166        self.assertEqual(hexStr(table.compile(self.font)), hexStr(OPBD_FORMAT_1_DATA))
167
168    def test_decompile_AppleChancery(self):
169        # Make sure we do not crash when decompiling the 'opbd' table of
170        # AppleChancery.ttf. https://github.com/fonttools/fonttools/issues/1031
171        table = newTable("opbd")
172        table.decompile(OPBD_APPLE_CHANCERY_DATA, self.font)
173        self.assertIn('<OpticalBounds Format="0">', getXML(table.toXML))
174
175
176if __name__ == "__main__":
177    import sys
178
179    sys.exit(unittest.main())
180