Java Swing Tutorial - Java Graphics.getFont()








Syntax

Graphics.getFont() has the following syntax.

public abstract Font getFont()

Example

In the following code shows how to use Graphics.getFont() method.

import java.awt.Color;
import java.awt.Graphics;
// w  ww  . j  av a 2  s  . c o m
import javax.swing.JFrame;
import javax.swing.JPanel;

public class Main extends JPanel {

  public void paint(Graphics g) {
    g.drawString(g.getFont()+"", 10, 30);
  }

  public static void main(String[] args) {
    JFrame frame = new JFrame();
    frame.add(new Main());
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setBounds(20,20, 500,500);
    frame.setVisible(true);
  }
}