Hi
How i can set the background image in canvas
Please provide me some sample code for that.
Thanx
Jignesh
Hi
How i can set the background image in canvas
Please provide me some sample code for that.
Thanx
Jignesh
shmooveCode:public class MyCanvas extends Canvas { Image background; public void paint(Graphics g) { if (background != null) { g.drawImage(background,0,0,Graphics.TOP|Graphics.LEFT); } // the rest of the paint code } }