ImagickDraw::roundRectangle
(PECL imagick 2, PECL imagick 3)
ImagickDraw::roundRectangle — Draws a rounded rectangle
Description
public ImagickDraw::roundRectangle(
float
float
float
float
float
float
): bool
float
$top_left_x,float
$top_left_y,float
$bottom_right_x,float
$bottom_right_y,float
$rounding_x,float
$rounding_y): bool
Warning
This function is currently not documented; only its argument list is available.
Draws a rounded rectangle given two coordinates, x & y corner radiuses and using the current stroke, stroke width, and fill settings.
Parameters
top_left_xx coordinate of the top left corner
top_left_yy coordinate of the top left corner
bottom_right_xx coordinate of the bottom right
bottom_right_yy coordinate of the bottom right
rounding_xx rounding
rounding_yy rounding
Return Values
No value is returned.
Examples
Example #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();
}
?>↑ and ↓ to navigate • Enter to select • Esc to close • / to open