03-25-2008, 06:43 PM
|
#18 (permalink)
|
|
The Wanderer
Join Date: Mar 2008
Posts: 18
Thanks: 0
|
PHP Code:
<?php
header ("Content-type: image/png");
$im = @imagecreatetruecolor(51, 20)
or die("Cannot Initialize new GD image stream");
$text_color = imagecolorallocate($im, 255, 255, 255);
imagestring($im, 2, 5, 3, "Talk", $text_color);
$text_color = imagecolorallocate($im, 246, 122, 48);
imagestring($im, 2, 29, 3, "PHP", $text_color);
imagepng($im);
imagedestroy($im);
?>

|
|
|
|