I need to make an image strip of 100 anim frames for use with the LoadAnimImage() function.
Is there a freeware tool on the net that can do this?
Cheers,
RV
Is there a freeware tool on the net that can do this?
Cheers,
RV
imgStrip = CreateImage ( 2560, 2560 ) frame = 0 For y = 0 To 9 For x = 0 To 9 SetBuffer ImageBuffer ( imgStrip ) fnum$ = Right$("000"+frame,3) fname$ = "earth" + fnum$ + ".jpg" imgFrame = LoadImage ( fname$ ) SetBuffer ImageBuffer ( imgStrip ) DrawImage imgFrame, 256*x, 256*y FreeImage ( imgFrame ) frame = frame + 1 Next Next SaveImage ( imgstrip, "earthanim.bmp" )