I am using, for me, a new version of Processing (4.1.3). I have produced a number of image files:
1.png, 2.png… 250.png and have the saved in a special frame folder.
When I am running the movie maker it does not end with the last picture. It rather scrambles the files.
Should I rename the files or what can I do.
When I am using a commercial program (with watermarks) it gives a correct result.
Hi
Thanks! - It worked. I created a special function, where Hit is the saved frame counter.
void SaveToFile(int Hit){
if (Hit<10){saveFrame("/frame/Path-000"+str(Hit)+".png");}
if (Hit>=10&&Hit<100){saveFrame("/frame/Path-00"+str(Hit)+".png");}
if (Hit>=100&&Hit<1000){saveFrame("/frame/Path-0"+str(Hit)+".png");}
if (Hit>=1000&&Hit<10000){saveFrame("/frame/Path-"+str(Hit)+".png");}
}