*/
@Override
public LineMetrics getLineMetrics(Font font, CharacterIterator ci,
int begin, int limit, FontRenderContext rc) {
BDFFont bdfFont = getCompatibleFont(font);
BDFMetrics fm = bdfFont.getContainer().getFontMetrics();
float ascent = fm.getAscent();
float descent = fm.getDescent();
float leading = fm.getLeading();
float height = fm.getHeight();
// TODO find these metrics
int baselineIndex = 0;
float[] baselineOffsets = new float[]{0f};
float strikethroughOffset = 0;