1 <?php
2 $oGraphic = new COM('PhotoSprite.Graphic');
3
4 $oGraphic->SourceFile = dirname(__FILE__).str_replace('/', '\\', '/images/demo.jpg');
5 $oGraphic->DestFile   = dirname(__FILE__).str_replace('/', '\\', '/images/tmp/rotatetext.jpg');
6
7 $oGraphic->FontFamily = "Arial";
8 $oGraphic->FontSize   = 24;
9 $oGraphic->FontColor  = "#FF0000";
10
11 $oGraphic->FontWeight = "Bold";
12 $oGraphic->ColorAlpha = 128;
13
14 $oGraphic->X = 200;
15 $oGraphic->Y = 140;
16 $oGraphic->Radius = 120;
17
18 $Text = "WWW.PHOTOSPRITE.NET";
19 $angleStart = 180;
20 $angleSpan = 180;
21 $direction = 1;
22
23 $oGraphic->RotateText( $Text, $angleStart, $angleSpan, $direction );
24
25 print('<img src="images/demo.jpg" border="0">');
26 print('<img src="images/tmp/rotatetext.jpg" border="0">');
27 ?>
28