How to calculate the length (in pixels) of a string in Java?
Preferable without using Swing.
EDIT: I would like to draw the string using the drawString() in Java2D and use the length for word wrapping.
|
How to calculate the length (in pixels) of a string in Java? Preferable without using Swing. EDIT: I would like to draw the string using the drawString() in Java2D and use the length for word wrapping. |
|||||||||||
|
|
If you just want to use AWT, then use For other toolkits, you'll need to give us more information - it's always going to be toolkit-dependent. |
||||
|
|
|
It doesn't always need to be toolkit-dependent or one doesn't always need use the FontMetrics approach since it requires one to first obtain a graphics object which is absent in a web container or in a headless enviroment. I Have tested this in a web servlet and it does calculate the text width..
======================================================= Add the necessary values to these dimensions to create any required margin. |
|||
|