View Single Post
Old 01-01-2009, 08:42 PM   #13 (permalink)
tego10122
The Contributor
 
tego10122's Avatar
 
Join Date: Sep 2008
Location: Miami
Posts: 39
Thanks: 7
tego10122 is on a distinguished road
Default

Quote:
Originally Posted by Village Idiot View Post
Is it at the very top of the script?
Yes
PHP Code:

            header
('Content-type: image/jpeg');
            
$image imagecreate(200,25);
            
imagecolorallocate($image255255255);

            
$fontColor imagecolorallocate($image000);

            
$startX     15;
            
$startY     5;
            
$string "$variable";
            
imagestring($image3$startX$startY$string$fontColor);
            
            
imagejpeg($image);
            
imagedestroy($image); 
__________________
You're Everyday Graphic Artist
Twitter|GigPark|Linked In
Send a message via MSN to tego10122
tego10122 is offline  
Reply With Quote