imagearc

(PHP 3, PHP 4 )

imagearc -- 画椭圆弧

说明

int imagearc ( resource image, int cx, int cy, int w, int h, int s, int e, int color)

imagearc()cxcy(图像左上角为 0, 0)为中心在 image 所代表的图像中画一个椭圆弧。wh 分别指定了椭圆的宽度和高度,起始和结束点以 se 参数以角度指定。0°位于三点钟位置,以逆时针方向绘画。

例子 1. 用 imagearc() 画一个圆

<?php

// create a 200*200 image
$img = imagecreate(200, 200);

// allocate some colors
$white = imagecolorallocate($img, 255, 255, 255);

// draw a white circle
imagearc($img, 100, 100, 150, 150, 0, 360, $white);

// output image in the browser
header("Content-type: image/png");
imagepng($img);

// free memory
imagedestroy($img);

?>

参见 imageellipse()imagefilledellipse()imagefilledarc()