GmagickDraw::rectangle()函数是PHP中的一个内置函数,用于绘制矩形。
用法:
public GmagickDraw::rectangle( $x1, $y1, $x2, $y2 )
参数:该函数接受上述和以下所述的四个参数:
- $x1:此参数采用左上角的x坐标值。
- $y1:此参数采用左上角的y坐标值。
- $x2:此参数采用右下角的x坐标值。
- $y2:此参数采用右下角的y坐标值。
返回值:成功时,此函数返回GmagickDraw对象。
错误/异常:此函数在出错时引发GmagickException。
以下示例程序旨在说明PHP中的GmagickDraw::rectangle()函数:
程序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 rectangle
$draw->rectangle(20, 20, 380, 465);
$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 GmagickDraw();
// Set the color
$draw->setFillColor('Lightgreen');
// Set the width and height of image
$draw->setStrokeWidth(7);
$draw->setFontSize(72);
// Function to draw rectangle
$draw->rectangle(20, 20, 880, 465);
$draw->setFontSize(40);
$draw->setFillColor('Green');
$gmagick = new Gmagick();
$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.rectangle.php
相关用法
- PHP GmagickDraw arc()用法及代码示例
- PHP GmagickDraw polygon()用法及代码示例
- PHP GmagickDraw polyline()用法及代码示例
- PHP GmagickDraw getstrokecolor()用法及代码示例
- PHP GmagickDraw setstrokecolor()用法及代码示例
- PHP GmagickDraw setfontsize()用法及代码示例
- PHP GmagickDraw line()用法及代码示例
- PHP GmagickDraw point()用法及代码示例
- PHP GmagickDraw getfontweight()用法及代码示例
- PHP GmagickDraw roundrectangle()用法及代码示例
- PHP GmagickDraw bezier()用法及代码示例
- PHP GmagickDraw settextencoding()用法及代码示例
- PHP GmagickDraw setfont()用法及代码示例
- PHP GmagickDraw setfillcolor()用法及代码示例
- PHP GmagickDraw getfillcolor()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | GmagickDraw rectangle() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。