I have the following snippet I wrote that worked fine using a home-built
ming library. Now it turns out it's not a part of PHP4, which is what I
have:
$f = new SWFFont("/lib/flashfonts/Bitstream Vera Sans.fdb");
$t = new SWFText();
$t->setFont($f);
$t->moveTo(0, 0);
$t->setColor(0xf f, 0xff, 0xff);
$t->setHeight($fon tHeight);
$t->addString("" );
Could some kind person please clue me in on how to write this for PHP4?
I can't find any good examples or go-bys.
Thanks,
--Yan
ming library. Now it turns out it's not a part of PHP4, which is what I
have:
$f = new SWFFont("/lib/flashfonts/Bitstream Vera Sans.fdb");
$t = new SWFText();
$t->setFont($f);
$t->moveTo(0, 0);
$t->setColor(0xf f, 0xff, 0xff);
$t->setHeight($fon tHeight);
$t->addString("" );
Could some kind person please clue me in on how to write this for PHP4?
I can't find any good examples or go-bys.
Thanks,
--Yan
Comment