Class CFFEncoding

java.lang.Object
org.apache.fontbox.encoding.Encoding
org.apache.fontbox.cff.CFFEncoding
Direct Known Subclasses:
CFFExpertEncoding, CFFStandardEncoding

public abstract class CFFEncoding extends Encoding
A CFF Type 1-equivalent Encoding. An encoding is an array of codes associated with some or all glyphs in a font
Author:
John Hewson
  • Method Details

    • getName

      public String getName(int code)
      Returns the name of the glyph for the given character code.
      Overrides:
      getName in class Encoding
      Parameters:
      code - character code
      Returns:
      PostScript glyph name
    • add

      public void add(int code, int sid, String name)
      Adds a new code/SID combination to the encoding.
      Parameters:
      code - the given code
      sid - the given SID
    • add

      protected void add(int code, int sid)
      For use by subclasses only.