souk a écrit :
Le mieux c&est d&utiliser FontMetrics, mais je sais pas s&il est dans le JDK 1.2
FontMetrics fm=new FontMetrics(monFont);
et apres tu peux avoir la hauteur et la largeur d'une String avec fm.getWidth("blablabla" );
idem avec getHeight
|
Curieux moi en java 1.5 ça marche pas tout à fait mais suffit de faire ça:
int fontSizePix = 12;
Font font = new Font("monospace", Font.PLAIN, fontSizePix);
FontMetrics fm=FontDesignMetrics.getMetrics(font);
int stringWidth = fm.stringWidth("Hello word" );