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.
| |||||||||
feedback
|
|
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. | ||||
|
feedback
|
|
How are you going to draw the string? With AWT? Or with some other toolkit? The size of the string in pixels depends on the drawing API that will draw the pixel later on (and of course which font you use and what font size and if the font is bold/italic, etc.). W/o knowing the drawing API and the font properties, a string has no size whatsoever. | |||
|
feedback
|