Hi,
I wan't to develop an applet to view tiff images and maybe pdfs.
I did the following and is not working:
import java.applet.*;
import java.awt.*;
import java.net.*;
public class Main extends Applet
{
private Image image;
private AppletContext context;
public void init()
{
context = this.getAppletContext();
String imageURL = "image.tif";
try
{
URL url = new URL(this.getDocumentBase(), imageURL);
image = context.getImage(url);
}catch(MalformedURLException e)
{
e.printStackTrace();
// Display in browser status bar
context.showStatus("Could not load image!");
}
}
public void paint(Graphics g)
{
context.showStatus("Displaying image");
g.drawImage(image, 0, 0, 200, 84, null);
}
}
Any ideas of why is not working?
Thanks in advance
Edited by: 810125 on 23-jun-2011 4:42