|
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.lowagie.text.pdf.BaseFont
com.lowagie.text.pdf.TrueTypeFont
class TrueTypeFont
Reads a Truetype font
| Nested Class Summary | |
|---|---|
protected static class |
TrueTypeFont.FontHeader
The components of table 'head'. |
protected static class |
TrueTypeFont.HorizontalHeader
The components of table 'hhea'. |
protected static class |
TrueTypeFont.WindowsMetrics
The components of table 'OS/2'. |
| Nested classes/interfaces inherited from class com.lowagie.text.pdf.BaseFont |
|---|
BaseFont.StreamFont |
| Field Summary | |
|---|---|
protected String[][] |
allNameEntries
All the names of the Names-Table |
protected int[][] |
bboxes
|
protected boolean |
cff
|
protected int |
cffLength
|
protected int |
cffOffset
|
protected HashMap |
cmap10
The map containing the code information for the table 'cmap', encoding 1.0. |
protected HashMap |
cmap31
The map containing the code information for the table 'cmap', encoding 3.1 in Unicode. |
(package private) static String[] |
codePages
The code pages possible for a True Type font. |
protected int |
directoryOffset
The offset from the start of the file to the table directory. |
protected String[][] |
familyName
The family name of the font |
protected String |
fileName
The file name. |
protected String |
fontName
The font name. |
protected String[][] |
fullName
The full name of the font |
protected int[] |
GlyphWidths
The width of the glyphs. |
protected TrueTypeFont.FontHeader |
head
The content of table 'head'. |
protected TrueTypeFont.HorizontalHeader |
hhea
The content of table 'hhea'. |
protected boolean |
isFixedPitch
true if all the glyphs have the same width. |
protected double |
italicAngle
The italic angle. |
protected boolean |
justNames
|
protected IntHashtable |
kerning
The map containing the kerning information. |
protected TrueTypeFont.WindowsMetrics |
os_2
The content of table 'OS/2'. |
protected RandomAccessFileOrArray |
rf
The file in use. |
protected String |
style
The style modifier |
protected HashMap |
tables
Contains the location of the several tables. |
protected String |
ttcIndex
The index for the TTC font. |
protected int |
underlinePosition
|
protected int |
underlineThickness
|
| Constructor Summary | |
|---|---|
protected |
TrueTypeFont()
This constructor is present to allow extending the class. |
(package private) |
TrueTypeFont(String ttFile,
String enc,
boolean emb,
byte[] ttfAfm)
|
(package private) |
TrueTypeFont(String ttFile,
String enc,
boolean emb,
byte[] ttfAfm,
boolean justNames)
Creates a new TrueType font. |
| Method Summary | |
|---|---|
protected void |
addRangeUni(HashMap longTag,
boolean includeMetrics,
boolean subsetp)
|
(package private) void |
checkCff()
|
protected static int[] |
compactRanges(ArrayList ranges)
|
(package private) void |
fillTables()
Reads the tables 'head', 'hhea', 'OS/2' and 'post' filling several variables. |
String[][] |
getAllNameEntries()
Gets all the entries of the Names-Table. |
(package private) String[][] |
getAllNames()
Extracts all the names of the names-Table |
(package private) String |
getBaseFont()
Gets the Postscript font name. |
String[] |
getCodePagesSupported()
Gets the code pages supported by the font. |
String[][] |
getFamilyFontName()
Gets the family name of the font. |
protected PdfDictionary |
getFontBaseType(PdfIndirectReference fontDescriptor,
String subsetPrefix,
int firstChar,
int lastChar,
byte[] shortTag)
Generates the font dictionary for this font. |
float |
getFontDescriptor(int key,
float fontSize)
Gets the font parameter identified by key. |
protected PdfDictionary |
getFontDescriptor(PdfIndirectReference fontStream,
String subsetPrefix,
PdfIndirectReference cidset)
Generates the font descriptor for this font. |
protected byte[] |
getFullFont()
|
String[][] |
getFullFontName()
Gets the full name of the font. |
protected int |
getGlyphWidth(int glyph)
Gets a glyph width. |
int |
getKerning(char char1,
char char2)
Gets the kerning between two Unicode chars. |
int[] |
getMetricsTT(int c)
Gets the glyph index and metrics for a character. |
(package private) String[][] |
getNames(int id)
Extracts the names of the font in all the languages available. |
String |
getPostscriptFontName()
Gets the postscript font name. |
protected int[] |
getRawCharBBox(int c,
String name)
|
(package private) int |
getRawWidth(int c,
String name)
Gets the width from the font according to the unicode char c. |
protected static String |
getTTCName(String name)
Gets the name from a composed TTC file name. |
boolean |
hasKernPairs()
Checks if the font has any kerning pairs. |
(package private) void |
process(byte[] ttfAfm)
Reads the font data. |
private void |
readBbox()
|
(package private) void |
readCMaps()
Reads the several maps from the table 'cmap'. |
(package private) HashMap |
readFormat0()
The information in the maps of the table 'cmap' is coded in several formats. |
(package private) HashMap |
readFormat4()
The information in the maps of the table 'cmap' is coded in several formats. |
(package private) HashMap |
readFormat6()
The information in the maps of the table 'cmap' is coded in several formats. |
protected void |
readGlyphWidths()
Reads the glyphs widths. |
(package private) void |
readKerning()
Reads the kerning information from the 'kern' table. |
protected String |
readStandardString(int length)
Reads a String from the font file as bytes using the Cp1252
encoding. |
protected String |
readUnicodeString(int length)
Reads a Unicode String from the font file. |
boolean |
setKerning(char char1,
char char2,
int kern)
Sets the kerning between two Unicode chars. |
void |
setPostscriptFontName(String name)
Sets the font name that will appear in the pdf font dictionary. |
(package private) void |
writeFont(PdfWriter writer,
PdfIndirectReference ref,
Object[] params)
Outputs to the writer the font dictionaries and streams. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
static final String[] codePages
protected boolean justNames
protected HashMap tables
int[2] where position 0
is the offset from the start of the file and position 1 is the length
of the table.
protected RandomAccessFileOrArray rf
protected String fileName
protected boolean cff
protected int cffOffset
protected int cffLength
protected int directoryOffset
protected String ttcIndex
String for a
TTF file.
protected String style
protected TrueTypeFont.FontHeader head
protected TrueTypeFont.HorizontalHeader hhea
protected TrueTypeFont.WindowsMetrics os_2
protected int[] GlyphWidths
protected int[][] bboxes
protected HashMap cmap10
int[2] where position 0
is the glyph number and position 1 is the glyph width normalized to 1000
units.
protected HashMap cmap31
The key is the code and the value is an int[2] where position 0
is the glyph number and position 1 is the glyph width normalized to 1000
units.
protected IntHashtable kerning
Integer where the top 16 bits
are the glyph number for the first character and the lower 16 bits are the
glyph number for the second character. The value is the amount of kerning in
normalized 1000 units as an Integer. This value is usually negative.
protected String fontName
protected String[][] fullName
protected String[][] allNameEntries
protected String[][] familyName
protected double italicAngle
-Math.atan2(hhea.caretSlopeRun, hhea.caretSlopeRise) * 180 / Math.PI
protected boolean isFixedPitch
true if all the glyphs have the same width.
protected int underlinePosition
protected int underlineThickness
| Constructor Detail |
|---|
protected TrueTypeFont()
TrueTypeFont(String ttFile,
String enc,
boolean emb,
byte[] ttfAfm)
throws DocumentException,
IOException
DocumentException
IOException
TrueTypeFont(String ttFile,
String enc,
boolean emb,
byte[] ttfAfm,
boolean justNames)
throws DocumentException,
IOException
ttFile - the location of the font on file. The file must end in '.ttf' or
'.ttc' but can have modifiers after the nameenc - the encoding to be applied to this fontemb - true if the font is to be embedded in the PDFttfAfm - the font as a byte array
DocumentException - the font is invalid
IOException - the font file could not be read| Method Detail |
|---|
protected static String getTTCName(String name)
name - the full name
void fillTables()
throws DocumentException,
IOException
DocumentException - the font is invalid
IOException - the font file could not be read
String getBaseFont()
throws DocumentException,
IOException
DocumentException - the font is invalid
IOException - the font file could not be read
String[][] getNames(int id)
throws DocumentException,
IOException
id - the name id to retrieve
DocumentException - on error
IOException - on error
String[][] getAllNames()
throws DocumentException,
IOException
DocumentException - on error
IOException - on errorvoid checkCff()
void process(byte[] ttfAfm)
throws DocumentException,
IOException
ttfAfm - the font as a byte array, possibly null
DocumentException - the font is invalid
IOException - the font file could not be read
protected String readStandardString(int length)
throws IOException
String from the font file as bytes using the Cp1252
encoding.
length - the length of bytes to read
String read
IOException - the font file could not be read
protected String readUnicodeString(int length)
throws IOException
String from the font file. Each character is
represented by two bytes.
length - the length of bytes to read. The String will have length/2
characters
String read
IOException - the font file could not be read
protected void readGlyphWidths()
throws DocumentException,
IOException
DocumentException - the font is invalid
IOException - the font file could not be readprotected int getGlyphWidth(int glyph)
glyph - the glyph to get the width of
private void readBbox()
throws DocumentException,
IOException
DocumentException
IOException
void readCMaps()
throws DocumentException,
IOException
DocumentException - the font is invalid
IOException - the font file could not be read
HashMap readFormat0()
throws IOException
HashMap representing this map
IOException - the font file could not be read
HashMap readFormat4()
throws IOException
HashMap representing this map
IOException - the font file could not be read
HashMap readFormat6()
throws IOException
HashMap representing this map
IOException - the font file could not be read
void readKerning()
throws IOException
IOException - the font file could not be read
public int getKerning(char char1,
char char2)
getKerning in class BaseFontchar1 - the first charchar2 - the second char
int getRawWidth(int c,
String name)
c.
If the name is null it's a symbolic font.
getRawWidth in class BaseFontc - the unicode charname - the glyph name
protected PdfDictionary getFontDescriptor(PdfIndirectReference fontStream,
String subsetPrefix,
PdfIndirectReference cidset)
subsetPrefix - the subset prefixfontStream - the indirect reference to a PdfStream containing the font or null
null
DocumentException - if there is an error
protected PdfDictionary getFontBaseType(PdfIndirectReference fontDescriptor,
String subsetPrefix,
int firstChar,
int lastChar,
byte[] shortTag)
subsetPrefix - the subset prefxfirstChar - the first valid characterlastChar - the last valid charactershortTag - a 256 bytes long byte array where each unused byte is represented by 0fontDescriptor - the indirect reference to a PdfDictionary containing the font descriptor or null
DocumentException - if there is an error
protected byte[] getFullFont()
throws IOException
IOExceptionprotected static int[] compactRanges(ArrayList ranges)
protected void addRangeUni(HashMap longTag,
boolean includeMetrics,
boolean subsetp)
void writeFont(PdfWriter writer,
PdfIndirectReference ref,
Object[] params)
throws DocumentException,
IOException
writeFont in class BaseFontwriter - the writer for this documentref - the font indirect referenceparams - several parameters that depend on the font type
IOException - on error
DocumentException - error in generating the object
public float getFontDescriptor(int key,
float fontSize)
key. Valid values
for key are ASCENT, CAPHEIGHT, DESCENT
and ITALICANGLE.
getFontDescriptor in class BaseFontkey - the parameter to be extractedfontSize - the font size in points
public int[] getMetricsTT(int c)
c - the character
int array with {glyph index, width}public String getPostscriptFontName()
getPostscriptFontName in class BaseFontpublic String[] getCodePagesSupported()
getCodePagesSupported in class BaseFontpublic String[][] getFullFontName()
getFullFontName in class BaseFontpublic String[][] getAllNameEntries()
getAllNameEntries in class BaseFontpublic String[][] getFamilyFontName()
getFamilyFontName in class BaseFontpublic boolean hasKernPairs()
hasKernPairs in class BaseFonttrue if the font has any kerning pairspublic void setPostscriptFontName(String name)
setPostscriptFontName in class BaseFontname - the new font name
public boolean setKerning(char char1,
char char2,
int kern)
setKerning in class BaseFontchar1 - the first charchar2 - the second charkern - the kerning to apply in normalized 1000 units
true if the kerning was applied, false otherwise
protected int[] getRawCharBBox(int c,
String name)
getRawCharBBox in class BaseFont
|
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||