ImagickDraw::ellipse()函數是PHP中的一個內置函數,用於在圖像上繪製橢圓。
用法:
bool ImagickDraw::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:它指定橢圓的終點。
返回值:成功時此函數返回TRUE。
異常:該函數在錯誤時引發ImagickException。
下麵給出的程序說明了PHP中的ImagickDraw::ellipse()函數:
程序1:
<?php
// Create a new imagick object
$imagick = new Imagick();
// Create a image on imagick object
$imagick->newImage(800, 250, 'purple');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Draw a ellipse
$draw->ellipse(125, 70, 100, 50, 0, 360);
// Render the draw commands
$imagick->drawImage($draw);
// Show the output
$imagick->setImageFormat('png');
header("Content-Type:image/png");
echo $imagick->getImageBlob();
?>
輸出:
程序2:
<?php
// Create a new imagick object
$imagick = new Imagick();
// Create a image on imagick object
$imagick->newImage(800, 250, 'brown');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Draw a black ellipse
$draw->ellipse(400, 120, 200, 100, 0, 360);
// Set the FillColor to green
$draw->setFillColor('green');
// Draw a green ellipse
$draw->ellipse(400, 120, 150, 90, 0, 360);
// Render the draw commands
$imagick->drawImage($draw);
// Show the output
$imagick->setImageFormat('png');
header("Content-Type:image/png");
echo $imagick->getImageBlob();
?>
輸出:
參考: https://www.php.net/manual/en/imagickdraw.ellipse.php
相關用法
- CSS ellipse()用法及代碼示例
- p5.js ellipse()用法及代碼示例
- PHP GmagickDraw ellipse()用法及代碼示例
- PHP ImagickDraw pop()用法及代碼示例
- PHP ImagickDraw arc()用法及代碼示例
- PHP ImagickDraw setFillAlpha()用法及代碼示例
- PHP ImagickDraw setViewbox()用法及代碼示例
- PHP ImagickDraw skewY()用法及代碼示例
- PHP ImagickDraw getTextAntialias()用法及代碼示例
- PHP ImagickDraw getStrokeMiterLimit()用法及代碼示例
- PHP ImagickDraw setStrokeLineCap()用法及代碼示例
- PHP ImagickDraw resetVectorGraphics()用法及代碼示例
- PHP ImagickDraw roundRectangle()用法及代碼示例
- PHP ImagickDraw setStrokeDashOffset()用法及代碼示例
- PHP ImagickDraw getStrokeDashOffset()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickDraw ellipse() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。