|
From: Klaus R. <kl...@re...> - 2007-11-06 23:12:00
|
Thanks!
The problem was a double free caused by the php-wrapper. CVS is fixed! Please
update and test.
Klaus
Am Dienstag 06 November 2007 22:26:28 schrieb Axel Huizinga:
> Hi,
> this is my code:
>
> $fontPath ="/home/axel/.gimp-2.2/fonts/african.ttf";
> if(!file_exists($fontPath)) exit("Font $fontPath not found");
>
> ming_useswfversion(8);
> $m = new SWFMovie();
> $font=new SWFFont($fontPath);
> $char = $m->addFont($font);
> $char->addChars('ABC');
> $m->addExport($char, 'african');
> $m->writeExports();
> #$m->nextFrame();
> header('Pragma: no-cache');
> header('Cache-control: no-cache, must revalidate');
> header('Content-type: application/x-shockwave-flash');
> $m->output(9);
>
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems? Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >> http://get.splunk.com/
> _______________________________________________
> Ming-devr mailing list
> Min...@li...
> https://lists.sourceforge.net/lists/listinfo/ming-devr
>
|