/**
* Parses the font contents for needed information.
*/
public void parseFont() {
final TTFFile ttfFile = (TTFFile)
getRegisteredFont().getFontFileReader().createFontFile();
final String fontName = getRegisteredFont().getTTCName();
try {
this.ttf = ttfFile.getTTFFont(fontName);
} catch (final IOException e) {
getLogger().error(e.getMessage());
}
/*