public byte[] getContentsPostScriptHex() {
final Font font = this.getFontUse().getFont();
if (! (font instanceof FSType1Font)) {
return null;
}
final FSType1Font type1Font = (FSType1Font) font;
final Type1File pfb = type1Font.getType1File();
try {
return pfb.getByteArray(PsFilterType.ASCII_HEX);
} catch (final IOException e) {
this.getLogger().fatal("Failed to get contents for "
+ font.getPostscriptName() + ": " + e.getMessage());