{
LOG.warn("Changing font on <" + string + "> from <"
+ awtFont.getName() + "> to the default font");
awtFont = Font.decode(null).deriveFont(1f);
}
glyphs = awtFont.createGlyphVector(frc, string);
}
Graphics2D g2d = (Graphics2D)g;
g2d.setRenderingHint( RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON );
writeFont(g2d, at, x, y, glyphs);
}