Here you can find the source of getStringLengthInPixels(String s, Graphics g)
@SuppressWarnings("deprecation") public static int getStringLengthInPixels(String s, Graphics g)
//package com.java2s; //License from project: Open Source License import java.awt.Graphics; import java.awt.Toolkit; public class Main { @SuppressWarnings("deprecation") public static int getStringLengthInPixels(String s, Graphics g) { return Toolkit.getDefaultToolkit().getFontMetrics(g.getFont()).stringWidth(s); }// w w w.j a v a2 s . com }