The below code displays JPG,BMP,GIF files but when it comes to PNG (or) WMF files the applet does not display the image Why ??? import java.applet.*; import java.awt.*; import java.awt.event.*; import java.net.*;
public class Applet_mp extends Applet { Image background; public void init() { URL codeBase = getCodeBase(); background = getImage(codeBase,"mp_j.jpg"); } public void paint(Graphics g) { g.drawImage(background,0,0,this); } }
John Wetherbie
Rancher
Joined: Apr 05, 2000
Posts: 1441
posted
0
I'm moving this to the Applet forum. John
The only reason for time is so that everything doesn't happen all at once.
- Buckaroo Banzai
Dave Turner
Ranch Hand
Joined: Mar 13, 2001
Posts: 60
posted
0
I think java only supports jpegs gifs and maybe bmps. so pngs and wmfs wont work basically, youll have to use Photoshop or Fireworks or similar to convert the graphic to a gif or jpeg. Dave