imagearc 画椭圆弧

发表日期:2021-07-01 08:55:56 | 来源: | | 浏览(818) 分类:GD 和图像处理 函数

imagearc

(PHP 4, PHP 5, PHP 7, PHP 8)

imagearc画椭圆弧

说明

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

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

示例 #1 用 imagearc() 画一个圆

<?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);
?>

参见 imageellipse()imagefilledellipse()imagefilledarc()

集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。