Java Swing Tutorial - Java Font(String name, int style, int size) Constructor








Syntax

Font(String name, int style, int size) constructor from Font has the following syntax.

public Font(String name, int style, int size)

Example

In the following code shows how to use Font.Font(String name, int style, int size) constructor.

import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
/* w w  w  . j av  a  2 s  .  com*/
import javax.swing.JFrame;
import javax.swing.JPanel;

public class Main extends JPanel {

  public void paint(Graphics g) {
    int fontSize = 20;

    g.setFont(new Font("TimesRoman", Font.PLAIN, fontSize));
    
    String s = "www.java2s.com";
    
    g.setColor(Color.black);
    g.drawString(s, 30, 30);
  }

  public static void main(String[] args) {
    JFrame frame = new JFrame();
    frame.getContentPane().add(new Main());

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(200,200);
    frame.setVisible(true);
  }
}