summaryrefslogtreecommitdiffstats
path: root/notFinishedCode/pChart2.1.2/examples/example.text.alignment.php
diff options
context:
space:
mode:
Diffstat (limited to 'notFinishedCode/pChart2.1.2/examples/example.text.alignment.php')
-rw-r--r--notFinishedCode/pChart2.1.2/examples/example.text.alignment.php67
1 files changed, 67 insertions, 0 deletions
diff --git a/notFinishedCode/pChart2.1.2/examples/example.text.alignment.php b/notFinishedCode/pChart2.1.2/examples/example.text.alignment.php
new file mode 100644
index 0000000..2cdd7d8
--- /dev/null
+++ b/notFinishedCode/pChart2.1.2/examples/example.text.alignment.php
@@ -0,0 +1,67 @@
+<?php
+ /* CAT:Misc */
+
+ /* pChart library inclusions */
+ include("../class/pDraw.class.php");
+ include("../class/pImage.class.php");
+
+ /* Create the pChart object */
+ $myPicture = new pImage(550,175);
+
+ /* Create a solid background */
+ $Settings = array("R"=>183, "G"=>161, "B"=>71, "Dash"=>1, "DashR"=>203, "DashG"=>181, "DashB"=>91);
+ $myPicture->drawFilledRectangle(0,0,550,175,$Settings);
+
+ /* Do a gradient overlay */
+ $Settings = array("StartR"=>231, "StartG"=>228, "StartB"=>155, "EndR"=>138, "EndG"=>91, "EndB"=>10, "Alpha"=>50);
+ $myPicture->drawGradientArea(0,0,550,175,DIRECTION_VERTICAL,$Settings);
+
+ /* Set the default font */
+ $myPicture->setFontProperties(array("FontName"=>"../fonts/calibri.ttf","FontSize"=>20));
+
+ /* Draw the text box */
+ $myPicture->setShadow(FALSE);
+ $myPicture->drawFilledRectangle(141,77,393,126,array("Alpha"=>20,"R"=>230,"G"=>230,"B"=>230));
+ $myPicture->drawRectangle(141,77,393,126,array("R"=>50,"G"=>50,"B"=>50));
+
+ /* Write the text */
+ $myPicture->setShadow(TRUE,array("X"=>1,"Y"=>1,"R"=>0,"G"=>0,"B"=>0,"Alpha"=>20));
+ $TextSettings = array("R"=>201,"G"=>230,"B"=>40,"FontSize"=>40);
+ $myPicture->drawText(144,125,"My text box",$TextSettings);
+
+ /* Prepare and draw the markers */
+ $myPicture->setShadow(TRUE,array("X"=>1,"Y"=>1,"R"=>0,"G"=>0,"B"=>0,"Alpha"=>20));
+ $MyMarkerSettings = array("R"=>255,"G"=>0,"B"=>0,"BorderR"=>0,"BorderB"=>0,"BorderG"=>0,"Size"=>4);
+
+ $myPicture->drawRectangleMarker(141,77,$MyMarkerSettings);
+ $myPicture->drawRectangleMarker(141,101,$MyMarkerSettings);
+ $myPicture->drawRectangleMarker(141,126,$MyMarkerSettings);
+
+ $myPicture->drawRectangleMarker(260,77,$MyMarkerSettings);
+ $myPicture->drawRectangleMarker(260,101,$MyMarkerSettings);
+ $myPicture->drawRectangleMarker(260,126,$MyMarkerSettings);
+
+ $myPicture->drawRectangleMarker(393,77,$MyMarkerSettings);
+ $myPicture->drawRectangleMarker(393,101,$MyMarkerSettings);
+ $myPicture->drawRectangleMarker(393,126,$MyMarkerSettings);
+
+ /* Change the font settings */
+ $myPicture->setFontProperties(array("FontName"=>"../fonts/calibri.ttf","FontSize"=>7));
+ $myPicture->setShadow(FALSE);
+
+ /* Write the arrows */
+ $myPicture->drawArrowLabel(139,75,"TEXT_ALIGN_TOPLEFT",array("Length"=>20,"Angle"=>45,"RoundPos"=>TRUE));
+ $myPicture->drawArrowLabel(139,101,"TEXT_ALIGN_MIDDLELEFT",array("Length"=>20,"Angle"=>90,"RoundPos"=>TRUE));
+ $myPicture->drawArrowLabel(139,128,"TEXT_ALIGN_BOTTOMLEFT",array("Length"=>20,"Angle"=>135,"RoundPos"=>TRUE));
+
+ $myPicture->drawArrowLabel(260,75,"TEXT_ALIGN_TOPMIDDLE",array("Length"=>20,"Angle"=>45,"RoundPos"=>TRUE));
+ $myPicture->drawArrowLabel(260,101,"TEXT_ALIGN_MIDDLEMIDDLE",array("Length"=>90,"Angle"=>315,"RoundPos"=>TRUE));
+ $myPicture->drawArrowLabel(260,128,"TEXT_ALIGN_BOTTOMMIDDLE",array("Length"=>20,"Angle"=>225,"RoundPos"=>TRUE));
+
+ $myPicture->drawArrowLabel(395,75,"TEXT_ALIGN_TOPRIGHT",array("Length"=>20,"Angle"=>315,"RoundPos"=>TRUE));
+ $myPicture->drawArrowLabel(395,101,"TEXT_ALIGN_MIDDLERIGHT",array("Length"=>20,"Angle"=>270,"RoundPos"=>TRUE));
+ $myPicture->drawArrowLabel(395,128,"TEXT_ALIGN_BOTTOMRIGHT",array("Length"=>20,"Angle"=>225,"RoundPos"=>TRUE));
+
+ /* Render the picture (choose the best way) */
+ $myPicture->autoOutput("pictures/example.spring.relations.png");
+?> \ No newline at end of file