Convert the CFF drawing instructions into SVG drawing instructions
Not all CFF instructions are relevant for svg drawing. For instance the hints are not used because these are signals to the rasterizer. With SVG, the browser rasterizer will take care of the rasterization automatically. It cannot be influenced from SVG path instructions.
The functions in this module will automatically close the path.
glyph : List Charstring.Operation -> String
Convert a list of drawing operations into SVG path syntax instructions
The resulting string can be plugged into an svg d
attribute.