ps_shading

(PECL ps >= 1.3.0)

ps_shading创建阴影以供日后使用

描述

ps_shading(
    资源 $psdoc,
    字符串 $type,
    浮点数 $x0,
    浮点数 $y0,
    浮点数 $x1,
    浮点数 $y1,
    浮点数 $c1,
    浮点数 $c2,
    浮点数 $c3,
    浮点数 $c4,
    字符串 $optlist
): 整数|false

创建阴影,可用于 ps_shfill()ps_shading_pattern().

阴影的颜色可以使用除 pattern 之外的任何颜色空间。

参数

psdoc

ps_new() 所返回的 Postscript 文件的资源标识符。

type

阴影类型可以是 radialaxial。每个阴影都从当前填充颜色开始,并以参数 c1c4 中给定的颜色值结束(有关其含义,请参见 ps_setcolor())。

x0, x1, y0, y1

坐标 x0, y0, x1, y1 是阴影的起点和终点。如果阴影类型为 radial,则这两个点是起点和终点圆的中心点。

c1, c2, c3, c4

有关其含义,请参见 ps_setcolor()

optlist

如果阴影类型为 radial,则 optlist 还必须包含参数 r0r1,分别表示起点和终点圆的半径。

返回值

返回模式的标识符,或在失败时返回 false

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top