summaryrefslogtreecommitdiff
path: root/Examples/GIFPlot/Php/simple/runme.php
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/GIFPlot/Php/simple/runme.php')
-rw-r--r--Examples/GIFPlot/Php/simple/runme.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/Examples/GIFPlot/Php/simple/runme.php b/Examples/GIFPlot/Php/simple/runme.php
deleted file mode 100644
index cf21a0927..000000000
--- a/Examples/GIFPlot/Php/simple/runme.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?
-
-# Draw some simple shapes
-print "Drawing some basic shapes\n";
-
-require "simple.php";
-
-$cmap = new_ColorMap();
-$f = new_FrameBuffer(400,400);
-
-# Clear the picture
-FrameBuffer_clear($f,BLACK);
-
-# Make a red box
-FrameBuffer_box($f,40,40,200,200,RED);
-
-# Make a blue circle
-FrameBuffer_circle($f,200,200,40,BLUE);
-
-# Make green line
-FrameBuffer_line($f,10,390,390,200, GREEN);
-
-# Write an image out to disk
-
-FrameBuffer_writeGIF($f,$cmap,"image.gif");
-print "Wrote image.gif\n";
-
-delete_FrameBuffer($f);
-delete_ColorMap($cmap);
-
-?>
-