(PHP 4, PHP 5, PHP 7, PHP 8)
imagearc — 畫橢圓弧
$image
,$cx
,$cy
,$w
,$h
,$s
,$e
,$color
imagearc() 以
cx
,cy
(圖像左上角為 0, 0)為中心在
image
所代表的圖像中畫一個(gè)橢圓弧。w
和 h
分別指定了橢圓的寬度和高度,起始和結(jié)束點(diǎn)以
s
和 e
參數(shù)以角度指定。0°位于三點(diǎn)鐘位置,以順時(shí)針?lè)较蚶L畫。
示例 #1 用 imagearc() 畫一個(gè)圓
<?php
// 創(chuàng)建一個(gè) 200X200 的圖像
$img = imagecreatetruecolor(200, 200);
// 分配顏色
$white = imagecolorallocate($img, 255, 255, 255);
$black = imagecolorallocate($img, 0, 0, 0);
// 畫一個(gè)黑色的圓
imagearc($img, 100, 100, 150, 150, 0, 360, $black);
// 將圖像輸出到瀏覽器
header("Content-type: image/png");
imagepng($img);
// 釋放內(nèi)存
imagedestroy($img);
?>
參見(jiàn) imageellipse(),imagefilledellipse() 和 imagefilledarc()。