home *** CD-ROM | disk | FTP | other *** search
- ;;;;;;;;;;;;;;;;;;;;;;
- ;demo05-05.bb
- ;By Maneesh Sethi
- ;Demonstrates the use of masking
- ;No Input Parameters required
- ;;;;;;;;;;;;;;;;;;;;;;
- ;Initialize graphics
- Graphics 640,480
-
- ;Load Background
- lilliesimage = LoadImage("lillies.bmp")
- ;Draw background
- DrawImage lilliesimage,0,0
-
-
- ;Load the frog
- frogimage = LoadImage("frog.bmp")
- ;Center the frog
- MidHandle frogimage
- ;Mask the Frog Image
- MaskImage frogimage,0,0,10
- ;Draw it in the center
- DrawImage frogimage,320,240
-
- ;Wait for user to press a button
- WaitKey
-