View Single Post
02-14-2007, 06:14 AM
#3
aLx is offline aLx
Status: Senior Member
Join date: Jan 2006
Location: USA
Expertise:
Software:
 
Posts: 922
iTrader: 13 / 100%
 

aLx is on a distinguished road

Send a message via AIM to aLx

  Old

Code:
Header ("Content-type: image/png");
$img_handle = imageCreateFromPNG("Box.png");

$grey = ImageColorAllocate ($img_handle, 100, 100, 100);
$white = ImageColorAllocate ($img_handle, 255, 255, 255);

ImageString ($img_handle, 3, 150, 6, "$blogtitle's Latest Posts", $white);
ImageString ($img_handle, 3.5, 155, 32, "$title", $grey);
ImagePng ($img_handle);
ImageDestroy ($img_handle);
Thanks Garret, I know its not secret lol