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/watertext.jpg');
6
7 $oGraphic->FontFamily = "Arial";
8 $oGraphic->FontSize   = 24;
9 $oGraphic->FontColor  = "#FF0000";
10
11 $oGraphic->FontWeight = "Bold";
12 $oGraphic->ColorAlpha = 255;
13 $oGraphic->TextStyle  = "Embossed";
14
15 $oGraphic->Align = "Center";
16
17 $oGraphic->X = 0;
18 $oGraphic->Y = 0;
19
20 $Text = "WWW.PHOTOSPRITE.NET";
21 $bIsHorz = true;
22
23
24 $oGraphic->WaterText( $Text, $bIsHorz );
25
26 print('<img src="images/demo.jpg" border="0">');
27 print('<img src="images/tmp/watertext.jpg" border="0">');
28 ?>
29