framecount image process
in
Programming Questions
•
6 months ago
hay how can i make it so that once the frame count of the program reaches 6 after saving a frame when it reaches 5 frames, that the next image from the image folder is chosen and then goes through the same process but it also updates the number ie from Pixie300.jpg to the next one being pixie301.jpg
code
if(frameCount == 5){
saveFrame("Pixie300.jpg");// auto saveframe when frame couts to 6 it save frame
else if ( frameCount ==6){
}
also how can i load a series of images rather than just one from a chosen file
img = loadImage("pixie/spinks-pixie300.jpg");
thanks
1