GmagickDraw::roundrectangle()函数是PHP中的一个内置函数,用于绘制圆角矩形。
用法:
public GmagickDraw::rectangle( $x1, $y1, $x2, $y2, $rx, $ry)
参数:该函数接受上述和以下所述的四个参数:
- $x1:此参数采用左上角的x坐标值。
- $y1:此参数采用左上角的y坐标值。
- $x2:此参数采用右下角的x坐标值。
- $y2:此参数采用右下角的y坐标值。
- $ry:该参数取垂直方向的拐角半径值。
- $rx:该参数取水平方向的拐角半径值。
返回值:成功时,此函数返回GmagickDraw对象。
错误/异常:此函数在出错时引发GmagickException。
以下示例程序旨在说明PHP中的GmagickDraw::roundrectangle()函数:
程序1:
<?php
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the color
$draw->setFillColor('Green');
// Set the width and height of image
$draw->setStrokeWidth(7);
$draw->setFontSize(72);
// Function to draw roundrectangle
$draw->roundrectangle(20, 20, 380, 465, 50, 50);
$gmagick = new Gmagick();
$gmagick->newImage(500, 500, 'White');
$gmagick->setImageFormat("png");
// Use of drawimage function
$gmagick->drawImage($draw);
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
输出:
程序2:
<?php
// Create a GmagickDraw object
$draw = new ImagickDraw();
// Set the color
$draw->setFillColor('Lightgreen');
// Set the width and height of image
$draw->setStrokeWidth(7);
$draw->setFontSize(72);
// Function to draw roundrectangle
$draw->roundrectangle(20, 20, 880, 465, 50, 50);
$draw->setFontSize(40);
$draw->setFillColor('Green');
$gmagick = new Imagick();
$gmagick->newImage(900, 500, 'White');
$gmagick->setImageFormat("png");
// Use of drawimage function
$gmagick->drawImage($draw);
// Annotate Image
$gmagick->annotateImage($draw, 5, 120, 0,
' GeeksforGeeks: A computer science portal');
$gmagick->annotateImage($draw, 5, 220, 0,
' sarthak_ishu11');
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
输出:
参考: http://php.net/manual/en/gmagickdraw.roundrectangle.php
相关用法
- PHP ImagickDraw roundRectangle()用法及代码示例
- PHP GmagickDraw arc()用法及代码示例
- PHP GmagickDraw getfontstyle()用法及代码示例
- PHP GmagickDraw line()用法及代码示例
- PHP GmagickDraw point()用法及代码示例
- PHP GmagickDraw scale()用法及代码示例
- PHP GmagickDraw getfillcolor()用法及代码示例
- PHP GmagickDraw getfillopacity()用法及代码示例
- PHP GmagickDraw setfontsize()用法及代码示例
- PHP GmagickDraw getstrokeopacity()用法及代码示例
- PHP GmagickDraw getstrokewidth()用法及代码示例
- PHP GmagickDraw gettextdecoration()用法及代码示例
- PHP GmagickDraw annotate()用法及代码示例
- PHP GmagickDraw rotate()用法及代码示例
- PHP GmagickDraw getfontsize()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | GmagickDraw roundrectangle() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。