2017-05-18 15:01:05 +09:00
|
|
|
from __future__ import print_function, division, absolute_import
|
|
|
|
from fontTools.cffLib import PrivateDict
|
|
|
|
from fontTools.cffLib.specializer import stringToProgram
|
|
|
|
from fontTools.misc.psCharStrings import T2CharString
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
|
|
|
|
class T2CharStringTest(unittest.TestCase):
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def stringToT2CharString(cls, string):
|
|
|
|
return T2CharString(program=stringToProgram(string), private=PrivateDict())
|
|
|
|
|
2017-08-01 10:35:39 +09:00
|
|
|
def test_calcBounds_empty(self):
|
2017-05-18 15:01:05 +09:00
|
|
|
cs = self.stringToT2CharString("endchar")
|
2018-01-26 16:53:04 -08:00
|
|
|
bounds = cs.calcBounds(None)
|
2017-08-01 10:35:39 +09:00
|
|
|
self.assertEqual(bounds, None)
|
2017-05-18 15:01:05 +09:00
|
|
|
|
2017-08-01 10:35:39 +09:00
|
|
|
def test_calcBounds_line(self):
|
2017-05-18 15:01:05 +09:00
|
|
|
cs = self.stringToT2CharString("100 100 rmoveto 40 10 rlineto -20 50 rlineto endchar")
|
2018-01-26 16:53:04 -08:00
|
|
|
bounds = cs.calcBounds(None)
|
2017-08-01 10:35:39 +09:00
|
|
|
self.assertEqual(bounds, (100, 100, 140, 160))
|
2017-05-18 15:01:05 +09:00
|
|
|
|
2017-08-01 10:35:39 +09:00
|
|
|
def test_calcBounds_curve(self):
|
2017-05-18 15:01:05 +09:00
|
|
|
cs = self.stringToT2CharString("100 100 rmoveto -50 -150 200 0 -50 150 rrcurveto endchar")
|
2018-01-26 16:53:04 -08:00
|
|
|
bounds = cs.calcBounds(None)
|
2017-08-01 10:35:39 +09:00
|
|
|
self.assertEqual(bounds, (91.90524980688875, -12.5, 208.09475019311125, 100))
|
2017-05-18 15:01:05 +09:00
|
|
|
|
2018-06-27 13:04:56 -07:00
|
|
|
def test_charstring_bytecode_optimization(self):
|
|
|
|
cs = self.stringToT2CharString(
|
|
|
|
"100.0 100 rmoveto -50.0 -150 200.5 0.0 -50 150 rrcurveto endchar")
|
|
|
|
cs.isCFF2 = False
|
|
|
|
cs.private._isCFF2 = False
|
|
|
|
cs.compile()
|
|
|
|
cs.decompile()
|
|
|
|
self.assertEqual(
|
|
|
|
cs.program, [100, 100, 'rmoveto', -50, -150, 200.5, 0, -50, 150,
|
|
|
|
'rrcurveto', 'endchar'])
|
|
|
|
|
|
|
|
cs2 = self.stringToT2CharString(
|
|
|
|
"100.0 rmoveto -50.0 -150 200.5 0.0 -50 150 rrcurveto")
|
|
|
|
cs2.isCFF2 = True
|
|
|
|
cs2.private._isCFF2 = True
|
|
|
|
cs2.compile(isCFF2=True)
|
|
|
|
cs2.decompile()
|
|
|
|
self.assertEqual(
|
|
|
|
cs2.program, [100, 'rmoveto', -50, -150, 200.5, 0, -50, 150,
|
|
|
|
'rrcurveto'])
|
|
|
|
|
2017-05-18 15:01:05 +09:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
import sys
|
|
|
|
sys.exit(unittest.main())
|