| 
<?php
require "class.atextimage.php";
 $timg = new ATextImage();
 $timg->SetFont("arial.ttf",9);
 $timg->SetBackground(255,255,255);
 $timg->SetTextColor(255,100,0);
 $timg->SetPos("center","bottom","center");       // (horizontal,vertical) positions
 $timg->AddLine("The Award-Winning Close-Up Magic of");
 $timg->AddLine("Clarke D. Aldridge-Magician Extraordinaire");
 $timg->AddLine("Lakeland, Florida USA");
 $timg->AddLine("http://www.clarkealdridge.com");
 $timg->CreateImage("Clarke.jpg");
 $timg->MakeImage();
 $timg->ShowGif();
 ?>
 
 |