Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Questions (GIF, amination)

Status
Not open for further replies.

Aron1

Programmer
Mar 19, 2003
11
HU
#1: Is there any way in QBASIC to paste a GIF file that moves?

#2: How can I move an image without destroying the background (with the GET and PUT statements)?
 
future library loads animated .gifs

to move a gif without destroying the background just make a background buffer that has the background in it and just flip the background onto the screen, it actually does destroy the background, but you can't tell
 
GET BACKGROUND...
PUT SPRITE (YOUR GIF PICTURE)...
PUT BACKGROUND...
MOVE SPRITE COORDS...
GET BACKGROUND...
PUT SPRITE (YOUR GIF PICTURE)...
PUT BACKGROUND...
...



Have Fun, Be Young... Code BASIC
-Josh Stribling
cubee101.gif

 
See also
thread 529653:Masking an image.

thread314-529653
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top