|
PHP5中文手册
SWFShape->setLine()(PHP 4 >= 4.0.5) SWFShape->setLine() — Sets the shape's line style 说明SWFShape
void setLine
( SWFShape $shape
)
void setLine
( int $width
, int $red
, int $green
, int $blue
[, int $a
] )
Warning
本函数是实验性的。本函数的行为,包括函数名称以及其它任何关于本函数的文档可能会在没有通知的情况下随 PHP 以后的发布而改变。使用本函数风险自担。 swfshape->setline() sets the shape's line style. width is the line's width. If width is 0, the line's style is removed (then, all other arguments are ignored). If width > 0, then line's color is set to red , green , blue . Last parameter a is optional. You must declare all line styles before you use them (see example). 返回值无返回值。 范例This simple example will draw a big "!#%*@", in funny colors and gracious style. Example#1 swfshape->setline() example
<?php 返回值无返回值。 |