Description
In class GlyphTable, method initData, contours are not set
if offset of glyph is the same as offset of previous glyph:
// don't repeat glyphs
if (currentOffset == offsets[i])
Should be changed to:
// don't repeat glyphs
if (currentOffset == offsets[i])
Attachments
Issue Links
- is depended upon by
-
PDFBOX-490 Pdf Printing of text from embedded fonts
- Closed