这是一个PHP的库用来从swf文件中读取和修改信息
使用示例:
<?php//includethePEARpackagerequire"File/SWF.php";$flash=newSWF("source.swf");if($flash->is_valid()){$stat=$flash->stat();//thisgivealltheinfo//andalso..$fps=$flash->getFrameRate();$size=$flash->getMovieSize();$bg=$flash->getBackgroundColor();$prot=$flash->getProtected();$compr=$flash->getCompression();$version=$flash->getVersion();//theycanbechanged...$flash->setFrameRate(60);$flash->setProtected(1);$flash->setBackgroundColor(51,51,204);$flash->setCompression(1);//andwriteanewfile...$flash->write("./new_one.swf",1);}?>
评论