ID: 45371 User updated by: letmegetone at hotmail dot com Reported By: letmegetone at hotmail dot com -Status: Open +Status: Closed Bug Type: Ming related Operating System: Windows XP SP3 PHP Version: 4.4.8 New Comment:
$string=fread($fp,filesize($mfile)); The problem is not about SWFBitmap,but the $string. It can not be changed by fread more than one time. Previous Comments: ------------------------------------------------------------------------ [2008-06-27 05:08:14] letmegetone at hotmail dot com I posted the completed CODES on a Chinese-based website: http://club.phpe.net/index.php?act=ST&f=15&t=13441&s= ------------------------------------------------------------------------ [2008-06-27 05:02:59] letmegetone at hotmail dot com Description: ------------ I want to put some worked codes into a function, in order to make my main script shorter. All other MING classes work well,such as SWFSprite,SWFShape, except SWFBitmap. I can get the error message from apache2: PHP Fatal error: output() [<a href='function.output'>function.output</a>]: Initial Jpeg marker not found! It seems that the SWFBitmap object can not be returned in a function. I tried test like this: CODE I + CODE III :FAILED CODE II + CODE IV :WORKS CODE I + CODE II + CODE III : WORKS Reproduce code: --------------- function get_b()//CODE I { $mfile="xx.jpg"; $fp=fopen($mfile,"r"); $string=fread($fp,filesize($mfile)); $b = new SWFBitmap($string); fclose($fp); return $b; } $mfile="xx.jpg"; $fp=fopen($mfile,"r");//CODE II $string=fread($fp,filesize($mfile)); $b = new SWFBitmap($string); fclose($fp); $s = new SWFShape(); $scale= $s->addFill(get_b()); //CODE III $scale= $s->addFill($b); //CODE IV Expected result: ---------------- Can I put the code with the SWFBitmap object into a function? ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=45371&edit=1
