www.bkjia.comFlash ファイルの高さ、幅、フレーム番号、背景のカラーコードを読み取るための php チュートリアル
/*
例:
$file = '/data/ad_files/5/5.swf';
$ flash = new flash ();
$flash = $flash->getswfinfo($file);
echo "
ファイルの幅と高さは次のとおりです:".$flash["width"].":".$ info["height"];
echo "
ファイルのバージョンは".$flash["version"];
echo "
ファイルのフレーム番号は".$flash["framecount"];
echo "
ファイルフレームレートは".$flash["framerate "];
echo "
ファイルの背景色は".$flash["bgcolor"];
*/
class flash
{
//背景色を返すかどうか
public $need_back_color = false ;
//バージョンを返すかどうか
public $need_version = false ;
//フレームレートを返すかどうか
public $need_framerate = false ;
//フレーム数を返すかどうか
public $need_framecount = false ;public function __construct()
{}
public function getswfinfo( $filename )
$last = gzuncompress($last);
{
if ( file_exists($filename) ) {
//echo "ファイル変更時刻:" .date( "m d y h:i:s。、filemtime($ filename);" r ");ファイル名 ) ) ;
///
if($str[0] == "f")
{
//echo "
$last }
}
$info = $ this->getinfo( $str );
fclose ( $rs ) ;
return $info;
}
プライベート関数 mydecbin($str,$index)
{
$fbin = decbin (ord($str[$ Index]));
while(strlen($fbin) return $fbin;
}
プライベート関数 colorhex($data)
{
$tmp = dechex ($data);
if ( strlen($tmp)<2 ) {
$tmp='0' . $tmp ;
}
return $tmp;$fbin = $this->mydecbin( $str, 8) ;
プライベート関数 getinfo ( $str )
{
//バイナリに変換$recsize = ceil( $recsize / 8);
//rec のユニット長を計算
$slen = binding(substr( $fbin, 0 , 5 ) );
//rec が配置されているバイトを計算します
$recsize = $slen * 4 + 5;
//Rec バイナリ
$recbin = $ fbin ;
for( $ i = 9 ; $i < $recsize + 8 ; $i++ )
$recbin .= $this->mydecbin( $str ,$i );//rec数据
$rec = array();
for( $i = 0 ; $i {
$rec[] = binding( substr( $recbin , 5 + $i * $slen , $slen ) ) / 20 ;
}
if ( $this->need_back_color ) {
//背景颜色
for( $i = $recsize + 12 ; $i < strlen ( $str ) ; $i ++ )
{
if ( ord( $str[$i] ) == 67 && ord( $str[$i+1] ) == 2 )
{
$bgcolor = $this->colorhex (ord($str[$i+2])).$this->colorhex(ord($str[$i+3])).$this->colorhex(ord($str[$i+4] ]));
Break;
}
}
}
if ( $this->need_version ) {
//バージョン本
$version = ord( $str[3] );
}
if ( $this- >need_framerate ) {
//帧速度
$framerate = ord( $str[$recsize + 8] ) / 256 + ord( $str[$recsize + 9] ) ;
}if ( $this-> ;need_framecount ) {
//帧数量
$framecount = ord( $str[$recsize + 11] ) * 256 + ord( $str[$recsize + 10] );
}
return array ( "bgcolor" = > $bgcolor 、
"バージョン" => $version 、
"フレームレート" => $framerate ,
"framecount" => $ framecount、
'width' =&gt; $ rec [1]、
'height' =&gt; $ rec [3]
);
http://www.bkjia.com/PHPjc/444786.html