Graphics2D: drawString(String str, int x, int y) : Graphics2D « java.awt « Java by API






Graphics2D: drawString(String str, int x, int y)


import java.awt.Container;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.RenderingHints;

import javax.swing.JComponent;
import javax.swing.JFrame;

public class MainClass{
  public static void main(String[] args) {
    JFrame jf = new JFrame("Demo");
    Container cp = jf.getContentPane();
    MyCanvas tl = new MyCanvas();
    cp.add(tl);
    jf.setSize(300, 200);
    jf.setVisible(true);
  }
}

class MyCanvas extends JComponent {
  public void paint(Graphics g) {
    Graphics2D g2 = (Graphics2D)g;
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
        RenderingHints.VALUE_ANTIALIAS_ON);
    Font font = new Font("Serif", Font.PLAIN, 96);
    g2.setFont(font);

    g2.drawString("jade", 40, 120); 
  }
}
           
       








Related examples in the same category

1.Graphics2D: draw(Shape s)
2.Graphics2D: drawGlyphVector(GlyphVector g, float x, float y)
3.Graphics2D: drawString(String str, int x, int y) (Unicode)
4.Graphics2D: fill(Shape s)
5.Graphics2D: getFontRenderContext()
6.Graphics2D: rotate(double theta)
7.Graphics2D: scale(double sx, double sy)
8.Graphics2D: setComposite(Composite comp)
9.Graphics2D: setPaint(Paint paint)
10.Graphics2D: setRenderingHints(Map hints)
11.Graphics2D: setRenderingHint(Key hintKey, Object hintValue)
12.Graphics2D: setStroke(Stroke s)
13.Graphics2D: transform(AffineTransform Tx)
14.Graphics2D: translate(int x, int y)