new Font(String name, int style, int size) : Font « java.awt « Java by API






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

 
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Graphics;

import javax.swing.JFrame;
import javax.swing.JPanel;

public class MainClass extends JPanel {

  public void paint(Graphics g) {
    Dimension d = this.getPreferredSize();
    int fontSize = 20;

    g.setFont(new Font("TimesRoman", Font.PLAIN, fontSize));
     
    g.setColor(Color.red);
    
    g.drawString("www.java2s.com", 10, 20);
  }

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

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








Related examples in the same category

1.Font.PLAIN
2.Font.BOLD | Font.ITALIC
3.Font.BOLD
4.Font.ITALIC
5.Font.TRUETYPE_FONT
6.Font: createFont(int fontFormat, InputStream fontStream)
7.Font: createGlyphVector(FontRenderContext frc, String str)
8.Font: deriveFont(int style, float size)
9.Font: getFamily()
10.Font: getFontName()
11.Font: getLineMetrics(String str, FontRenderContext frc)
12.Font: getName()
13.Font: getStyle()
14.Font: getSize()
15.Font: getStringBounds(String str, FontRenderContext frc)