Package com.itextpdf.io.font.cmap
Class CMapToUnicode
java.lang.Object
com.itextpdf.io.font.cmap.AbstractCMap
com.itextpdf.io.font.cmap.CMapToUnicode
This class represents a CMap file.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncom.itextpdf.io.util.IntHashtablestatic CMapToUnicodecreateToUnicodeCmap(FontEncoding fontEncoding) Creates a ToUnicode CMap from the given font encoding.getCodes()Returns a list containing sequential pairs of code space beginning and endings: (begincodespacerange1, endcodespacerange1, begincodespacerange2, endcodespacerange1, ...)static CMapToUnicodebooleanThis will tell if this cmap has any two byte mappings.char[]lookup(byte[] code) char[]lookup(byte[] code, int offset, int length) This will perform a lookup into the map.char[]lookup(int code) Methods inherited from class com.itextpdf.io.font.cmap.AbstractCMap
decodeStringToByte, getName, getOrdering, getRegistry, getSupplement, toUnicodeString
-
Field Details
-
EMPTY_CMAP
-
-
Constructor Details
-
CMapToUnicode
public CMapToUnicode()Creates a new instance of CMap.
-
-
Method Details
-
getIdentity
-
createToUnicodeCmap
Creates a ToUnicode CMap from the given font encoding.- Parameters:
-
fontEncoding- the font encoding - Returns:
- the ToUnicode CMap
-
hasByteMappings
public boolean hasByteMappings()This will tell if this cmap has any two byte mappings.- Returns:
-
trueIf there are any two byte mappings,falseotherwise
-
lookup
public char[] lookup(byte[] code, int offset, int length) This will perform a lookup into the map.- Parameters:
-
code- the code used to lookup -
offset- the offset into the byte array -
length- the length of the data we are getting - Returns:
- the string that matches the lookup
-
lookup
public char[] lookup(byte[] code) -
lookup
public char[] lookup(int code) -
getCodes
-
createDirectMapping
public com.itextpdf.io.util.IntHashtable createDirectMapping() -
createReverseMapping
-
getCodeSpaceRanges
Returns a list containing sequential pairs of code space beginning and endings: (begincodespacerange1, endcodespacerange1, begincodespacerange2, endcodespacerange1, ...)- Returns:
-
list of
byte[]that contain code space ranges
-