From 0176dc9dc1bfd94c26f6317609ae86f41fe02c17 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Thu, 6 Aug 2015 15:36:52 +0200 Subject: [PATCH 1/1] --- phork0.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 phork0.php diff --git a/phork0.php b/phork0.php new file mode 100644 index 0000000..5507194 --- /dev/null +++ b/phork0.php @@ -0,0 +1,14 @@ + 0; --$x) { + $color = 255 / $w * ($w - $x); + $col = imagecolorallocate($i, 0, $color, 0); + imagefilledellipse($i, $w / 2, $h / 2, $x, $x, $col); +} + +header('Content-type: image/png'); +imagepng($i); +?> -- 2.30.2