ImagickDraw::roundRectangle

(PECL imagick 2, PECL imagick 3)

ImagickDraw::roundRectangleDraws a rounded rectangle

说明

public ImagickDraw::roundRectangle(
    float $top_left_x,
    float $top_left_y,
    float $bottom_right_x,
    float $bottom_right_y,
    float $rounding_x,
    float $rounding_y
): bool
警告

本函数还未编写文档,仅有参数列表。

Draws a rounded rectangle given two coordinates, x & y corner radiuses and using the current stroke, stroke width, and fill settings.

参数

top_left_x

x coordinate of the top left corner

top_left_y

y coordinate of the top left corner

bottom_right_x

x coordinate of the bottom right

bottom_right_y

y coordinate of the bottom right

rounding_x

x rounding

rounding_y

y rounding

返回值

没有返回值。

示例

示例 #1 ImagickDraw::roundRectangle() example

<?php
function roundRectangle($strokeColor, $fillColor, $backgroundColor, $startX, $startY, $endX, $endY, $roundX, $roundY) {

$draw = new \ImagickDraw();

$draw->setStrokeColor($strokeColor);
$draw->setFillColor($fillColor);
$draw->setStrokeOpacity(1);
$draw->setStrokeWidth(2);

$draw->roundRectangle($startX, $startY, $endX, $endY, $roundX, $roundY);

$imagick = new \Imagick();
$imagick->newImage(500, 500, $backgroundColor);
$imagick->setImageFormat("png");

$imagick->drawImage($draw);

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

?>

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top