import java.awt.*; import java.awt.image.*; import java.applet.*; public class Test4 extends Applet { Image _im = null; public void init() { MediaTracker mt = new MediaTracker(this); _im = getImage(getDocumentBase(), "howto/fig.gif"); mt.addImage(_im, 0); try { mt.waitForAll(); } catch (InterruptedException ie) { ; } } public void paint(Graphics g) { g.drawImage(_im, 50, 50, this); } }