SWFText::__construct
Crea un nuevo objeto SWFText
&reftitle.description;
SWFText::__construct
&warn.experimental.func;
Crea un nuevo objeto SWFText, listo para su
manipulación.
&reftitle.examples;
Este sencillo ejemplo dibujará un gran texto "¡¡PHP genera Flash con Ming!!"
amarillo sobre fondo blanco.
swftext example
setFont($f);
$t->moveTo(200, 2400);
$t->setColor(0xff, 0xff, 0);
$t->setHeight(1200);
$t->addString("¡¡PHP genera Flash con Ming!!");
$m = new SWFMovie();
$m->setDimension(5400, 3600);
$m->add($t);
header('Content-type: application/x-shockwave-flash');
$m->output();
?>
]]>