PHPでFlashファイルの高さ、幅、フレーム番号、背景色を読み取る方法
この記事の例では、PHP を使用して Flash ファイルの高さ、幅、フレーム番号、背景色を読み取る方法を説明します。参考のためにみんなで共有してください。
具体的な実装方法は以下の通りです。
コードをコピーします コードは次のとおりです:
/*
例:
$file = '/data/ad_files/5/5.swf';
$フラッシュ = 新しいフラッシュ();
$flash = $flash->getswfinfo($file);
エコー「
」
ファイルの幅と高さは次のとおりです: ".$flash["width"].":".$info["height"];
エコー「
」
ファイルのバージョンは ".$flash["version"];
エコー「
」
ファイルのフレーム数は ".$flash["framecount"];
エコー「
」
ファイルのフレームレートは ".$flash["framerate"];
エコー「
」
ファイルの背景色は ".$flash["bgcolor"]; です
*/
クラスフラッシュ
{
//背景色を返すかどうか
パブリック $need_back_color = false ;
//バージョンを返すかどうか
パブリック $need_version = false ;
//フレームレートを返すかどうか
パブリック $need_framerate = false ;
//フレーム数を返すかどうか
パブリック $need_framecount = false ;
パブリック関数 __construct()
{
}
パブリック関数 getswfinfo( $filename )
{
If ( file_exists($filename) ) {
//echo "ファイル変更時刻:".date("m d y h:i:s.", filemtime($filename))."
";
} その他 {
//echo "対象のファイルが存在しません!";
戻り配列( "エラー" => $ファイル名 ) ;
}
// ファイルを開く
$rs = fopen($ファイル名,"r");
//ファイルデータを読み取る
$str = fread( $rs , filesize( $filename ) ) ;
///
If($str[0] == "f")
{
//エコー "
ファイルはすでに解凍されています:";
} その他 {
$first = substr($str,0,8);
$last = substr($str,8);
//
$last = gzuncompress($last);
//
$str = $first
$str[0] = "f";
//エコー "
解凍されたファイル情報: ";
}
$info = $this->getinfo( $str );
fclose ($rs) ;
$情報を返します
}
プライベート関数 mydecbin($str,$index)
{
$fbin = decbin(ord($str[$index]));
While(strlen($fbin)
プライベート関数 colorhex($data)
{
$tmp = dechex($data);
If (strlen($tmp)
$tmp='0'
}
$tmp を返す
}
プライベート関数 getinfo( $str )
{
//バイナリに変換します
$fbin = $this->mydecbin( $str , 8 ) ;
//rec の単位長を計算します
$slen = binding(substr( $fbin , 0 , 5 ) );
//rec が配置されているバイトを計算します
$recsize = $slen * 4 + 5 ;
$recsize = ceil( $recsize / 8 ) ;
//バイナリを記録
$recbin = $fbin ;
for( $i = 9 ; $i
{
$recbin .= $this->mydecbin( $str ,$i );
}
// 録音データ
$rec = 配列();
for( $i = 0 ; $i
{
$rec[] = binding(substr( $recbin , 5 + $i * $slen , $slen ) ) / 20;
}
If ( $this->need_back_color ) {
//背景色
for( $i = $recsize + 12 ; $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]));
壊す;
}
}
}
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 配列 ( "bgcolor" => $bgcolor ,
「バージョン」=> $version ,
「フレームレート」=> $framerate 、
"フレームカウント" => $framecount 、
'width'=>$rec[1],
'高さ'=>$rec[3]
);
}
}
?>
ここで説明されている大家向けの php プログラムの設計が役立つことを望みます。
http://www.bkjia.com/PHPjc/938855.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/938855.html技術記事 php读flash文件高宽帧数背景色的方法,本文例はphp读flash文件高宽帧数背景色的方法を説明しています。