| java.lang.Object de.intarsys.pdf.font.CID
All known Subclasses: de.intarsys.pdf.font.CIDSelectorCID, de.intarsys.pdf.font.CIDSelectorName, de.intarsys.pdf.font.CIDSelectorCode,
CID | abstract public class CID (Code) | | A selector for a character within a font (Character ID).
A character may be identified by different means (name, index, unicode..).
|
Field Summary | |
final public static CID | Notdef The special CID for undefined glyphs. |
Constructor Summary | |
protected | CID() |
Method Summary | |
public int | getFontNumber() The font number referenced by this cid. | abstract public int | getLength() The number of bytes this CID occupies. | abstract public int | getValue() The integer equivalent of the cid. |
Notdef | final public static CID Notdef(Code) | | The special CID for undefined glyphs.
|
getFontNumber | public int getFontNumber()(Code) | | The font number referenced by this cid.
In PDF this is always 0.
The font number referenced by this cid. |
getLength | abstract public int getLength()(Code) | | The number of bytes this CID occupies.
The number of bytes this CID occupies. |
getValue | abstract public int getValue()(Code) | | The integer equivalent of the cid.
A CID must not be larger than the platform integer size.
The integer equivalent of the cid. |
|
|