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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。