Can I combine the function saveFrame and the function loadImage?
in
Programming Questions
•
1 year ago
Hi
I Just want to make a program which dispose in time the Frames of an other program dissocied ( or included)
on time translation,
///
int high=0;
void setup(){size(200,200);}
void draw(){
PImage generate = loadImage("line-####.tif");
translate(frameCount,high);
if(frameCount>width){frameCount=0;high+=1;};
image(generate,0,0);
}
////////////////
the function loadImage doesnt work here, can i use other formulation to use it??
please i need some help-thx for reading
1