ImagickDraw::arc()函數是PHP的Imagick庫中的一個內置函數,用於繪製圓弧。
用法:
bool ImagickDraw::arc( $sx, $sy, $ex, $ey, $sd, $ed )
參數:該函數接受上述和以下所述的六個參數:
- $sx:該參數采用啟動x-ordinate的值。
- $sy:該參數采用啟動y-ordinate的值。
- $ex:此參數采用結尾x-ordinate的值。
- $ey:此參數采用結尾y-ordinate的值。
- $sd:此參數以度為單位獲取起始旋轉角度的值。
- $ed:此參數以度為單位獲取旋轉終止角的值。
返回值:該函數不返回任何值。
以下示例程序旨在說明PHP中的ImagickDraw::arc()函數:
程序:
<?php
/*require_once('vendor/autoload.php');*/
// Create ImagickDraw object
$draw = new ImagickDraw();
$draw->setStrokeColor('Green');
$draw->setFillColor('Red');
$draw->setStrokeWidth(7);
$draw->arc(120, 30, 250, 180, 50, 190);
// Create an image object
$image = new Imagick();
$image->newImage(300, 300, 'White');
$image->setImageFormat("png");
// Use drawImage function
$image->drawImage($draw);
// Send the image to the browser
header("Content-Type:image/png");
echo $image->getImageBlob();
?>
輸出:
參考: http://php.net/manual/en/imagickdraw.arc.php
相關用法
- PHP ImagickDraw pop()用法及代碼示例
- PHP ImagickDraw skewX()用法及代碼示例
- PHP ImagickDraw setStrokeColor()用法及代碼示例
- PHP ImagickDraw pushPattern()用法及代碼示例
- PHP ImagickDraw popPattern()用法及代碼示例
- PHP ImagickDraw pathLineToHorizontalRelative()用法及代碼示例
- PHP ImagickDraw rotate()用法及代碼示例
- PHP ImagickDraw getTextInterwordSpacing()用法及代碼示例
- PHP ImagickDraw setTextInterlineSpacing()用法及代碼示例
- PHP ImagickDraw setStrokeOpacity()用法及代碼示例
- PHP ImagickDraw setFillAlpha()用法及代碼示例
- PHP ImagickDraw setGravity()用法及代碼示例
- PHP ImagickDraw setStrokeWidth()用法及代碼示例
- PHP ImagickDraw resetVectorGraphics()用法及代碼示例
- PHP ImagickDraw pathCurveToQuadraticBezierRelative()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | ImagickDraw arc() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。