GmagickDraw::arc()函數是PHP中的一個內置函數,用於在圖像上的指定邊界矩形內繪製圓弧。
用法:
GmagickDraw GmagickDraw::arc( float $sx, float $sy, float $ex, float $ey, float $sd, float $ed )
參數:該函數接受上述和以下所述的六個參數:
- $sx:它指定矩形的起始x-ordinate。
- $sy:它指定矩形的起始y-ordinate。
- $ex:它指定矩形的結尾x-ordinate。
- $ey:它指定矩形的結尾y-ordinate。
- $sd:它指定旋轉的起始角度。
- $ed:它指定旋轉的結束程度。
返回值:成功時,此函數返回GmagickDraw對象。
異常:該函數在錯誤時引發GmagickDrawException。
下麵給出的程序說明了PHP中的GmagickDraw::arc()函數:
使用的圖片:
程序1(從頭開始繪製弧):
的PHP
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the color
$draw->setFillColor('white');
// Function to draw rectangle
$draw->rectangle(0, 0, 800, 400);
// Set the fill color
$draw->setFillColor('white');
// Set the stroke color
$draw->setstrokecolor('black');
// Set the stroke width
$draw->setStrokeWidth(5);
// Mark a arc
$draw->arc(60, -60, 460, 170, 0, 200);
// Use of drawimage function
$gmagick->drawImage($draw);
// Display the output image
header("Content-Type:image/png");
echo $gmagick->getImageBlob();
?>
輸出:
程序2(在圖像上繪製圓弧):
的PHP
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Set the fill color
$draw->setFillColor('red');
// Set the stroke color
$draw->setstrokecolor('green');
// Set the stroke width
$draw->setStrokeWidth(5);
// Mark a arc
$draw->arc(160, -60, 360, 170, 50, 200);
// 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.arc.php
相關用法
- PHP GmagickDraw setstrokeopacity()用法及代碼示例
- PHP GmagickDraw setfillcolor()用法及代碼示例
- PHP GmagickDraw setstrokecolor()用法及代碼示例
- PHP GmagickDraw setfillopacity()用法及代碼示例
- PHP GmagickDraw scale()用法及代碼示例
- PHP GmagickDraw gettextencoding()用法及代碼示例
- PHP GmagickDraw gettextdecoration()用法及代碼示例
- PHP GmagickDraw settextdecoration()用法及代碼示例
- PHP GmagickDraw getfillcolor()用法及代碼示例
- PHP GmagickDraw setfontweight()用法及代碼示例
- PHP GmagickDraw setfontstyle()用法及代碼示例
- PHP GmagickDraw bezier()用法及代碼示例
- PHP GmagickDraw ellipse()用法及代碼示例
- PHP GmagickDraw setfontsize()用法及代碼示例
- PHP GmagickDraw getfillopacity()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | GmagickDraw arc() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。