ImagickDraw::pathEllipticArcAbsolute

(PECL imagick 2, PECL imagick 3)

ImagickDraw::pathEllipticArcAbsolute绘制椭圆弧

描述

public ImagickDraw::pathEllipticArcAbsolute(
    float $rx,
    float $ry,
    float $x_axis_rotation,
    bool $large_arc_flag,
    bool $sweep_flag,
    float $x,
    float $y
): bool
警告

此函数目前没有文档记录;只有其参数列表可用。

使用绝对坐标从当前点绘制到 (x, y) 的椭圆弧。椭圆的大小和方向由两个半径 (rx, ry) 和 xAxisRotation 定义,后者表示整个椭圆相对于当前坐标系的旋转方式。椭圆的中心 (cx, cy) 将自动计算,以满足其他参数施加的约束。largeArcFlag 和 sweepFlag 参与自动计算,并有助于确定弧线的绘制方式。如果 large_arc_flagtrue,则绘制两个可用弧线中较大的一个。如果 sweep_flag 为 true,则绘制与顺时针旋转匹配的弧线。

参数

rx

x 半径

ry

y 半径

x_axis_rotation

x 轴旋转

large_arc_flag

大弧线标志

sweep_flag

扫描标志

x

x 坐标

y

y 坐标

返回值

不返回值。

添加注释

用户贡献的注释

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