ImagickDraw::polygon

(PECL imagick 2, PECL imagick 3)

ImagickDraw::polygon绘制多边形

描述

public ImagickDraw::polygon(array $coordinates): bool
警告

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

使用当前笔触、笔触宽度和填充颜色或纹理,使用指定的坐标数组绘制多边形。

参数

coordinates

多维数组,例如 array( array( 'x' => 3, 'y' => 4 ), array( 'x' => 2, 'y' => 6 ) );

返回值

成功时返回 true

范例

范例 #1 ImagickDraw::polygon() 示例

<?php
function polygon($strokeColor, $fillColor, $backgroundColor) {

$draw = new \ImagickDraw();

$draw->setStrokeOpacity(1);
$draw->setStrokeColor($strokeColor);
$draw->setStrokeWidth(4);

$draw->setFillColor($fillColor);

$points = [
[
'x' => 40 * 5, 'y' => 10 * 5],
[
'x' => 20 * 5, 'y' => 20 * 5],
[
'x' => 70 * 5, 'y' => 50 * 5],
[
'x' => 60 * 5, 'y' => 15 * 5],
];

$draw->polygon($points);

$image = new \Imagick();
$image->newImage(500, 300, $backgroundColor);
$image->setImageFormat("png");
$image->drawImage($draw);

header("Content-Type: image/png");
echo
$image->getImageBlob();
}

?>

添加说明

用户贡献说明

此页面没有用户贡献的说明。
To Top