GmagickDraw::ellipse()函數是PHP中的內置函數,用於在圖像上繪製橢圓。
用法:
GmagickDraw GmagickDraw::ellipse( float $ox, float $oy, float $rx, float $ry, float $start, float $end )
參數:該函數接受上述和以下所述的六個參數:
- $ox:它指定橢圓的x坐標。
- $oy:它指定橢圓的y坐標。
- $rx:它指定橢圓的x-radius。
- $ry:它指定橢圓的y-radius。
- $start:它指定橢圓的起點。
- $end:它指定橢圓的終點。
返回值:成功時,此函數返回GmagickDraw對象。
異常:該函數在錯誤時引發GmagickDrawException。
下麵給出的程序說明了PHP中的GmagickDraw::ellipse()函數:程序1(簡單橢圓):
<?php
// Create a new Gmagick object
// https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the color
$draw->setFillColor('#0E0E0E');
// Function to draw rectangle
$draw->rectangle(-10, -10, 800, 400);
// Set the fill color
$draw->setFillColor('#3D99D4');
// Set the stroke width
$draw->setStrokeWidth(5);
// Draw a ellipse
$draw->ellipse(125, 70, 100, 50, 0, 360);
// Use of drawimage function
$gmagick->drawImage($draw);
// Display the output image
header("Content-Type:image/png");
echo $gmagick->getImageBlob();
?>
輸出:
程序2(橢圓形):
<?php
// Create a new Gmagick object
// https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the color
$draw->setFillColor('#0E0E0E');
// Function to draw rectangle
$draw->rectangle(-10, -10, 800, 400);
// Set the fill color
$draw->setFillColor('blue');
// Set the stroke color
$draw->setstrokecolor('green');
// Set the stroke width
$draw->setStrokeWidth(5);
// Draw a ellipse
$draw->ellipse(225, 70, 150, 50, 0, 360);
// Use of drawimage function
$gmagick->drawImage($draw);
// Display the output image
header("Content-Type:image/png");
echo $gmagick->getImageBlob();
?>
輸出:
參考: https://www.php.net/manual/en/gmagickdraw.ellipse.php
相關用法
- PHP GmagickDraw arc()用法及代碼示例
- PHP GmagickDraw getstrokeopacity()用法及代碼示例
- PHP GmagickDraw getfontsize()用法及代碼示例
- PHP GmagickDraw setfontsize()用法及代碼示例
- PHP GmagickDraw setfillcolor()用法及代碼示例
- PHP GmagickDraw rectangle()用法及代碼示例
- PHP GmagickDraw setstrokewidth()用法及代碼示例
- PHP GmagickDraw getstrokewidth()用法及代碼示例
- PHP GmagickDraw line()用法及代碼示例
- PHP GmagickDraw setstrokecolor()用法及代碼示例
- PHP GmagickDraw setfillopacity()用法及代碼示例
- PHP GmagickDraw settextdecoration()用法及代碼示例
- PHP GmagickDraw setfontweight()用法及代碼示例
- PHP GmagickDraw setfontstyle()用法及代碼示例
- PHP GmagickDraw setstrokeopacity()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | GmagickDraw ellipse() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。