Forum und email

Shockwave Flash Functions

简介

PHP offers the ability to create Shockwave Flash files via Paul Haeberli's libswf module.

Note: SWF support was added in PHP 4 RC2.
The libswf does not have support for Windows. The development of that library has been stopped, and the source is not available to port it to another systems.
For up to date SWF support take a look at the MING functions.

Note: 本扩展已被移动到 » PECL 库中且自以下版本起不再被绑定到 PHP 中:5.0.0.

需求

You need the libswf library to compile PHP with support for this extension. You can download libswf at » ftp://ftp.sgi.com/sgi/graphics/grafica/flash/.

安装

Once you have libswf all you need to do is to configure --with-swf[=DIR] where DIR is a location containing the directories include and lib. The include directory has to contain the swf.h file and the lib directory has to contain the libswf.a file. If you unpack the libswf distribution the two files will be in one directory. Consequently you will have to copy the files to the proper location manually.

运行时配置

本扩展模块在 php.ini 中未定义任何配置选项。

资源类型

本扩展模块未定义任何资源类型。

预定义常量

以下常量由本扩展模块定义,因此只有在本扩展模块被编译到 PHP 中,或者在运行时被动态加载后才有效。

MOD_COLOR (integer)
MOD_MATRIX (integer)
TYPE_PUSHBUTTON (integer)
TYPE_MENUBUTTON (integer)
BSHitTest (float)
BSDown (float)
BSOver (float)
BSUp (float)
OverDowntoIdle (integer)
IdletoOverDown (integer)
OutDowntoIdle (integer)
OutDowntoOverDown (integer)
OverDowntoOutDown (integer)
OverUptoOverDown (integer)
OverUptoIdle (integer)
IdletoOverUp (integer)
ButtonEnter (integer)
ButtonExit (integer)
MenuEnter (integer)
MenuExit (integer)

范例

Once you've successfully installed PHP with Shockwave Flash support you can then go about creating Shockwave files from PHP. You would be surprised at what you can do, take the following code:

Example#1 SWF example

<?php
swf_openfile
("test.swf"25625630111);
swf_ortho2(-100100, -100100);
swf_defineline(1, -700700.2);
swf_definerect(460, -107000);
swf_definerect(5, -600, -70100);
swf_addcolor(0000);

swf_definefont(10"Mod");
swf_fontsize(5);
swf_fontslant(10);
swf_definetext(11"This be Flash wit PHP!"1);

swf_pushmatrix();
swf_translate(-50800);
swf_placeobject(1160);
swf_popmatrix();

for (
$i 0$i 30$i++) {
    
$p $i/(30-1);
    
swf_pushmatrix();
    
swf_scale(1-($p*.9), 11);
    
swf_rotate(60*$p'z');
    
swf_translate(20+20*$p$p/1.50);
    
swf_rotate(270*$p,  'z');
    
swf_addcolor($p0$p/1.2, -$p);
    
swf_placeobject(150);
    
swf_placeobject(450);
    
swf_placeobject(550);
    
swf_popmatrix();
    
swf_showframe();
}

for (
$i 0$i 30$i++) {
    
swf_removeobject(50);
    if ((
$i%4) == 0) {
        
swf_showframe();
    }
}

swf_startdoaction();
swf_actionstop();
swf_enddoaction();

swf_closefile();
?>

Table of Contents