It's just a spinning logo flash movie. I have attached the script and the
little logo image it spins.
And no, I didn't try the two separately yet.
-Rasmus
On Wed, 16 Oct 2002, Wez Furlong wrote:
> have you got a script I can try out?
>
> Did you try A and B separately?
>
> I might not be able to reproduce this, because my glibc is the older
> flavour :-/
> I'll give it a go though!
>
> --Wez.
>
> On 16/10/02, "Rasmus Lerdorf" <[EMAIL PROTECTED]> wrote:
> > > A. toggle the configure detected value for COOKIE_SEEKER_USES_FPOS_T
> > > then recompile.
> >
> > It was undefined. I defined it.
> >
> > > B. #undef HAVE_FOPENCOOKIE then recompile.
> >
> > It was defined, I undefined it.
> >
> > Make clean, recompile and try again. Exactly the same segfault.
> >
> > -Rasmus
>
>
>
>
> --
> PHP Development Mailing List <http://www.php.net/>
> To unsubscribe, visit: http://www.php.net/unsub.php
>
<?
$s = new SWFShape();
$fp = fopen('php-big.jpg','r');
$jpg = new SWFBitmap($fp);
fclose($fp);
$w = $jpg->getWidth(); $h = $jpg->getHeight();
$f = $s->addFill($jpg);
$f->moveTo(-$w/2, -$h/2);
$s->setRightFill($f);
$s->movePenTo(-$w/2, -$h/2);
$s->drawLine($w, 0);
$s->drawLine(0, $h);
$s->drawLine(-$w, 0);
$s->drawLine(0, -$h);
$p = new SWFSprite();
$i = $p->add($s);
for($step=0; $step<360; $step+=2) {
$p->nextFrame();
$i->rotate(-2);
}
$m = new SWFMovie();
$i = $m->add($p);
$i->moveTo(230,120);
$m->setRate(100);
$m->setDimension($w*1.8, $h*1.8);
header('Content-type: application/x-shockwave-flash');
$m->output();
?>
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php