// The ImageApplet that displays an example image "test.gif"

import java.awt.Graphics;
import java.awt.Image;
import java.applet.Applet;

public class ImageApplet extends Applet
{
	
	private Image theImage;
	
	public void init()
	{
		this.theImage = this.getImage( this.getDocumentBase(), "test.gif" );
	}
	
	public void paint(Graphics g)
	{
		g.drawImage( this.theImage, 10, 10, this);
		g.drawImage( this.theImage, 100, 100, this);
	}
}
