Possible to create anim strips?

BlitzMax Forums/BlitzMax Programming/Possible to create anim strips?

Robert Cummings(Posted 2005) [#1]
Hi there,

I have a bunch of frames in png format and I would like to place them all neatly on a single 256x256 tile. What is the best way of going about this?

I would need to retain the alpha so I'm hoping bmax saves that?

Please advise...


Beaker(Posted 2005) [#2]
Lazy git. Try this:
Graphics 640,480,0


Local png:TPixmap = LoadPixmap("Graphics/bmax160_2.png")
If Not(png)
	DebugLog "BUGGER"
	End
EndIf 

SavePixmapPNG png, "bmax logo.png"

End



Robert Cummings(Posted 2005) [#3]
Thanks pop :)