From 8b8b972fa84f6400326f700bd9434e2f257e16d9 Mon Sep 17 00:00:00 2001 From: Refik Hadzialic Date: Tue, 9 Aug 2011 18:53:51 +0200 Subject: Libraries and start code for the output results image --- .../pChart2.1.2/examples/delayedLoader/draw.php | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 notFinishedCode/pChart2.1.2/examples/delayedLoader/draw.php (limited to 'notFinishedCode/pChart2.1.2/examples/delayedLoader/draw.php') diff --git a/notFinishedCode/pChart2.1.2/examples/delayedLoader/draw.php b/notFinishedCode/pChart2.1.2/examples/delayedLoader/draw.php new file mode 100644 index 0000000..c5b3c2f --- /dev/null +++ b/notFinishedCode/pChart2.1.2/examples/delayedLoader/draw.php @@ -0,0 +1,34 @@ +drawGradientArea(0,0,700,230,DIRECTION_HORIZONTAL,array("StartR"=>220,"StartG"=>220,"StartB"=>220,"EndR"=>180,"EndG"=>180,"EndB"=>180,"Alpha"=>100)); + $myPicture->drawGradientArea(0,0,700,230,DIRECTION_VERTICAL,array("StartR"=>220,"StartG"=>220,"StartB"=>220,"EndR"=>180,"EndG"=>180,"EndB"=>180,"Alpha"=>50)); + $RectangleSettings = array("R"=>180,"G"=>180,"B"=>180,"Alpha"=>100); + + /* Add a border to the picture */ + $myPicture->drawRectangle(0,0,699,229,array("R"=>150,"G"=>150,"B"=>150)); + + /* Write the title */ + $myPicture->setFontProperties(array("FontName"=>"../../fonts/advent_light.ttf","FontSize"=>40)); + $myPicture->drawText(130,130,"Delayed loading script",array("R"=>255,"G"=>255,"B"=>255)); + + /* Write the seed # */ + $myPicture->setFontProperties(array("FontName"=>"../../fonts/advent_light.ttf","FontSize"=>10)); + $myPicture->drawText(130,140,"Seed # : ".$Seed,array("R"=>255,"G"=>255,"B"=>255)); + + /* Draw a bezier curve */ + $BezierSettings = array("R"=>255,"G"=>255,"B"=>255,"Ticks"=>4,"DrawArrow"=>TRUE,"ArrowTwoHeads"=>TRUE); + $myPicture->drawBezier(360,170,670,120,430,100,560,190,$BezierSettings); + + /* Render the picture (choose the best way) */ + $myPicture->autoOutput("draw.png"); +?> \ No newline at end of file -- cgit v1.2.3-55-g7522