(PECL imagick 2, PECL imagick 3)
ImagickDraw::roundRectangle — 绘制圆角矩形
$x1
,$y1
,$x2
,$y2
,$rx
,$ry
此函数目前没有文档说明;仅有参数列表可用。
根据给定的两个坐标、x 和 y 方向的圆角半径以及当前的描边、描边宽度和填充设置绘制圆角矩形。
x1
左上角的 x 坐标
y1
左上角的 y 坐标
x2
右下角的 x 坐标
y2
右下角的 y 坐标
rx
x 方向的圆角半径
ry
y 方向的圆角半径
没有返回值。
示例 #1 ImagickDraw::roundRectangle() 示例
<?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();
}
?>