PHP imagearc() 函数

返回上一级

PHP imagearc() 函数用于画椭圆弧

函数原型

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

imagearc() 以 cx,cy(图像左上角为 0, 0)为中心在 image 所代表的图像中画一个椭圆弧

参数说明

w 和 h 分别指定了椭圆的宽度和高度

起始和结束点以 s 和 e 参数以角度指定

0°位于三点钟位置,以顺时针方向绘画

范例

<?php
$img = imagecreatetruecolor(200, 200);// 创建一个 200*200 图片
$white  = imagecolorallocate($img,   255,   255, 255); // 颜色

// 画椭圆弧
imagearc($img, 140,  75,  50,  50,  0, 360, $white);

// 浏览器输出图片
header("Content-type: image/png");
imagepng($img);

imagedestroy($img);

运行以上 PHP 范例,输出结果如下

返回上一级

PHP 5 函数参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.