108
Displaying Image in Applet
Applet is mostly used in games and animation. For this purpose image is required to be displayed. The java.awt.Graphics class provide a method drawImage() to display the image.
Syntax of drawImage() method:
|
How to get the object of Image:
The java.applet.Applet class provides getImage() method that returns the object of Image. Syntax: |
Other required methods of Applet class to display image:
|
Example of displaying image in applet:
In the above example, drawImage() method of Graphics class is used to display the image. The 4th argument of drawImage() method of is ImageObserver object. The Component class implements ImageObserver interface. So current class object would also be treated as ImageObserver because Applet class indirectly extends the Component class. |
myapplet.html
Next TopicAnimation-in-applet