java calculate the width and height of a string on screen

java calculate the width and height of a string on screen
refer‮ot ‬:lautturi.com
String text = "Hello World";
Font font = new Font("Arial", Font.PLAIN, 12);
FontRenderContext frc = new FontRenderContext(new AffineTransform(), true, true);

int strwidth = (int)(font.getStringBounds(text, frc).getWidth());
int strheight = (int)(font.getStringBounds(text, frc).getHeight());
Created Time:2017-09-12 07:04:18  Author:lautturi