View Single Post
Old 03-25-2008, 06:43 PM   #18 (permalink)
martins256
The Wanderer
Good Samaritan 
 
martins256's Avatar
 
Join Date: Mar 2008
Posts: 18
Thanks: 0
martins256 is on a distinguished road
Default

PHP Code:
<?php
header 
("Content-type: image/png");
$im = @imagecreatetruecolor(5120)
      or die(
"Cannot Initialize new GD image stream");
$text_color imagecolorallocate($im255255255);
imagestring($im253,  "Talk"$text_color);
$text_color imagecolorallocate($im24612248);
imagestring($im2293,  "PHP"$text_color);
imagepng($im);
imagedestroy($im);
?>
martins256 is offline  
Reply With Quote
The Following User Says Thank You to martins256 For This Useful Post:
nefus (07-09-2009)