.bmp bitmaps should not be used in Java. JPEG and GIF are the standards. You could simply draw the image in the paint method of your applet or another component.
public void paint(Graphics g)
{
super.paint(g);
Image im = getImage(getDocumentBase(), "myfile.gif");
g.drawImage(im, 0, 0, getSize().width, getSize().height, this);
}
Last edited by Josh Campbell; 02-03-2003 at 11:03 PM..