my dog learned polymorphism
The moose likes Applets and the fly likes Images in applets Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Applets
Reply Bookmark "Images in applets" Watch "Images in applets" New topic
Author

Images in applets

Ranu Kundu
Greenhorn

Joined: Jul 05, 2010
Posts: 16
how to include images in applets???
I have tried this:


Image image; public void init() {
image = getImage(getDocumentBase(), "http://hostname/image.gif");
}
public void paint(Graphics g) {
g.drawImage(image, 0, 0, this);
}

But nothing is showing in applet.Why?
Norm Radder
Ranch Hand

Joined: Aug 10, 2005
Posts: 681
You seem to be passing two URLs to the getImage() method.
Read the API doc to see what the second arg should be.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Images in applets
 
Similar Threads
Drawing Image Doubles Memory Consumption
Using arrays to randomly generate images? (applet)
Applet, How to get the image displayed PLEASE HELP
Need help with my game.
Applet permissions trouble