|
|
|
||||||||||||||||||
|
java.awt
Code Samples Index These code examples and other materials are subject to Sun Microsystems, Inc. Legal Terms
Drawing an Image
public void paint(Graphics g) {
// Drawing an Image object.
g.drawImage(image, x, y, this);
// Drawing an ImageIcon object.
imageIcon.paintIcon(this, g, x, y);
}
|