请输入您要查询的百科知识:

 

词条 imagearc
释义

简介

(PHP 3, PHP 4, PHP 5)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

// 创建一个 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);

// 释放内存

imagedestroy($img);

?>

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/12/23 15:54:02