We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpSyntax Questions › Video format export
Page Index Toggle Pages: 1
Video format export (Read 543 times)
Video format export
Feb 27th, 2009, 1:29pm
 
I would like to know how can I export a motion of text into a video format. My code looks like this:

PFont font;
float x1 = 0;
float x2 = 100;
void setup() {
 size(100,100);
 font = loadFont("Tahoma-16.vlw");
 textFont(font);
 fill(0);
}
void draw() {
 background(204);
 text("Poor", x1,50);
 text("Rich",x2,100);
 x1 +=1.0;
 if (x1 > 100) { x1 = -150; }
 x2 -=0.8;
 if (x2 < -150) { x2 = 100; }
}
Re: Video format export
Reply #1 - Feb 27th, 2009, 2:06pm
 
Maybe my thread Test of MovieMaker video type can help.
Page Index Toggle Pages: 1