Uploaded image for project: 'PDFBox'
  1. PDFBox
  2. PDFBOX-1657

glyph contours missing

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 1.8.2
    • 1.8.3, 2.0.0
    • FontBox
    • None
    • Windows

    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])

      { continue; }

      Should be changed to:

      // don't repeat glyphs
      if (currentOffset == offsets[i])

      { glyphs[i] = glyphs[i-1]; continue; }

      Attachments

        Issue Links

          Activity

            People

              lehmi Andreas Lehmkühler
              kuleis Kurt Leistentritt
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: