Is there a way to do a moviemaker addFrame() from a PImage[] array rather than the windows pixels?
Im making a stopmotion app where the interface displays a scaled Capture copy image array on a mousePressed, but I want to export the full resolution array to movie file on the animations completion.
Any help appreciated, im at a standstill.
Im trying to make a movie from an array of images but im lost on how to do this. I dont want to capture the whole screen to the movie, just the array that Im creating with a series of copy. requests.
Capture stream;
PImage[] linetest;
then later....
if(keyPressed) {
linetest[captureFrameNum] = new PImage(xRes, yRes);