FontMetrics : Java Glossary

*0-9ABCDEFGHIJKLMNOPQRSTUVWXYZ (all)

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 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 (Graphic User Interface), you could create a dummy Graphics2D context like this:

Learning More

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

This page is posted
on the web at:

http://mindprod.com/jgloss/fontmetrics.html

Optional Replicator mirror
of mindprod.com
on local hard disk J:

J:\mindprod\jgloss\fontmetrics.html
Canadian Mind Products
Please the feedback from other visitors, or your own feedback about the site.
Contact Roedy. Please feel free to link to this page without explicit permission.

IP:[65.110.21.43]
Your face IP:[18.191.135.224]
You are visitor number