/* Pretty print. */
final ByteArrayInputStream inputStream = new ByteArrayInputStream(
serializedDOM);
final InputSource prettyInput = new InputSource(inputStream);
final FOrayPretty pretty = new FOrayPretty(prettyInput, output,
null);
try {
pretty.start();
} catch (final IOException e) {
throw new FontException(e);
} catch (final SAXException e) {
throw new FontException(e);
} catch (final ParserConfigurationException e) {