PHP Conference Japan 2024

ImagickDraw::pathLineToRelative

(PECL imagick 2, PECL imagick 3)

ImagickDraw::pathLineToRelative绘制线路径

描述

public ImagickDraw::pathLineToRelative(float $x, float $y): bool
警告

此函数目前未记录;仅提供其参数列表。

使用相对坐标从当前点绘制到给定坐标的线路径。然后该坐标成为新的当前点。

参数

x

起始 x 坐标

y

起始 y 坐标

返回值

不返回值。

添加注释

用户贡献的注释 1 条注释

0
Axeia
15 年前
希望这对任何人都有所帮助,我花了很多时间才画出一个简单的扇形,在 GD2 中使用 'arc' 函数很容易做到.. 在 imagick 中这样做有点困难。

度数很乱,path、arc 和 ellipse 函数似乎都使用了不同的系统.. 非常令人困惑。
下面的代码至少可以帮助理解它是如何工作的。

有关输出示例,请参阅
http://www.imagebam.com/image/8e0ca432393602
<?php
function getPointOnCircumference( $widthOfCircle, $heightOfCircle, $degrees, $x = 0, $y = 0 )
{
return array(
'x' => $x + ($widthOfCircle/2) * sin( deg2rad( $degrees ) ),
'y' => $y + ($heightOfCircle/2) * cos( deg2rad( $degrees ) )
);
}

$width = 200;
$height = 200;
$border = 2;
$x = $width / 2;
$y = $height / 2;
$im = new Imagick();
$im->newImage( $width, $height, "orange", "png" );


$draw = new ImagickDraw();
$draw->setFillColor( 'lime' );
$draw->setStrokeColor( new ImagickPixel( 'black' ) );
$draw->setStrokeWidth( 2 );
$draw->arc( 0, 0, ($width-$border), ($height-$border), 270, 360 ); //270至360度
$im->DrawImage( $draw );

$draw2 = new ImagickDraw();
$draw2->setFillColor( 'red' );
$draw2->setStrokeColor( new ImagickPixel( 'black' ) );
$draw2->setStrokeWidth( 2 );
$draw2->ellipse( 100, 100, $x-$border, $y-$border, 0, 90 ); //0至90度
$im->DrawImage( $draw2 );

$draw3 = new ImagickDraw();
$draw3->setFillColor( 'navy' );
$draw3->setStrokeColor( new ImagickPixel( 'white' ) );
$draw3->setStrokeWidth( 2 );
$draw3->pathStart();
$degrees90 = getPointOnCircumference( $width-2*$border,$height-2*$border, 360 );
$degrees180 = getPointOnCircumference( $width-2*$border,$height-2*$border, 270 );
$draw3->pathMoveToRelative( $x, $y ); //将'笔'移动到图像的中间。
$draw3->pathLineToRelative( $degrees90['x'], $degrees90['y'] );
$draw3->pathEllipticArcRelative( $width-$border, $height-$border, 0, false, true, $degrees180['x'], $degrees180['y']-$y+$border );
$draw3->pathClose();
$im->DrawImage( $draw3 );

header( "Content-Type: image/png" );
echo
$im;
?>
To Top