FontMetrics : Java Glossary

go to home page F words local find full screen, hide local find menu Google search web for more information on this topic jump to foot of page translate this page with Babelfish punctuation 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z (all) ©1996-2009 Roedy Green, Canadian Mind Products
FontMetrics
To find out how many pixels some text will take on the screen you need FontMetrics.stringWidth(String). The trick is you cannot use the FontMetrics( Font f ) constructor to get your FontMetrics object. You must use the Component.getFontMetrics(Font f) or the Graphics.getFontMetrics( Font f ) method. Unfortunately, you can’t get the FontMetrics object from the Font class alone, and then cache it along with the Font.

For measuring height, FontMetrics is quite crude. FontMetrics. getAscent, getHeight and getDescent are only approximate, and includes a of lot of white space. getHeight even includes the suggested leading to the next line.

For more accuracy, you need LineMetrics with takes a sample string of text and a FontRenderingContext. Even it so, it still includes a lot of white space. I don’t know if there is a way to get totally tight bounding box around some text, without rolling your own pixel based methods. LineMetrics is awkward to use. To get a dummy Graphics for FontMetrics, you could try Component. getGraphics(). If you are inside a paintComponent method, you can cast the Graphics object to a Graphics2D. If there is no GUI, you could create a dummy Graphics2D context like this:

...
BufferedImage bufferedImage =
new BufferedImage ( 2 /* dummy */,
                    2 /* dummy */,
                    BufferedImage.TYPE_4BYTE_ABGR_PRE );
Graphics2D g2d = ( Graphics2D)( bufferedImage.createGraphics() );
FontRenderContext fr = g2d.getFontRenderContext();
LineMetrics lm = font.getLineMetrics( sampleText, fr );
float ascent = lm.getAscent();
float descent = lm.getDescent();
float height = lm.getHeight();

Learning More

Sun’s Javadoc on FontMetrics class : available:
Graphics.getFontMetrics() gets you the FontMetrics of the current Font of the Graphics object.
Sun’s Javadoc on Graphics.getFontMetrics() : available:
Sun’s Javadoc on Component.getFontMetrics(Font font) : available:

CMP homejump to top You can get the freshest copy of this page from: or possibly from your local J: drive (Java virtual drive/mindprod.com website mirror)
http://mindprod.com/jgloss/fontmetrics.html J:\mindprod\jgloss\fontmetrics.html
CMP logofeedback Please email your feedback for publication, errors, omissions, typos, formatting errors, ambiguities, unclear wording, broken/redirected link reports, suggestions to improve this page or comments to Roedy Green : feedback email
mindprod.com IP:[65.110.21.43]
view BlogYour face IP:[38.107.191.106]
You are visitor number 13,732.