Package com.tom_roush.fontbox.ttf
Class TrueTypeCollection
- java.lang.Object
-
- com.tom_roush.fontbox.ttf.TrueTypeCollection
-
- All Implemented Interfaces:
Closeable,AutoCloseable
public class TrueTypeCollection extends Object implements Closeable
A TrueType Collection, now more properly known as a "Font Collection" as it may contain either TrueType or OpenType fonts.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceTrueTypeCollection.TrueTypeFontProcessorImplement the callback method to callprocessAllFonts(TrueTypeFontProcessor).
-
Constructor Summary
Constructors Constructor Description TrueTypeCollection(File file)Creates a new TrueTypeCollection from a .ttc file.TrueTypeCollection(InputStream stream)Creates a new TrueTypeCollection from a .ttc input stream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()TrueTypeFontgetFontByName(String name)Get a TT font from a collection.voidprocessAllFonts(TrueTypeCollection.TrueTypeFontProcessor trueTypeFontProcessor)Run the callback for each TT font in the collection.
-
-
-
Constructor Detail
-
TrueTypeCollection
public TrueTypeCollection(File file) throws IOException
Creates a new TrueTypeCollection from a .ttc file.- Parameters:
file- The TTC file.- Throws:
IOException- If the font could not be parsed.
-
TrueTypeCollection
public TrueTypeCollection(InputStream stream) throws IOException
Creates a new TrueTypeCollection from a .ttc input stream.- Parameters:
stream- A TTC input stream.- Throws:
IOException- If the font could not be parsed.
-
-
Method Detail
-
processAllFonts
public void processAllFonts(TrueTypeCollection.TrueTypeFontProcessor trueTypeFontProcessor) throws IOException
Run the callback for each TT font in the collection.- Parameters:
trueTypeFontProcessor- the object with the callback method.- Throws:
IOException
-
getFontByName
public TrueTypeFont getFontByName(String name) throws IOException
Get a TT font from a collection.- Parameters:
name- The postscript name of the font.- Returns:
- The found font, nor null if none is found.
- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException
-
-