Possible to create anim strips?
BlitzMax Forums/BlitzMax Programming/Possible to create anim strips?
| ||
| 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... |
| ||
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 |
| ||
| Thanks pop :) |