运用php语言绘制一个圆形阴阳图
时间: 2023-07-20 17:12:23 浏览: 163
画一个圆的代码
好的,以下是一个简单的php代码来绘制圆形阴阳图:
```php
<?php
// 创建一个空白的图片
$img = imagecreatetruecolor(300, 300);
// 设置黑色和白色
$black = imagecolorallocate($img, 0, 0, 0);
$white = imagecolorallocate($img, 255, 255, 255);
// 填充白色
imagefilledarc($img, 150, 150, 300, 300, 0, 180, $white, IMG_ARC_PIE);
// 填充黑色
imagefilledarc($img, 150, 150, 300, 300, 180, 360, $black, IMG_ARC_PIE);
// 输出图片
header('Content-Type: image/png');
imagepng($img);
imagedestroy($img);
?>
```
这段代码创建了一个 300x300 的空白图片,并分为左右两部分,左半部为白色圆弧,右半部为黑色圆弧,从而形成了圆形阴阳图。你可以在你的服务器上运行这段代码并查看结果。
阅读全文