BasicDraw.java Source code

Java tutorial

Introduction

Here is the source code for BasicDraw.java

Source

import java.awt.Graphics;

import javax.swing.ImageIcon;
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) {

        ImageIcon icon = new ImageIcon("a.png");
        int x = 0;
        int y = 100;
        icon.paintIcon(this, g, x, y);
    }

}