Problem with saveFrame
in
Programming Questions
•
3 years ago
Please help me, I'm new processing's user!
I have a problem with this:
Adding saveFrame() at the end of draw() will produce a numbered sequence
void setup() {
size(400, 400);
stroke(100);
background(192, 64, 0);
}
void draw() saveFrame("output.png"){
ellipse (mouseX, mouseY,50,50);
}
How can I create an image (TIFF, png, PDF)?
thanx.
F.
1