ImagickDraw::roundRectangle()函数是PHP的Imagick库中的一个内置函数,用于绘制圆角矩形。
用法:
bool ImagickDraw::roundRectangle( $x1, $y1, $x2, $y2, $rx, $ry )
参数:该函数接受上述和以下所述的六个参数:
- $x1:此参数采用左上角的x坐标值。
- $y1:此参数采用左上角的y坐标值。
- $x2:此参数采用右下角的x坐标值。
- $y2:此参数采用右下角的y坐标值。
- $rx:此参数采用x舍入的值。
- $ry:此参数采用y舍入的值。
返回值:成功时此函数返回TRUE。
以下示例程序旨在说明PHP中的ImagickDraw::roundRectangle()函数:
程序:
<?php
// require_once('vendor/autoload.php');
// Create ImagickDraw object
$draw = new \ImagickDraw();
$draw->setStrokeColor('Green');
$draw->setFillColor('Red');
$draw->setStrokeWidth(7);
$draw->roundRectangle(40, 30, 250, 260, 40, 80);
// Create an image object which the draw
// commands can be rendered into
$image = new \Imagick();
$image->newImage(300, 300, 'White');
$image->setImageFormat("png");
// Render the draw commands in the ImagickDraw object
// into the image.
$image->drawImage($draw);
// Send the image to the browser
header("Content-Type: image/png");
echo $image->getImageBlob();
?>
输出:
参考: http://php.net/manual/en/imagickdraw.roundrectangle.php
相关用法
- PHP GmagickDraw roundrectangle()用法及代码示例
- PHP ImagickDraw arc()用法及代码示例
- PHP ImagickDraw pop()用法及代码示例
- PHP ImagickDraw pushClipPath()用法及代码示例
- PHP ImagickDraw popClipPath()用法及代码示例
- PHP ImagickDraw setTextKerning()用法及代码示例
- PHP ImagickDraw popDefs()用法及代码示例
- PHP ImagickDraw getFont()用法及代码示例
- PHP ImagickDraw pathLineToHorizontalRelative()用法及代码示例
- PHP ImagickDraw clone()用法及代码示例
- PHP ImagickDraw pathMoveToAbsolute()用法及代码示例
- PHP ImagickDraw pathLineToVerticalAbsolute()用法及代码示例
- PHP ImagickDraw pushDefs()用法及代码示例
- PHP ImagickDraw setFillPatternURL()用法及代码示例
- PHP ImagickDraw pathLineToVerticalRelative()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | ImagickDraw roundRectangle() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。