Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JPanel で FontMetrics を使用する方法を誰かに説明してもらえますか? drawString() を使用して JPanel に描画するときに、文字列の幅と高さをピクセル単位で把握する必要があります。
ありがとう!
メソッドの入力変数として Graphics オブジェクトを定義できます。または、JFrame または JPanel の getFontMetrics() メソッドを使用できます。
たとえば、文字の幅を取得するには:
JFrame frame = new JFrame(); int charWidth = frame.getFontMetrics( frame.getFont() ).charWidth() ;