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