Picture applet The colored to comment. | |
| |
I. Introduction II. Program import java.applet.Applet; import java.awt.Graphics; import java.awt.Image; public class OnePicture extends Applet { Image image; public void init() { image = getImage(getDocumentBase(), "Wave.jpg"); } public void paint(Graphics g) { g.drawImage(image, 50, 50, this); } } III. The related applet To view the applet using JDK viewer: |