Source Code : Drawing Simple Text
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
Drawing Simple Text
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Graphics;
import javax.swing.JComponent;
import javax.swing.JFrame;
public class BasicDraw {
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.add(new MyComponent());
frame.setSize(300, 300);
frame.setVisible(true);
}
}
class MyComponent extends JComponent {
public void paint(Graphics g) {
Font font = new Font("Serif", Font.PLAIN, 12);
g.setFont(font);
g.drawString("a String", 10, 10);
FontMetrics fontMetrics = g.getFontMetrics();
g.drawString("aString", 10, 10 + fontMetrics.getAscent());
}
}
Thank with us