~josephjamesmills/zpanelcp/zpanelcp

« back to all changes in this revision

Viewing changes to var/www/zpanel/lib/pChart2/examples/example.drawRoundedFilledRectangle.php

  • Committer: Joseph Mills
  • Date: 2012-05-09 02:52:32 UTC
  • Revision ID: josephjamesmills@gmail.com-20120509025232-ob5xni0ggrse28c0
setup framwork for www

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php   
 
2
 /* CAT:Drawing */
 
3
 
 
4
 /* pChart library inclusions */
 
5
 include("../class/pDraw.class.php");
 
6
 include("../class/pImage.class.php");
 
7
 
 
8
 /* Create the pChart object */
 
9
 $myPicture = new pImage(700,230);
 
10
 
 
11
 /* Draw the background */
 
12
 $Settings = array("R"=>170, "G"=>183, "B"=>87, "Dash"=>1, "DashR"=>190, "DashG"=>203, "DashB"=>107);
 
13
 $myPicture->drawFilledRectangle(0,0,700,230,$Settings);
 
14
 
 
15
 /* Overlay with a gradient */
 
16
 $Settings = array("StartR"=>219, "StartG"=>231, "StartB"=>139, "EndR"=>1, "EndG"=>138, "EndB"=>68, "Alpha"=>50);
 
17
 $myPicture->drawGradientArea(0,0,700,230,DIRECTION_VERTICAL,$Settings);
 
18
 $myPicture->drawGradientArea(0,0,700,20,DIRECTION_VERTICAL,array("StartR"=>0,"StartG"=>0,"StartB"=>0,"EndR"=>50,"EndG"=>50,"EndB"=>50,"Alpha"=>80));
 
19
 
 
20
 /* Add a border to the picture */
 
21
 $myPicture->drawRectangle(0,0,699,229,array("R"=>0,"G"=>0,"B"=>0));
 
22
 
 
23
 /* Write the picture title */ 
 
24
 $myPicture->setFontProperties(array("FontName"=>"../fonts/Silkscreen.ttf","FontSize"=>6));
 
25
 $myPicture->drawText(10,13,"drawRoundedFilledRectangle() - Transparency & colors",array("R"=>255,"G"=>255,"B"=>255));
 
26
 
 
27
 /* Enable shadow computing */
 
28
 $myPicture->setShadow(TRUE,array("X"=>1,"Y"=>1,"R"=>0,"G"=>0,"B"=>0,"Alpha"=>20));
 
29
 
 
30
 /* Draw a rounded filled rectangle */
 
31
 $RectangleSettings = array("R"=>181,"G"=>209,"B"=>27,"Alpha"=>100);
 
32
 $myPicture->drawRoundedFilledRectangle(20,60,400,170,10,$RectangleSettings);
 
33
 
 
34
 /* Enable shadow computing */
 
35
 $myPicture->setShadow(FALSE);
 
36
 
 
37
 /* Draw a rounded filled rectangle */
 
38
 $RectangleSettings = array("R"=>209,"G"=>134,"B"=>27,"Alpha"=>30);
 
39
 $myPicture->drawRoundedFilledRectangle(30,30,200,200,10,$RectangleSettings);
 
40
 
 
41
 /* Enable shadow computing */
 
42
 $myPicture->setShadow(TRUE,array("X"=>1,"Y"=>1,"R"=>0,"G"=>0,"B"=>0,"Alpha"=>20));
 
43
 
 
44
 /* Draw a rounded filled rectangle */
 
45
 $RectangleSettings = array("R"=>209,"G"=>31,"B"=>27,"Alpha"=>100,"Surrounding"=>30);
 
46
 $myPicture->drawRoundedFilledRectangle(480,50,650,80,5,$RectangleSettings);
 
47
 
 
48
 /* Draw a rounded filled rectangle */
 
49
 $RectangleSettings = array("R"=>209,"G"=>125,"B"=>27,"Alpha"=>100,"Surrounding"=>30);
 
50
 $myPicture->drawRoundedFilledRectangle(480,90,650,120,5,$RectangleSettings);
 
51
 
 
52
 /* Draw a rounded filled rectangle */
 
53
 $RectangleSettings = array("R"=>209,"G"=>198,"B"=>27,"Alpha"=>100,"Surrounding"=>30);
 
54
 $myPicture->drawRoundedFilledRectangle(480,130,650,160,5,$RectangleSettings);
 
55
 
 
56
 /* Draw a rounded filled rectangle */
 
57
 $RectangleSettings = array("R"=>134,"G"=>209,"B"=>27,"Alpha"=>100,"Surrounding"=>30);
 
58
 $myPicture->drawRoundedFilledRectangle(480,170,650,200,5,$RectangleSettings);
 
59
 
 
60
 /* Render the picture (choose the best way) */
 
61
 $myPicture->autoOutput("pictures/example.drawRoundedFilledRectangle.png");
 
62
?>
 
 
b'\\ No newline at end of file'